Raid — If you attacked with a creature this turn, create a colorless Treasure artifact token with \"{T}, Sacrifice this artifact: Add one mana of any color to your mana pool.\""));
+ "
Raid — If you attacked with a creature this turn, create a colorless Treasure artifact token with \"{T}, Sacrifice this artifact: Add one mana of any color.\""));
this.getSpellAbility().addWatcher(new PlayerAttackedWatcher());
}
diff --git a/Mage.Sets/src/mage/cards/h/HelmOfTheHost.java b/Mage.Sets/src/mage/cards/h/HelmOfTheHost.java
index a5aa48f0588..1458aa942d7 100644
--- a/Mage.Sets/src/mage/cards/h/HelmOfTheHost.java
+++ b/Mage.Sets/src/mage/cards/h/HelmOfTheHost.java
@@ -83,7 +83,7 @@ class HelmOfTheHostEffect extends OneShotEffect {
public HelmOfTheHostEffect() {
super(Outcome.PutCreatureInPlay);
- this.staticText = "create a token that’s a copy of equipped creature, except the token isn’t legendary if equipped creature is legendary. That token gains haste.";
+ this.staticText = "create a token that's a copy of equipped creature, except the token isn't legendary if equipped creature is legendary. That token gains haste.";
}
public HelmOfTheHostEffect(final HelmOfTheHostEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/h/HengeOfRamos.java b/Mage.Sets/src/mage/cards/h/HengeOfRamos.java
index c62098163ec..ef4b310678d 100644
--- a/Mage.Sets/src/mage/cards/h/HengeOfRamos.java
+++ b/Mage.Sets/src/mage/cards/h/HengeOfRamos.java
@@ -48,7 +48,7 @@ public class HengeOfRamos extends CardImpl {
// {tap}: Add {C}.
this.addAbility(new ColorlessManaAbility());
- // {2}, {tap}: Add one mana of any color to your mana pool.
+ // {2}, {tap}: Add one mana of any color.
Ability ability = new AnyColorManaAbility(new ManaCostsImpl<>("{2}"));
ability.addCost(new TapSourceCost());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/h/HoldoutSettlement.java b/Mage.Sets/src/mage/cards/h/HoldoutSettlement.java
index 1145c1d51f9..fde102d9aca 100644
--- a/Mage.Sets/src/mage/cards/h/HoldoutSettlement.java
+++ b/Mage.Sets/src/mage/cards/h/HoldoutSettlement.java
@@ -58,7 +58,7 @@ public class HoldoutSettlement extends CardImpl {
// {T}: Add {C}.
this.addAbility(new ColorlessManaAbility());
- // {T}, Tap an untapped creature you control: Add one mana of any color to your mana pool.
+ // {T}, Tap an untapped creature you control: Add one mana of any color.
Ability ability = new AnyColorManaAbility();
ability.addCost(new TapTargetCost(new TargetControlledPermanent(filter)));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/h/HonoredHierarch.java b/Mage.Sets/src/mage/cards/h/HonoredHierarch.java
index 4cf11658bb4..952a501f55c 100644
--- a/Mage.Sets/src/mage/cards/h/HonoredHierarch.java
+++ b/Mage.Sets/src/mage/cards/h/HonoredHierarch.java
@@ -61,7 +61,7 @@ public class HonoredHierarch extends CardImpl {
// Renown 1 (When this creature deals combat damage to a player, if it isn't renowned put a +1/+1 counter on it and it becomes renowned.)
this.addAbility(new RenownAbility(1));
- // As long as Honored Hierarch is renowned, it has vigilance and "{T}: Add one mana of any color to your mana pool."
+ // As long as Honored Hierarch is renowned, it has vigilance and "{T}: Add one mana of any color."
Effect effect = new ConditionalContinuousEffect(
new GainAbilitySourceEffect(VigilanceAbility.getInstance(), Duration.WhileOnBattlefield),
RenownedSourceCondition.instance,
@@ -70,7 +70,7 @@ public class HonoredHierarch extends CardImpl {
effect = new ConditionalContinuousEffect(
new GainAbilitySourceEffect(new AnyColorManaAbility(), Duration.WhileOnBattlefield),
RenownedSourceCondition.instance,
- "and \"{T}: Add one mana of any color to your mana pool.\"");
+ "and \"{T}: Add one mana of any color.\"");
ability.addEffect(effect);
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/h/Hornswoggle.java b/Mage.Sets/src/mage/cards/h/Hornswoggle.java
index e94df5944db..4f8253d2e13 100644
--- a/Mage.Sets/src/mage/cards/h/Hornswoggle.java
+++ b/Mage.Sets/src/mage/cards/h/Hornswoggle.java
@@ -46,11 +46,11 @@ public class Hornswoggle extends CardImpl {
public Hornswoggle(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{U}");
- // Counter target creature spell. You create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."
+ // Counter target creature spell. You create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color."
this.getSpellAbility().addEffect(new CounterTargetEffect());
this.getSpellAbility().addTarget(new TargetSpell(StaticFilters.FILTER_SPELL_CREATURE));
this.getSpellAbility().addEffect(new CreateTokenEffect(new TreasureToken())
- .setText("You create a colorless Treasure artifact token with \"{T}, Sacrifice this artifact: Add one mana of any color to your mana pool.\""));
+ .setText("You create a colorless Treasure artifact token with \"{T}, Sacrifice this artifact: Add one mana of any color.\""));
}
public Hornswoggle(final Hornswoggle card) {
diff --git a/Mage.Sets/src/mage/cards/h/HostageTaker.java b/Mage.Sets/src/mage/cards/h/HostageTaker.java
index 73bc0f278c1..786b8265906 100644
--- a/Mage.Sets/src/mage/cards/h/HostageTaker.java
+++ b/Mage.Sets/src/mage/cards/h/HostageTaker.java
@@ -119,7 +119,7 @@ class HostageTakerExileEffect extends OneShotEffect {
@Override
public boolean apply(Game game, Ability source) {
Permanent card = game.getPermanent(getTargetPointer().getFirst(game, source));
- Permanent permanent = game.getPermanentOrLKIBattlefield(source.getSourceId());
+ Permanent permanent = game.getPermanent(source.getSourceId());
if (permanent != null && card != null) {
Player controller = game.getPlayer(card.getControllerId());
if (controller != null) {
diff --git a/Mage.Sets/src/mage/cards/h/HypnoticCloud.java b/Mage.Sets/src/mage/cards/h/HypnoticCloud.java
index 23dabed1453..151d4504b15 100644
--- a/Mage.Sets/src/mage/cards/h/HypnoticCloud.java
+++ b/Mage.Sets/src/mage/cards/h/HypnoticCloud.java
@@ -53,7 +53,7 @@ public class HypnoticCloud extends CardImpl {
this.getSpellAbility().addTarget(new TargetPlayer());
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(new DiscardTargetEffect(3), new DiscardTargetEffect(1), KickedCondition.instance,
- "Target player discards a card. If {this} was kicked, that player discards three cards instead"));
+ "Target player discards a card. if this spell was kicked, that player discards three cards instead"));
}
diff --git a/Mage.Sets/src/mage/cards/i/Illuminate.java b/Mage.Sets/src/mage/cards/i/Illuminate.java
index 9ee484a69ae..57c7024ad7a 100644
--- a/Mage.Sets/src/mage/cards/i/Illuminate.java
+++ b/Mage.Sets/src/mage/cards/i/Illuminate.java
@@ -59,11 +59,11 @@ public class Illuminate extends CardImpl {
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
new DamageTargetControllerEffect(new ManacostVariableValue()),
new KickedCostCondition("{2}{R}"),
- "If {this} was kicked with its {2}{R} kicker, it deals X damage to that creature's controller."));
+ "if this spell was kicked with its {2}{R} kicker, it deals X damage to that creature's controller."));
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
new DrawCardSourceControllerEffect(new ManacostVariableValue()),
new KickedCostCondition("{3}{U}"),
- " If {this} was kicked with its {3}{U} kicker, you draw X cards."));
+ " if this spell was kicked with its {3}{U} kicker, you draw X cards."));
}
diff --git a/Mage.Sets/src/mage/cards/i/ImplementsOfSacrifice.java b/Mage.Sets/src/mage/cards/i/ImplementsOfSacrifice.java
index c53e42e162d..42c6dc3597e 100644
--- a/Mage.Sets/src/mage/cards/i/ImplementsOfSacrifice.java
+++ b/Mage.Sets/src/mage/cards/i/ImplementsOfSacrifice.java
@@ -47,7 +47,7 @@ public class ImplementsOfSacrifice extends CardImpl {
public ImplementsOfSacrifice(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{2}");
- // {1}, {tap}, Sacrifice Implements of Sacrifice: Add two mana of any one color to your mana pool.
+ // {1}, {tap}, Sacrifice Implements of Sacrifice: Add two mana of any one color.
SimpleManaAbility ability = new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaOfAnyColorEffect(2), new ManaCostsImpl("{1}"));
ability.addCost(new TapSourceCost());
ability.addCost(new SacrificeSourceCost());
diff --git a/Mage.Sets/src/mage/cards/i/InsidiousDreams.java b/Mage.Sets/src/mage/cards/i/InsidiousDreams.java
index 2a796619cdf..dba486743a9 100644
--- a/Mage.Sets/src/mage/cards/i/InsidiousDreams.java
+++ b/Mage.Sets/src/mage/cards/i/InsidiousDreams.java
@@ -140,7 +140,7 @@ class InsidiousDreamsAdditionalCost extends VariableCostImpl {
InsidiousDreamsAdditionalCost() {
super("cards to discard");
- this.text = "As an additional cost to cast {this}, discard X cards";
+ this.text = "as an additional cost to cast this spell, discard X cards";
}
InsidiousDreamsAdditionalCost(final InsidiousDreamsAdditionalCost cost) {
diff --git a/Mage.Sets/src/mage/cards/i/IntoTheRoil.java b/Mage.Sets/src/mage/cards/i/IntoTheRoil.java
index 8300b298a43..3e3a888f465 100644
--- a/Mage.Sets/src/mage/cards/i/IntoTheRoil.java
+++ b/Mage.Sets/src/mage/cards/i/IntoTheRoil.java
@@ -57,7 +57,7 @@ public class IntoTheRoil extends CardImpl {
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
new DrawCardSourceControllerEffect(1),
KickedCondition.instance,
- "If {this} was kicked, draw a card"));
+ "if this spell was kicked, draw a card"));
this.getSpellAbility().addTarget(new TargetNonlandPermanent());
}
diff --git a/Mage.Sets/src/mage/cards/j/JediHolocron.java b/Mage.Sets/src/mage/cards/j/JediHolocron.java
index 7860f78bb46..1045a9f3029 100644
--- a/Mage.Sets/src/mage/cards/j/JediHolocron.java
+++ b/Mage.Sets/src/mage/cards/j/JediHolocron.java
@@ -71,7 +71,7 @@ public class JediHolocron extends CardImpl {
ability.addCost(cost);
this.addAbility(ability);
- // {T}, Remove two charge counters from Jedi Holocron: Add GW or WU to your mana pool.
+ // {T}, Remove two charge counters from Jedi Holocron: Add GW or WU.
cost = new RemoveCountersSourceCost(CounterType.CHARGE.createInstance(2));
ability = new SimpleManaAbility(Zone.BATTLEFIELD, new Mana(0, 1, 0, 1, 0, 0, 0, 0), new TapSourceCost());
diff --git a/Mage.Sets/src/mage/cards/j/JeweledAmulet.java b/Mage.Sets/src/mage/cards/j/JeweledAmulet.java
index 452f92e951b..e1210cece5a 100644
--- a/Mage.Sets/src/mage/cards/j/JeweledAmulet.java
+++ b/Mage.Sets/src/mage/cards/j/JeweledAmulet.java
@@ -67,7 +67,7 @@ public class JeweledAmulet extends CardImpl {
ability.addCost(new TapSourceCost());
this.addAbility(ability);
- // {tap}, Remove a charge counter from Jeweled Amulet: Add one mana of Jeweled Amulet's last noted type to your mana pool.
+ // {tap}, Remove a charge counter from Jeweled Amulet: Add one mana of Jeweled Amulet's last noted type.
Ability ability2 = new SimpleManaAbility(Zone.BATTLEFIELD, new JeweledAmuletAddManaEffect(), new TapSourceCost());
ability2.addCost(new RemoveCountersSourceCost(CounterType.CHARGE.createInstance()));
this.addAbility(ability2);
@@ -123,7 +123,7 @@ class JeweledAmuletAddManaEffect extends ManaEffect {
JeweledAmuletAddManaEffect() {
super();
- staticText = "Add one mana of {this}'s last noted type to your mana pool";
+ staticText = "Add one mana of {this}'s last noted type";
}
JeweledAmuletAddManaEffect(JeweledAmuletAddManaEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/j/Jilt.java b/Mage.Sets/src/mage/cards/j/Jilt.java
index 2434d8c2bc0..ab8f47df738 100644
--- a/Mage.Sets/src/mage/cards/j/Jilt.java
+++ b/Mage.Sets/src/mage/cards/j/Jilt.java
@@ -63,7 +63,7 @@ public class Jilt extends CardImpl {
Effect effect = new ConditionalOneShotEffect(
new DamageTargetEffect(2, "it"),
KickedCondition.instance,
- "If {this} was kicked, it deals 2 damage to another target creature");
+ "if this spell was kicked, it deals 2 damage to another target creature");
effect.setTargetPointer(new SecondTargetPointer());
this.getSpellAbility().addEffect(effect);
Target target = new TargetCreaturePermanent();
diff --git a/Mage.Sets/src/mage/cards/k/KaminoCloningFacility.java b/Mage.Sets/src/mage/cards/k/KaminoCloningFacility.java
index 52d9decc604..c0f3cf365d9 100644
--- a/Mage.Sets/src/mage/cards/k/KaminoCloningFacility.java
+++ b/Mage.Sets/src/mage/cards/k/KaminoCloningFacility.java
@@ -63,7 +63,7 @@ public class KaminoCloningFacility extends CardImpl {
// {T}: Add {C}.
this.addAbility(new ColorlessManaAbility());
- // {T} Add one mana of any color to your mana pool. Spend this mana only to cast a Trooper spell.
+ // {T} Add one mana of any color. Spend this mana only to cast a Trooper spell.
this.addAbility(new ConditionalAnyColorManaAbility(new TapSourceCost(), 1, new ConditionalSpellManaBuilder(FILTER), true));
// {5}, {T}: Create a 1/1 white Trooper creature tokens.
diff --git a/Mage.Sets/src/mage/cards/k/KarametrasFavor.java b/Mage.Sets/src/mage/cards/k/KarametrasFavor.java
index a1558d6e4a5..5cb3d4557d2 100644
--- a/Mage.Sets/src/mage/cards/k/KarametrasFavor.java
+++ b/Mage.Sets/src/mage/cards/k/KarametrasFavor.java
@@ -69,9 +69,9 @@ public class KarametrasFavor extends CardImpl {
// When Karametra's Favor enters the battlefield, draw a card.
this.addAbility(new EntersBattlefieldTriggeredAbility(new DrawCardSourceControllerEffect(1), false));
- // Enchanted creature has "{T}: Add one mana of any color to your mana pool."
+ // Enchanted creature has "{T}: Add one mana of any color."
Effect effect = new GainAbilityAttachedEffect(new AnyColorManaAbility(), AttachmentType.AURA, Duration.WhileOnBattlefield);
- effect.setText("Enchanted creature has \"{T}: Add one mana of any color to your mana pool.\"");
+ effect.setText("Enchanted creature has \"{T}: Add one mana of any color.\"");
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
}
diff --git a/Mage.Sets/src/mage/cards/k/KhalniGem.java b/Mage.Sets/src/mage/cards/k/KhalniGem.java
index 318f03d65f5..ce143e9eba4 100644
--- a/Mage.Sets/src/mage/cards/k/KhalniGem.java
+++ b/Mage.Sets/src/mage/cards/k/KhalniGem.java
@@ -63,7 +63,7 @@ public class KhalniGem extends CardImpl {
Target target = new TargetControlledPermanent(2, 2, filter, false);
etbAbility.addTarget(target);
this.addAbility(etbAbility);
- // {tap}: Add two mana of any one color to your mana pool.
+ // {tap}: Add two mana of any one color.
SimpleManaAbility ability = new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaOfAnyColorEffect(2), new TapSourceCost());
this.addAbility(ability);
}
diff --git a/Mage.Sets/src/mage/cards/k/KingMacarTheGoldCursed.java b/Mage.Sets/src/mage/cards/k/KingMacarTheGoldCursed.java
index 27b5d479bb5..cc6ba928ff8 100644
--- a/Mage.Sets/src/mage/cards/k/KingMacarTheGoldCursed.java
+++ b/Mage.Sets/src/mage/cards/k/KingMacarTheGoldCursed.java
@@ -56,11 +56,11 @@ public class KingMacarTheGoldCursed extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(3);
- // Inspired - Whenever King Macar, the Gold-Cursed becomes untapped, you may exile target creature. If you do, create a colorless artifact token named Gold. It has "Sacrifice this artifact: Add one mana of any color to your mana pool."
+ // Inspired - Whenever King Macar, the Gold-Cursed becomes untapped, you may exile target creature. If you do, create a colorless artifact token named Gold. It has "Sacrifice this artifact: Add one mana of any color."
Ability ability = new InspiredAbility(new ExileTargetEffect(), true);
ability.addTarget(new TargetCreaturePermanent());
Effect effect = new CreateTokenEffect(new GoldToken());
- effect.setText("If you do, create a colorless artifact token named Gold. It has \"Sacrifice this artifact: Add one mana of any color to your mana pool.\"");
+ effect.setText("If you do, create a colorless artifact token named Gold. It has \"Sacrifice this artifact: Add one mana of any color.\"");
ability.addEffect(effect);
this.addAbility(ability);
}
diff --git a/Mage.Sets/src/mage/cards/l/LandGrant.java b/Mage.Sets/src/mage/cards/l/LandGrant.java
index 79abb871222..385d5d6b23c 100644
--- a/Mage.Sets/src/mage/cards/l/LandGrant.java
+++ b/Mage.Sets/src/mage/cards/l/LandGrant.java
@@ -62,7 +62,7 @@ public class LandGrant extends CardImpl {
// If you have no land cards in hand, you may reveal your hand rather than pay Land Grant's mana cost.
this.addAbility(new AlternativeCostSourceAbility(new LandGrantReavealCost(), new LandGrantCondition(),
- "If you have no land cards in hand, you may reveal your hand rather than pay {this}'s mana cost."));
+ "If you have no land cards in hand, you may reveal your hand rather than pay this spell's mana cost."));
// Search your library for a Forest card, reveal that card, and put it into your hand. Then shuffle your library.
this.getSpellAbility().addEffect(new SearchLibraryPutInHandEffect(new TargetCardInLibrary(filter), true, true));
diff --git a/Mage.Sets/src/mage/cards/l/LatNamsLegacy.java b/Mage.Sets/src/mage/cards/l/LatNamsLegacy.java
new file mode 100644
index 00000000000..a4305791499
--- /dev/null
+++ b/Mage.Sets/src/mage/cards/l/LatNamsLegacy.java
@@ -0,0 +1,110 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.cards.l;
+
+import java.util.UUID;
+import mage.abilities.Ability;
+import mage.abilities.common.delayed.AtTheBeginOfNextUpkeepDelayedTriggeredAbility;
+import mage.abilities.effects.OneShotEffect;
+import mage.abilities.effects.common.CreateDelayedTriggeredAbilityEffect;
+import mage.abilities.effects.common.DrawCardSourceControllerEffect;
+import mage.cards.Card;
+import mage.cards.CardImpl;
+import mage.cards.CardSetInfo;
+import mage.constants.CardType;
+import mage.constants.Outcome;
+import mage.constants.Zone;
+import mage.filter.FilterCard;
+import mage.game.Game;
+import mage.players.Player;
+import mage.target.TargetCard;
+
+/**
+ *
+ * @author TheElk801
+ */
+public class LatNamsLegacy extends CardImpl {
+
+ public LatNamsLegacy(UUID ownerId, CardSetInfo setInfo) {
+ super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{U}");
+
+ // Shuffle a card from your hand into your library. If you do, draw two cards at the beginning of the next turn's upkeep.
+ this.getSpellAbility().addEffect(new LatNamsLegacyEffect());
+ }
+
+ public LatNamsLegacy(final LatNamsLegacy card) {
+ super(card);
+ }
+
+ @Override
+ public LatNamsLegacy copy() {
+ return new LatNamsLegacy(this);
+ }
+}
+
+class LatNamsLegacyEffect extends OneShotEffect {
+
+ public LatNamsLegacyEffect() {
+ super(Outcome.DrawCard);
+ staticText = "Shuffle a card from your hand into your library. If you do, draw two cards at the beginning of the next turn's upkeep";
+ }
+
+ public LatNamsLegacyEffect(LatNamsLegacyEffect effect) {
+ super(effect);
+ }
+
+ @Override
+ public boolean apply(Game game, Ability source) {
+ Player controller = game.getPlayer(source.getControllerId());
+ if (!controller.getHand().isEmpty()) {
+ TargetCard target = new TargetCard(Zone.HAND, new FilterCard("card to shuffle into your library"));
+ controller.choose(Outcome.Detriment, controller.getHand(), target, game);
+ Card card = controller.getHand().get(target.getFirstTarget(), game);
+ if (card != null) {
+ boolean successful = controller.moveCards(card, Zone.LIBRARY, source, game);
+ controller.shuffleLibrary(source, game);
+ if (successful) {
+ new CreateDelayedTriggeredAbilityEffect(
+ new AtTheBeginOfNextUpkeepDelayedTriggeredAbility(
+ new DrawCardSourceControllerEffect(2)
+ ), false
+ ).apply(game, source);
+ }
+ }
+ return true;
+
+ }
+ return true;
+ }
+
+ @Override
+ public LatNamsLegacyEffect copy() {
+ return new LatNamsLegacyEffect(this);
+ }
+
+}
diff --git a/Mage.Sets/src/mage/cards/l/LifespringDruid.java b/Mage.Sets/src/mage/cards/l/LifespringDruid.java
index 3da3ab00b54..c909242ba8e 100644
--- a/Mage.Sets/src/mage/cards/l/LifespringDruid.java
+++ b/Mage.Sets/src/mage/cards/l/LifespringDruid.java
@@ -48,7 +48,7 @@ public class LifespringDruid extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(1);
- // {T}: Add one mana of any color to your mana pool.
+ // {T}: Add one mana of any color.
this.addAbility(new AnyColorManaAbility());
}
diff --git a/Mage.Sets/src/mage/cards/l/LionsEyeDiamond.java b/Mage.Sets/src/mage/cards/l/LionsEyeDiamond.java
index dfe5a505b4c..123ddb8aa3c 100644
--- a/Mage.Sets/src/mage/cards/l/LionsEyeDiamond.java
+++ b/Mage.Sets/src/mage/cards/l/LionsEyeDiamond.java
@@ -51,7 +51,7 @@ public class LionsEyeDiamond extends CardImpl {
public LionsEyeDiamond(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{0}");
- // Sacrifice Lion's Eye Diamond, Discard your hand: Add three mana of any one color to your mana pool. Activate this ability only any time you could cast an instant.
+ // Sacrifice Lion's Eye Diamond, Discard your hand: Add three mana of any one color. Activate this ability only any time you could cast an instant.
this.addAbility(new LionsEyeDiamondAbility());
}
diff --git a/Mage.Sets/src/mage/cards/l/LiquidFire.java b/Mage.Sets/src/mage/cards/l/LiquidFire.java
index f1b570f54a9..39f4ff9bc24 100644
--- a/Mage.Sets/src/mage/cards/l/LiquidFire.java
+++ b/Mage.Sets/src/mage/cards/l/LiquidFire.java
@@ -110,7 +110,7 @@ public class LiquidFire extends CardImpl {
static class LiquidFireCost extends VariableCostImpl {
public LiquidFireCost() {
super("Choose a Number");
- this.text = "As an additional cost to cast {source}, choose a number between 0 and 5";
+ this.text = "as an additional cost to cast this spell, choose a number between 0 and 5";
}
public LiquidFireCost(final LiquidFireCost cost) {
diff --git a/Mage.Sets/src/mage/cards/l/LlanowarWastes.java b/Mage.Sets/src/mage/cards/l/LlanowarWastes.java
index 20d9812ea68..67f9bb98f1f 100644
--- a/Mage.Sets/src/mage/cards/l/LlanowarWastes.java
+++ b/Mage.Sets/src/mage/cards/l/LlanowarWastes.java
@@ -48,10 +48,10 @@ public class LlanowarWastes extends CardImpl {
public LlanowarWastes(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.LAND},"");
- // Tap: Add 1 to your mana pool.
+ // Tap: Add 1.
this.addAbility(new ColorlessManaAbility());
- // Tap: Add Black or Green to your mana pool. Llanowar Wastes deals 1 damage to you.
+ // Tap: Add Black or Green. Llanowar Wastes deals 1 damage to you.
Ability blackManaAbility = new SimpleManaAbility(Zone.BATTLEFIELD, Mana.BlackMana(1), new TapSourceCost());
blackManaAbility.addEffect(new DamageControllerEffect(1));
this.addAbility(blackManaAbility);
diff --git a/Mage.Sets/src/mage/cards/l/LoamDryad.java b/Mage.Sets/src/mage/cards/l/LoamDryad.java
index c69fa573db9..a7e308ed9a7 100644
--- a/Mage.Sets/src/mage/cards/l/LoamDryad.java
+++ b/Mage.Sets/src/mage/cards/l/LoamDryad.java
@@ -60,7 +60,7 @@ public class LoamDryad extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(2);
- // {T}, Tap an untapped creature you control: Add one mana of any color to your mana pool.
+ // {T}, Tap an untapped creature you control: Add one mana of any color.
Ability ability = new AnyColorManaAbility();
ability.addCost(new TapTargetCost(new TargetControlledCreaturePermanent(1, 1, filter, false)));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/l/LostVale.java b/Mage.Sets/src/mage/cards/l/LostVale.java
index 1c12a906b71..217dcbea31f 100644
--- a/Mage.Sets/src/mage/cards/l/LostVale.java
+++ b/Mage.Sets/src/mage/cards/l/LostVale.java
@@ -47,7 +47,7 @@ public class LostVale extends CardImpl {
this.nightCard = true;
- // T: Add three mana of any one color to your mana pool.
+ // T: Add three mana of any one color.
this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaOfAnyColorEffect(3), new TapSourceCost()));
}
diff --git a/Mage.Sets/src/mage/cards/l/LotusBloom.java b/Mage.Sets/src/mage/cards/l/LotusBloom.java
index ec182236456..b372d3ec0ca 100644
--- a/Mage.Sets/src/mage/cards/l/LotusBloom.java
+++ b/Mage.Sets/src/mage/cards/l/LotusBloom.java
@@ -52,7 +52,7 @@ public class LotusBloom extends CardImpl {
// Suspend 3-{0}
this.addAbility(new SuspendAbility(3, new GenericManaCost(0), this));
- // {tap}, Sacrifice Lotus Bloom: Add three mana of any one color to your mana pool.
+ // {tap}, Sacrifice Lotus Bloom: Add three mana of any one color.
Ability ability = new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaOfAnyColorEffect(3), new TapSourceCost());
ability.addCost(new SacrificeSourceCost());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/l/LotusBlossom.java b/Mage.Sets/src/mage/cards/l/LotusBlossom.java
index 4e44c9907a0..55ce22b07db 100644
--- a/Mage.Sets/src/mage/cards/l/LotusBlossom.java
+++ b/Mage.Sets/src/mage/cards/l/LotusBlossom.java
@@ -52,9 +52,9 @@ public class LotusBlossom extends CardImpl {
// At the beginning of your upkeep, you may put a petal counter on Lotus Blossom.
this.addAbility(new BeginningOfUpkeepTriggeredAbility(new AddCountersSourceEffect(CounterType.PETAL.createInstance(), true), TargetController.YOU, true));
- // {tap}, Sacrifice Lotus Blossom: Add X mana of any one color to your mana pool, where X is the number of petal counters on Lotus Blossom.
+ // {tap}, Sacrifice Lotus Blossom: Add X mana of any one color, where X is the number of petal counters on Lotus Blossom.
DynamicManaAbility ability = new DynamicManaAbility(new Mana(0, 0, 0, 0, 0, 0, 1, 0), new CountersSourceCount(CounterType.PETAL), new TapSourceCost(),
- "Add X mana of any one color to your mana pool, where X is the number of petal counters on {this}", true);
+ "Add X mana of any one color, where X is the number of petal counters on {this}", true);
ability.addCost(new SacrificeSourceCost());
this.addAbility(ability);
}
diff --git a/Mage.Sets/src/mage/cards/l/LotusCobra.java b/Mage.Sets/src/mage/cards/l/LotusCobra.java
index 248f8dc9ac7..672523d1a90 100644
--- a/Mage.Sets/src/mage/cards/l/LotusCobra.java
+++ b/Mage.Sets/src/mage/cards/l/LotusCobra.java
@@ -50,7 +50,7 @@ public class LotusCobra extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(1);
- // Landfall — Whenever a land enters the battlefield under your control, you may add one mana of any color to your mana pool.
+ // Landfall — Whenever a land enters the battlefield under your control, you may add one mana of any color.
this.addAbility(new LandfallAbility(new AddManaOfAnyColorEffect(), true));
}
diff --git a/Mage.Sets/src/mage/cards/l/LotusGuardian.java b/Mage.Sets/src/mage/cards/l/LotusGuardian.java
index 3bcf336c5a1..5d8c2eb2dc4 100644
--- a/Mage.Sets/src/mage/cards/l/LotusGuardian.java
+++ b/Mage.Sets/src/mage/cards/l/LotusGuardian.java
@@ -51,7 +51,7 @@ public class LotusGuardian extends CardImpl {
// Flying
this.addAbility(FlyingAbility.getInstance());
- // {tap}: Add one mana of any color to your mana pool.
+ // {tap}: Add one mana of any color.
this.addAbility(new AnyColorManaAbility());
}
diff --git a/Mage.Sets/src/mage/cards/l/LotusVale.java b/Mage.Sets/src/mage/cards/l/LotusVale.java
index af95539b07a..de9bf428229 100644
--- a/Mage.Sets/src/mage/cards/l/LotusVale.java
+++ b/Mage.Sets/src/mage/cards/l/LotusVale.java
@@ -62,7 +62,7 @@ public class LotusVale extends CardImpl {
this.addAbility(new SimpleStaticAbility(Zone.ALL, new EnterBattlefieldPayCostOrPutGraveyardEffect(
new SacrificeTargetCost(new TargetControlledPermanent(2, 2, filter, false)))));
- // {tap}: Add three mana of any one color to your mana pool.
+ // {tap}: Add three mana of any one color.
this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaOfAnyColorEffect(3), new TapSourceCost()));
}
diff --git a/Mage.Sets/src/mage/cards/m/MagmaBurst.java b/Mage.Sets/src/mage/cards/m/MagmaBurst.java
index e386eef851c..908e644a5b2 100644
--- a/Mage.Sets/src/mage/cards/m/MagmaBurst.java
+++ b/Mage.Sets/src/mage/cards/m/MagmaBurst.java
@@ -58,7 +58,7 @@ public class MagmaBurst extends CardImpl {
this.addAbility(new KickerAbility(new SacrificeTargetCost(new TargetControlledPermanent(2, 2, new FilterControlledLandPermanent("two lands"), true))));
// Magma Burst deals 3 damage to any target. If Magma Burst was kicked, it deals 3 damage to another any target.
Effect effect = new DamageTargetEffect(3);
- effect.setText("{this} deals 3 damage to any target. If {this} was kicked, it deals 3 damage to another target.");
+ effect.setText("{this} deals 3 damage to any target. if this spell was kicked, it deals 3 damage to another target.");
this.getSpellAbility().addEffect(effect);
originalId = this.getSpellAbility().getOriginalId();
}
diff --git a/Mage.Sets/src/mage/cards/m/ManaBloom.java b/Mage.Sets/src/mage/cards/m/ManaBloom.java
index b829b261b4d..3a2f290b028 100644
--- a/Mage.Sets/src/mage/cards/m/ManaBloom.java
+++ b/Mage.Sets/src/mage/cards/m/ManaBloom.java
@@ -60,7 +60,7 @@ public class ManaBloom extends CardImpl {
// Mana Bloom enters the battlefield with X charge counters on it.
this.addAbility(new EntersBattlefieldAbility(new EntersBattlefieldWithXCountersEffect(CounterType.CHARGE.createInstance())));
- // Remove a charge counter from Mana Bloom: Add one mana of any color to your mana pool. Activate this ability only once each turn.
+ // Remove a charge counter from Mana Bloom: Add one mana of any color. Activate this ability only once each turn.
Ability ability = new ActivateOncePerTurnManaAbility(Zone.BATTLEFIELD, new AddManaOfAnyColorEffect(), new RemoveCountersSourceCost(CounterType.CHARGE.createInstance()));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/m/ManaConfluence.java b/Mage.Sets/src/mage/cards/m/ManaConfluence.java
index ad1961e4d75..5f82d4b4592 100644
--- a/Mage.Sets/src/mage/cards/m/ManaConfluence.java
+++ b/Mage.Sets/src/mage/cards/m/ManaConfluence.java
@@ -44,7 +44,7 @@ public class ManaConfluence extends CardImpl {
public ManaConfluence(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.LAND},"");
- // {T}, Pay 1 life: Add one mana of any color to your mana pool.
+ // {T}, Pay 1 life: Add one mana of any color.
Ability ability = new AnyColorManaAbility();
ability.addCost(new PayLifeCost(1));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/m/ManaPrism.java b/Mage.Sets/src/mage/cards/m/ManaPrism.java
index acfcff35fd7..fbc1b01ea4c 100644
--- a/Mage.Sets/src/mage/cards/m/ManaPrism.java
+++ b/Mage.Sets/src/mage/cards/m/ManaPrism.java
@@ -51,7 +51,7 @@ public class ManaPrism extends CardImpl {
// {tap}: Add {C}.
this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, Mana.ColorlessMana(1), new TapSourceCost()));
- // {1}, {tap}: Add one mana of any color to your mana pool.
+ // {1}, {tap}: Add one mana of any color.
Ability ability = new AnyColorManaAbility(new GenericManaCost(1));
ability.addCost(new TapSourceCost());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/m/ManaforgeCinder.java b/Mage.Sets/src/mage/cards/m/ManaforgeCinder.java
index 83291f11ad4..5a76b3d44d8 100644
--- a/Mage.Sets/src/mage/cards/m/ManaforgeCinder.java
+++ b/Mage.Sets/src/mage/cards/m/ManaforgeCinder.java
@@ -100,7 +100,7 @@ class ManaforgeCinderManaEffect extends OneShotEffect {
choices.add("Black");
choices.add("Red");
manaChoice.setChoices(choices);
- manaChoice.setMessage("Select black or red mana to add to your mana pool");
+ manaChoice.setMessage("Select black or red mana to add");
Mana mana = new Mana();
if (!controller.choose(Outcome.Benefit, manaChoice, game)) {
return false;
diff --git a/Mage.Sets/src/mage/cards/m/Manamorphose.java b/Mage.Sets/src/mage/cards/m/Manamorphose.java
index 587d3f36ee3..19841739986 100644
--- a/Mage.Sets/src/mage/cards/m/Manamorphose.java
+++ b/Mage.Sets/src/mage/cards/m/Manamorphose.java
@@ -44,7 +44,7 @@ public class Manamorphose extends CardImpl {
super(ownerId,setInfo,new CardType[]{CardType.INSTANT},"{1}{R/G}");
- // Add two mana in any combination of colors to your mana pool.
+ // Add two mana in any combination of colors.
this.getSpellAbility().addEffect(new AddManaInAnyCombinationEffect(2));
// Draw a card.
diff --git a/Mage.Sets/src/mage/cards/m/ManaweftSliver.java b/Mage.Sets/src/mage/cards/m/ManaweftSliver.java
index ff16a2ed6ab..6214d6e5a82 100644
--- a/Mage.Sets/src/mage/cards/m/ManaweftSliver.java
+++ b/Mage.Sets/src/mage/cards/m/ManaweftSliver.java
@@ -55,7 +55,7 @@ public class ManaweftSliver extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(1);
- // Sliver creatures you control have "{T}: Add one mana of any color to your mana pool."
+ // Sliver creatures you control have "{T}: Add one mana of any color."
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityControlledEffect(
new AnyColorManaAbility(),
Duration.WhileOnBattlefield,
diff --git a/Mage.Sets/src/mage/cards/m/MarshCasualties.java b/Mage.Sets/src/mage/cards/m/MarshCasualties.java
index 33304814ffd..4f4ab91f989 100644
--- a/Mage.Sets/src/mage/cards/m/MarshCasualties.java
+++ b/Mage.Sets/src/mage/cards/m/MarshCasualties.java
@@ -50,7 +50,7 @@ import mage.target.TargetPlayer;
*/
public class MarshCasualties extends CardImpl {
- private static final String ruleText = "Creatures target player controls get -1/-1 until end of turn. If {this} was kicked, those creatures get -2/-2 until end of turn instead";
+ private static final String ruleText = "Creatures target player controls get -1/-1 until end of turn. if this spell was kicked, those creatures get -2/-2 until end of turn instead";
public MarshCasualties(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{B}{B}");
diff --git a/Mage.Sets/src/mage/cards/m/MarwynTheNurturer.java b/Mage.Sets/src/mage/cards/m/MarwynTheNurturer.java
index 4deff3eba7e..e5d7b6313b2 100644
--- a/Mage.Sets/src/mage/cards/m/MarwynTheNurturer.java
+++ b/Mage.Sets/src/mage/cards/m/MarwynTheNurturer.java
@@ -40,7 +40,7 @@ public class MarwynTheNurturer extends CardImpl {
this.addAbility(new EntersBattlefieldControlledTriggeredAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance()), filter));
// {T}: Add an amount of {G} equal to Marwyn’s power.
- this.addAbility(new DynamicManaAbility(Mana.GreenMana(1), new SourcePermanentPowerCount(), "Add an amount of {G} equal to {this}’s power"));
+ this.addAbility(new DynamicManaAbility(Mana.GreenMana(1), new SourcePermanentPowerCount(), "Add an amount of {G} equal to {this}'s power"));
}
public MarwynTheNurturer(final MarwynTheNurturer card) {
diff --git a/Mage.Sets/src/mage/cards/m/MazesEnd.java b/Mage.Sets/src/mage/cards/m/MazesEnd.java
index 4f79e01b7d4..456023057a0 100644
--- a/Mage.Sets/src/mage/cards/m/MazesEnd.java
+++ b/Mage.Sets/src/mage/cards/m/MazesEnd.java
@@ -72,7 +72,7 @@ public class MazesEnd extends CardImpl {
// Maze's End enters the battlefield tapped.
this.addAbility(new EntersBattlefieldTappedAbility());
- // {T}: Add 1 to your mana pool.
+ // {T}: Add 1.
this.addAbility(new ColorlessManaAbility());
// 3, {T}, Return Maze's End to its owner’s hand: Search your library for a Gate card, put it onto the battlefield, then shuffle your library. If you control ten or more Gates with different names, you win the game.
diff --git a/Mage.Sets/src/mage/cards/m/Metamorphosis.java b/Mage.Sets/src/mage/cards/m/Metamorphosis.java
index 87f260bb97f..eadf6fa2956 100644
--- a/Mage.Sets/src/mage/cards/m/Metamorphosis.java
+++ b/Mage.Sets/src/mage/cards/m/Metamorphosis.java
@@ -56,7 +56,7 @@ public class Metamorphosis extends CardImpl {
// As an additional cost to cast Metamorphosis, sacrifice a creature.
this.getSpellAbility().addCost(new SacrificeTargetCost(new TargetControlledCreaturePermanent(FILTER_CONTROLLED_CREATURE_SHORT_TEXT)));
this.getSpellAbility().addEffect(new MetamorphosisEffect());
- // Add X mana of any one color to your mana pool, where X is one plus the sacrificed creature's converted mana cost. Spend this mana only to cast creature spells.
+ // Add X mana of any one color, where X is one plus the sacrificed creature's converted mana cost. Spend this mana only to cast creature spells.
}
public Metamorphosis(final Metamorphosis card) {
diff --git a/Mage.Sets/src/mage/cards/m/MeteorCrater.java b/Mage.Sets/src/mage/cards/m/MeteorCrater.java
index 5140e0e7ff6..23e14591492 100644
--- a/Mage.Sets/src/mage/cards/m/MeteorCrater.java
+++ b/Mage.Sets/src/mage/cards/m/MeteorCrater.java
@@ -57,7 +57,7 @@ public class MeteorCrater extends CardImpl {
public MeteorCrater(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
- // {tap}: Choose a color of a permanent you control. Add one mana of that color to your mana pool.
+ // {tap}: Choose a color of a permanent you control. Add one mana of that color.
this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, new MeteorCraterEffect(), new TapSourceCost()));
}
@@ -82,7 +82,7 @@ class MeteorCraterEffect extends ManaEffect {
public MeteorCraterEffect() {
super();
- staticText = "Choose a color of a permanent you control. Add one mana of that color to your mana pool";
+ staticText = "Choose a color of a permanent you control. Add one mana of that color";
}
public MeteorCraterEffect(final MeteorCraterEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/m/Meteorite.java b/Mage.Sets/src/mage/cards/m/Meteorite.java
index de2eae42984..5c28c5ffd56 100644
--- a/Mage.Sets/src/mage/cards/m/Meteorite.java
+++ b/Mage.Sets/src/mage/cards/m/Meteorite.java
@@ -51,7 +51,7 @@ public class Meteorite extends CardImpl {
ability.addTarget(new TargetAnyTarget());
this.addAbility(ability);
- // {T}: Add one mana of any color to your mana pool.
+ // {T}: Add one mana of any color.
this.addAbility(new AnyColorManaAbility());
}
diff --git a/Mage.Sets/src/mage/cards/m/MetzaliTowerOfTriumph.java b/Mage.Sets/src/mage/cards/m/MetzaliTowerOfTriumph.java
index b060d0513c6..2d1eb7bbf38 100644
--- a/Mage.Sets/src/mage/cards/m/MetzaliTowerOfTriumph.java
+++ b/Mage.Sets/src/mage/cards/m/MetzaliTowerOfTriumph.java
@@ -71,7 +71,7 @@ public class MetzaliTowerOfTriumph extends CardImpl {
ability.setRuleAtTheTop(true);
this.addAbility(ability);
- // {t}: Add one mana of any color to your mana pool.
+ // {t}: Add one mana of any color.
this.addAbility(new AnyColorManaAbility());
// {1}{R}, {T}: Metzali, Tower of Triumph deals 2 damage to each opponent.
diff --git a/Mage.Sets/src/mage/cards/m/MirarisWake.java b/Mage.Sets/src/mage/cards/m/MirarisWake.java
index 680ac6e0d27..b5bb672119a 100644
--- a/Mage.Sets/src/mage/cards/m/MirarisWake.java
+++ b/Mage.Sets/src/mage/cards/m/MirarisWake.java
@@ -52,9 +52,9 @@ public class MirarisWake extends CardImpl {
// Creatures you control get +1/+1.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostControlledEffect(1, 1, Duration.WhileOnBattlefield)));
- // Whenever you tap a land for mana, add one mana to your mana pool of any type that land produced.
+ // Whenever you tap a land for mana, add one mana of any type that land produced.
AddManaOfAnyTypeProducedEffect effect = new AddManaOfAnyTypeProducedEffect();
- effect.setText("add one mana to your mana pool of any type that land produced");
+ effect.setText("add one mana of any type that land produced");
this.addAbility(new TapForManaAllTriggeredManaAbility(
effect,
new FilterControlledLandPermanent("you tap a land"),
diff --git a/Mage.Sets/src/mage/cards/m/MishrasSelfReplicator.java b/Mage.Sets/src/mage/cards/m/MishrasSelfReplicator.java
index 9bacb8ccd73..0b63e94c38e 100644
--- a/Mage.Sets/src/mage/cards/m/MishrasSelfReplicator.java
+++ b/Mage.Sets/src/mage/cards/m/MishrasSelfReplicator.java
@@ -62,7 +62,7 @@ public class MishrasSelfReplicator extends CardImpl {
// Whenever you cast a historic spell, you may pay {1}. If you do, create a token that's a copy of Mishra's Self-Replicator.
this.addAbility(new SpellCastControllerTriggeredAbility(new DoIfCostPaid(
new CreateTokenCopySourceEffect()
- .setText("create a token that's a copy of (this). (Artifacts, legendaries, and Sagas are historic.)"),
+ .setText("create a token that's a copy of {this}. (Artifacts, legendaries, and Sagas are historic.)"),
new ManaCostsImpl("{1}")), filter, true));
}
diff --git a/Mage.Sets/src/mage/cards/m/MoistureFarm.java b/Mage.Sets/src/mage/cards/m/MoistureFarm.java
index cfc2e42fac3..4ca5b4d5510 100644
--- a/Mage.Sets/src/mage/cards/m/MoistureFarm.java
+++ b/Mage.Sets/src/mage/cards/m/MoistureFarm.java
@@ -57,7 +57,7 @@ public class MoistureFarm extends CardImpl {
// {T}: Put a storage counter on Moisture Farm.
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new AddCountersSourceEffect(CounterType.CHARGE.createInstance()), new TapSourceCost()));
- // {T}, Remove a storage counter from Moisture Farm: Add one mana of any color to your mana pool.
+ // {T}, Remove a storage counter from Moisture Farm: Add one mana of any color.
Ability ability = new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaOfAnyColorEffect(1), new TapSourceCost());
ability.addCost(new RemoveCountersSourceCost(CounterType.CHARGE.createInstance()));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/m/MoltenDisaster.java b/Mage.Sets/src/mage/cards/m/MoltenDisaster.java
index 7d2340ffb88..56332dc23e1 100644
--- a/Mage.Sets/src/mage/cards/m/MoltenDisaster.java
+++ b/Mage.Sets/src/mage/cards/m/MoltenDisaster.java
@@ -85,7 +85,7 @@ class MoltenDisasterSplitSecondEffect extends ContinuousRuleModifyingEffectImpl
MoltenDisasterSplitSecondEffect() {
super(Duration.WhileOnStack, Outcome.Detriment);
- staticText ="If {this} was kicked, it has split second (As long as this spell is on the stack, players can't cast spells or activate abilities that aren't mana abilities.)";
+ staticText ="if this spell was kicked, it has split second (As long as this spell is on the stack, players can't cast spells or activate abilities that aren't mana abilities.)";
}
MoltenDisasterSplitSecondEffect(final MoltenDisasterSplitSecondEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/m/Morselhoarder.java b/Mage.Sets/src/mage/cards/m/Morselhoarder.java
index ebd6182449a..b67a47750b3 100644
--- a/Mage.Sets/src/mage/cards/m/Morselhoarder.java
+++ b/Mage.Sets/src/mage/cards/m/Morselhoarder.java
@@ -58,7 +58,7 @@ public class Morselhoarder extends CardImpl {
// Morselhoarder enters the battlefield with two -1/-1 counters on it.
this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.M1M1.createInstance(2), false)));
- // Remove a -1/-1 counter from Morselhoarder: Add one mana of any color to your mana pool.
+ // Remove a -1/-1 counter from Morselhoarder: Add one mana of any color.
this.addAbility(new MorselhoarderAbility());
}
diff --git a/Mage.Sets/src/mage/cards/m/MoxAmber.java b/Mage.Sets/src/mage/cards/m/MoxAmber.java
index 935ee00ca4f..9da1579a0e5 100644
--- a/Mage.Sets/src/mage/cards/m/MoxAmber.java
+++ b/Mage.Sets/src/mage/cards/m/MoxAmber.java
@@ -49,8 +49,8 @@ public class MoxAmber extends CardImpl {
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{0}");
addSuperType(SuperType.LEGENDARY);
- // {tap}: Add one mana pool of any color among legendary creatures or planeswalkers you control.
- FilterPermanent filter = new FilterPermanent("legendary creatures or planeswalkers");
+ // {tap}: Add one mana pool of any color among legendary creatures and planeswalkers you control.
+ FilterPermanent filter = new FilterPermanent("legendary creatures and planeswalkers");
filter.add(Predicates.or(
Predicates.and(
new CardTypePredicate(CardType.CREATURE),
diff --git a/Mage.Sets/src/mage/cards/m/MoxDiamond.java b/Mage.Sets/src/mage/cards/m/MoxDiamond.java
index 2e5f2d7f0ce..1359c72e580 100644
--- a/Mage.Sets/src/mage/cards/m/MoxDiamond.java
+++ b/Mage.Sets/src/mage/cards/m/MoxDiamond.java
@@ -58,7 +58,7 @@ public class MoxDiamond extends CardImpl {
// If Mox Diamond would enter the battlefield, you may discard a land card instead. If you do, put Mox Diamond onto the battlefield. If you don't, put it into its owner's graveyard.
this.addAbility(new SimpleStaticAbility(Zone.ALL, new MoxDiamondReplacementEffect()));
- // {tap}: Add one mana of any color to your mana pool.
+ // {tap}: Add one mana of any color.
this.addAbility(new AnyColorManaAbility());
}
diff --git a/Mage.Sets/src/mage/cards/m/MoxLotus.java b/Mage.Sets/src/mage/cards/m/MoxLotus.java
index ced2a724b6d..deee68c629e 100644
--- a/Mage.Sets/src/mage/cards/m/MoxLotus.java
+++ b/Mage.Sets/src/mage/cards/m/MoxLotus.java
@@ -48,10 +48,10 @@ public class MoxLotus extends CardImpl {
public MoxLotus(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{15}");
- // {t}: Add infinity (or 1*10^9 to account for a potential mana reflection) to your mana pool.
+ // {t}: Add infinity (or 1*10^9 to account for a potential mana reflection).
this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, Mana.ColorlessMana(1000000000), new TapSourceCost()));
- // {100}: Add one mana of any color to your mana pool.
+ // {100}: Add one mana of any color.
Ability ability = new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaOfAnyColorEffect(1), new ManaCostsImpl("{100}"));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/m/MulDayaChannelers.java b/Mage.Sets/src/mage/cards/m/MulDayaChannelers.java
index b03c18ee684..8d4eb20e139 100644
--- a/Mage.Sets/src/mage/cards/m/MulDayaChannelers.java
+++ b/Mage.Sets/src/mage/cards/m/MulDayaChannelers.java
@@ -70,11 +70,11 @@ public class MulDayaChannelers extends CardImpl {
ConditionalContinuousEffect effect = new ConditionalContinuousEffect(new BoostSourceEffect(3, 3, Duration.WhileOnBattlefield), new TopLibraryCardTypeCondition(CardType.CREATURE), rule1);
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
- // As long as the top card of your library is a land card, Mul Daya Channelers has "T: Add two mana of any one color to your mana pool."
+ // As long as the top card of your library is a land card, Mul Daya Channelers has "T: Add two mana of any one color."
SimpleManaAbility manaAbility = new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaOfAnyColorEffect(2), new TapSourceCost());
effect = new ConditionalContinuousEffect(new GainAbilitySourceEffect(manaAbility, Duration.WhileOnBattlefield),
new TopLibraryCardTypeCondition(CardType.LAND),
- "As long as the top card of your library is a land card, Mul Daya Channelers has \"{T}: Add two mana of any one color to your mana pool.\"");
+ "As long as the top card of your library is a land card, Mul Daya Channelers has \"{T}: Add two mana of any one color.\"");
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
}
diff --git a/Mage.Sets/src/mage/cards/m/MultanisHarmony.java b/Mage.Sets/src/mage/cards/m/MultanisHarmony.java
index 27cfd8b36c8..1c10e4c0007 100644
--- a/Mage.Sets/src/mage/cards/m/MultanisHarmony.java
+++ b/Mage.Sets/src/mage/cards/m/MultanisHarmony.java
@@ -62,9 +62,9 @@ public class MultanisHarmony extends CardImpl {
this.getSpellAbility().addEffect(new AttachEffect(Outcome.AddAbility));
Ability ability = new EnchantAbility(auraTarget.getTargetName());
this.addAbility(ability);
- // Enchanted creature has "{T}: Add one mana of any color to your mana pool."
+ // Enchanted creature has "{T}: Add one mana of any color."
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(new AnyColorManaAbility(),
- AttachmentType.AURA, Duration.WhileOnBattlefield, "Enchanted creature has \"{T}: Add one mana of any color to your mana pool.\"")));
+ AttachmentType.AURA, Duration.WhileOnBattlefield, "Enchanted creature has \"{T}: Add one mana of any color.\"")));
}
public MultanisHarmony(final MultanisHarmony card) {
diff --git a/Mage.Sets/src/mage/cards/m/MystifyingMaze.java b/Mage.Sets/src/mage/cards/m/MystifyingMaze.java
index 0d2a42ccae2..83aa218d830 100644
--- a/Mage.Sets/src/mage/cards/m/MystifyingMaze.java
+++ b/Mage.Sets/src/mage/cards/m/MystifyingMaze.java
@@ -66,7 +66,7 @@ public class MystifyingMaze extends CardImpl {
public MystifyingMaze(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, null);
- // {T}: Add Colorless to your mana pool.
+ // {T}: Add Colorless.
this.addAbility(new ColorlessManaAbility());
// {4}, {T}: Exile target attacking creature an opponent controls. At the beginning of the next end step, return it to the battlefield tapped under its owner's control.
diff --git a/Mage.Sets/src/mage/cards/n/NagaVitalist.java b/Mage.Sets/src/mage/cards/n/NagaVitalist.java
index db87d3bdea2..07d2ec806c1 100644
--- a/Mage.Sets/src/mage/cards/n/NagaVitalist.java
+++ b/Mage.Sets/src/mage/cards/n/NagaVitalist.java
@@ -50,7 +50,7 @@ public class NagaVitalist extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(2);
- // {T}: Add to your mana pool one mana of any type that a land you control could produce.
+ // {T}: Add one mana of any type that a land you control could produce.
this.addAbility(new AnyColorLandsProduceManaAbility(TargetController.YOU, false));
}
diff --git a/Mage.Sets/src/mage/cards/n/NahirisWrath.java b/Mage.Sets/src/mage/cards/n/NahirisWrath.java
index 2eaeb382c9f..441e44cdbdc 100644
--- a/Mage.Sets/src/mage/cards/n/NahirisWrath.java
+++ b/Mage.Sets/src/mage/cards/n/NahirisWrath.java
@@ -93,7 +93,7 @@ class NahirisWrathAdditionalCost extends VariableCostImpl {
NahirisWrathAdditionalCost() {
super("cards to discard");
- this.text = "As an additional cost to cast {this}, discard X cards";
+ this.text = "as an additional cost to cast this spell, discard X cards";
}
NahirisWrathAdditionalCost(final NahirisWrathAdditionalCost cost) {
diff --git a/Mage.Sets/src/mage/cards/n/NaruMehaMasterWizard.java b/Mage.Sets/src/mage/cards/n/NaruMehaMasterWizard.java
index 6ff28488777..fc8688dd136 100644
--- a/Mage.Sets/src/mage/cards/n/NaruMehaMasterWizard.java
+++ b/Mage.Sets/src/mage/cards/n/NaruMehaMasterWizard.java
@@ -57,7 +57,7 @@ import mage.target.TargetSpell;
*/
public class NaruMehaMasterWizard extends CardImpl {
- private static final FilterSpell spellFilter = new FilterSpell("instant or sorcery you control");
+ private static final FilterSpell spellFilter = new FilterSpell("instant or sorcery spell you control");
private static final FilterCreaturePermanent wizardFilter = new FilterCreaturePermanent(SubType.WIZARD, "Wizards");
static {
diff --git a/Mage.Sets/src/mage/cards/n/NephaliaDrownyard.java b/Mage.Sets/src/mage/cards/n/NephaliaDrownyard.java
index 0734739e6ad..db884b1f9af 100644
--- a/Mage.Sets/src/mage/cards/n/NephaliaDrownyard.java
+++ b/Mage.Sets/src/mage/cards/n/NephaliaDrownyard.java
@@ -48,7 +48,7 @@ public class NephaliaDrownyard extends CardImpl {
public NephaliaDrownyard(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.LAND},"");
- // {T}: Add 1 to your mana pool.
+ // {T}: Add 1.
this.addAbility(new ColorlessManaAbility());
// {1}{U}{B}, {T}: Target player puts the top three cards of their library into their graveyard.
diff --git a/Mage.Sets/src/mage/cards/n/NewHorizons.java b/Mage.Sets/src/mage/cards/n/NewHorizons.java
index f98f447144d..7254f4f328e 100644
--- a/Mage.Sets/src/mage/cards/n/NewHorizons.java
+++ b/Mage.Sets/src/mage/cards/n/NewHorizons.java
@@ -74,10 +74,10 @@ public class NewHorizons extends CardImpl {
ability.addTarget(new TargetControlledCreaturePermanent());
this.addAbility(ability);
- // Enchanted land has "{T]: Add two mana of any one color to your mana pool."
+ // Enchanted land has "{T]: Add two mana of any one color."
Ability gainedAbility = new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaOfAnyColorEffect(2), new TapSourceCost());
Effect effect = new GainAbilityAttachedEffect(gainedAbility, AttachmentType.AURA);
- effect.setText("Enchanted land has \"{T}: Add two mana of any one color to your mana pool.\"");
+ effect.setText("Enchanted land has \"{T}: Add two mana of any one color.\"");
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
}
diff --git a/Mage.Sets/src/mage/cards/n/NomadicElf.java b/Mage.Sets/src/mage/cards/n/NomadicElf.java
index 94fbb298844..2492f7e44d6 100644
--- a/Mage.Sets/src/mage/cards/n/NomadicElf.java
+++ b/Mage.Sets/src/mage/cards/n/NomadicElf.java
@@ -50,7 +50,7 @@ public class NomadicElf extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(2);
- // {1}{G}: Add one mana of any color to your mana pool.
+ // {1}{G}: Add one mana of any color.
this.addAbility(new AnyColorManaAbility(new ManaCostsImpl("{1}{G}")));
}
diff --git a/Mage.Sets/src/mage/cards/n/NykthosShrineToNyx.java b/Mage.Sets/src/mage/cards/n/NykthosShrineToNyx.java
index 50322480d9a..73868dd785b 100644
--- a/Mage.Sets/src/mage/cards/n/NykthosShrineToNyx.java
+++ b/Mage.Sets/src/mage/cards/n/NykthosShrineToNyx.java
@@ -59,7 +59,7 @@ public class NykthosShrineToNyx extends CardImpl {
// {T}: Add {C}.
this.addAbility(new ColorlessManaAbility());
- // {2}, {T}: Choose a color. Add to your mana pool an amount of mana of that color equal to your devotion to that color.
+ // {2}, {T}: Choose a color. Add an amount of mana of that color equal to your devotion to that color.
Ability ability = new NykthosShrineToNyxManaAbility();
this.addAbility(ability);
}
@@ -109,7 +109,7 @@ class NykthosDynamicManaEffect extends ManaEffect {
public NykthosDynamicManaEffect() {
super();
computedMana = new Mana();
- this.staticText = "Choose a color. Add to your mana pool an amount of mana of that color equal to your devotion to that color. (Your devotion to a color is the number of mana symbols of that color in the mana costs of permanents you control.)";
+ this.staticText = "Choose a color. Add an amount of mana of that color equal to your devotion to that color. (Your devotion to a color is the number of mana symbols of that color in the mana costs of permanents you control.)";
}
public NykthosDynamicManaEffect(final NykthosDynamicManaEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/o/OasisRitualist.java b/Mage.Sets/src/mage/cards/o/OasisRitualist.java
index 92bf31a452d..e23c259a789 100644
--- a/Mage.Sets/src/mage/cards/o/OasisRitualist.java
+++ b/Mage.Sets/src/mage/cards/o/OasisRitualist.java
@@ -55,7 +55,7 @@ public class OasisRitualist extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(4);
- // {T}: Add one mana of any color to your mana pool.
+ // {T}: Add one mana of any color.
this.addAbility(new AnyColorManaAbility());
// {T}, Exert Oasis Ritualist: Add two mana of any one color to your manna pool.
SimpleManaAbility ability = new SimpleManaAbility(Zone.BATTLEFIELD,
diff --git a/Mage.Sets/src/mage/cards/o/OpalPalace.java b/Mage.Sets/src/mage/cards/o/OpalPalace.java
index 7bc12e6780f..03e43c168bb 100644
--- a/Mage.Sets/src/mage/cards/o/OpalPalace.java
+++ b/Mage.Sets/src/mage/cards/o/OpalPalace.java
@@ -66,7 +66,7 @@ public class OpalPalace extends CardImpl {
// {T}: Add {C}.
this.addAbility(new ColorlessManaAbility());
- // {1}, {tap}: Add to your mana pool one mana of any color in your commander's color identity. If you spend this mana to cast your commander, it enters the battlefield with a number of +1/+1 counters on it equal to the number of times it's been cast from the command zone this game.
+ // {1}, {tap}: Add one mana of any color in your commander's color identity. If you spend this mana to cast your commander, it enters the battlefield with a number of +1/+1 counters on it equal to the number of times it's been cast from the command zone this game.
Ability ability = new CommanderColorIdentityManaAbility(new GenericManaCost(1));
ability.addCost(new TapSourceCost());
this.addAbility(ability, new OpalPalaceWatcher(ability.getOriginalId().toString()));
diff --git a/Mage.Sets/src/mage/cards/o/OpalineUnicorn.java b/Mage.Sets/src/mage/cards/o/OpalineUnicorn.java
index 7dd27f68ba6..3da8495e7d0 100644
--- a/Mage.Sets/src/mage/cards/o/OpalineUnicorn.java
+++ b/Mage.Sets/src/mage/cards/o/OpalineUnicorn.java
@@ -49,7 +49,7 @@ public class OpalineUnicorn extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(2);
- // {T}: Add one mana of any color to your mana pool.
+ // {T}: Add one mana of any color.
this.addAbility(new AnyColorManaAbility(new TapSourceCost()));
}
diff --git a/Mage.Sets/src/mage/cards/o/OratorOfOjutai.java b/Mage.Sets/src/mage/cards/o/OratorOfOjutai.java
index 72c3e57f999..81410a45d4e 100644
--- a/Mage.Sets/src/mage/cards/o/OratorOfOjutai.java
+++ b/Mage.Sets/src/mage/cards/o/OratorOfOjutai.java
@@ -74,7 +74,7 @@ public class OratorOfOjutai extends CardImpl {
this.addAbility(FlyingAbility.getInstance());
// As an additional cost to cast Orator of Ojutai, you may reveal a Dragon card from your hand.
- this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new InfoEffect("As an additional cost to cast {this}, you may reveal a Dragon card from your hand")));
+ this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new InfoEffect("as an additional cost to cast this spell, you may reveal a Dragon card from your hand")));
// When Orator of Ojutai enters the battlefield, if you revealed a Dragon card or controlled a Dragon as you cast Orator of Ojutai, draw a card.
this.addAbility(new OratorOfOjutaiTriggeredAbility(new OratorOfOjutaiEffect()), new DragonOnTheBattlefieldWhileSpellWasCastWatcher());
diff --git a/Mage.Sets/src/mage/cards/o/OrimsChant.java b/Mage.Sets/src/mage/cards/o/OrimsChant.java
index 9fe522605df..b32abc61a57 100644
--- a/Mage.Sets/src/mage/cards/o/OrimsChant.java
+++ b/Mage.Sets/src/mage/cards/o/OrimsChant.java
@@ -107,7 +107,7 @@ class OrimsChantEffect extends OneShotEffect {
public OrimsChantEffect() {
super(Outcome.Detriment);
- this.staticText = "If {this} was kicked, creatures can't attack this turn";
+ this.staticText = "if this spell was kicked, creatures can't attack this turn";
}
public OrimsChantEffect(final OrimsChantEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/o/OutlawHolocron.java b/Mage.Sets/src/mage/cards/o/OutlawHolocron.java
index 5070ec97af4..d6ced7c0804 100644
--- a/Mage.Sets/src/mage/cards/o/OutlawHolocron.java
+++ b/Mage.Sets/src/mage/cards/o/OutlawHolocron.java
@@ -71,7 +71,7 @@ public class OutlawHolocron extends CardImpl {
ability.addCost(cost);
this.addAbility(ability);
- // {T}, Remove two charge counters from Outlaw Holocron: Add BR or RG to your mana pool.cost = new RemoveCountersSourceCost(CounterType.CHARGE.createInstance(2));
+ // {T}, Remove two charge counters from Outlaw Holocron: Add BR or RG.cost = new RemoveCountersSourceCost(CounterType.CHARGE.createInstance(2));
cost = new RemoveCountersSourceCost(CounterType.CHARGE.createInstance(2));
ability = new SimpleManaAbility(Zone.BATTLEFIELD, new Mana(1, 0, 0, 0, 1, 0, 0, 0), new TapSourceCost());
diff --git a/Mage.Sets/src/mage/cards/o/OverlaidTerrain.java b/Mage.Sets/src/mage/cards/o/OverlaidTerrain.java
index 1c6e992afdc..43783dec465 100644
--- a/Mage.Sets/src/mage/cards/o/OverlaidTerrain.java
+++ b/Mage.Sets/src/mage/cards/o/OverlaidTerrain.java
@@ -60,7 +60,7 @@ public class OverlaidTerrain extends CardImpl {
// As Overlaid Terrain enters the battlefield, sacrifice all lands you control.
this.addAbility(new AsEntersBattlefieldAbility(new SacrificeAllLandEffect()));
- // Lands you control have "{tap}: Add two mana of any one color to your mana pool."
+ // Lands you control have "{tap}: Add two mana of any one color."
SimpleManaAbility manaAbility = new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaOfAnyColorEffect(2), new TapSourceCost());
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityControlledEffect(manaAbility, Duration.WhileOnBattlefield, new FilterLandPermanent(), false)));
}
diff --git a/Mage.Sets/src/mage/cards/o/Overload.java b/Mage.Sets/src/mage/cards/o/Overload.java
index 6e956bb8f7b..9060475420d 100644
--- a/Mage.Sets/src/mage/cards/o/Overload.java
+++ b/Mage.Sets/src/mage/cards/o/Overload.java
@@ -73,7 +73,7 @@ class OverloadEffect extends OneShotEffect {
OverloadEffect() {
super(Outcome.DestroyPermanent);
- this.staticText = "Destroy target artifact if its converted mana cost is 2 or less. If {this} was kicked, destroy that artifact if its converted mana cost is 5 or less instead.";
+ this.staticText = "Destroy target artifact if its converted mana cost is 2 or less. if this spell was kicked, destroy that artifact if its converted mana cost is 5 or less instead.";
}
OverloadEffect(final OverloadEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/p/PaintedBluffs.java b/Mage.Sets/src/mage/cards/p/PaintedBluffs.java
index e17c9c9a9c0..c6b931f60eb 100644
--- a/Mage.Sets/src/mage/cards/p/PaintedBluffs.java
+++ b/Mage.Sets/src/mage/cards/p/PaintedBluffs.java
@@ -52,7 +52,7 @@ public class PaintedBluffs extends CardImpl {
// {T}: Add {C}.
this.addAbility(new ColorlessManaAbility());
- // {1}, {T}: Add one mana of any color to your mana pool.
+ // {1}, {T}: Add one mana of any color.
Ability ability = new AnyColorManaAbility(new GenericManaCost(1));
ability.addCost(new TapSourceCost());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/p/ParadiseMantle.java b/Mage.Sets/src/mage/cards/p/ParadiseMantle.java
index 6d01514a1f0..c69cefed324 100644
--- a/Mage.Sets/src/mage/cards/p/ParadiseMantle.java
+++ b/Mage.Sets/src/mage/cards/p/ParadiseMantle.java
@@ -53,7 +53,7 @@ public class ParadiseMantle extends CardImpl {
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{0}");
this.subtype.add(SubType.EQUIPMENT);
- // Equipped creature has "{tap}: Add one mana of any color to your mana pool."
+ // Equipped creature has "{tap}: Add one mana of any color."
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD,
new GainAbilityAttachedEffect(new AnyColorManaAbility(new TapSourceCost()), AttachmentType.EQUIPMENT, Duration.WhileOnBattlefield)));
// Equip {1}
diff --git a/Mage.Sets/src/mage/cards/p/ParadisePlume.java b/Mage.Sets/src/mage/cards/p/ParadisePlume.java
index bee19a6f0b8..c6d7ac2a84f 100644
--- a/Mage.Sets/src/mage/cards/p/ParadisePlume.java
+++ b/Mage.Sets/src/mage/cards/p/ParadisePlume.java
@@ -66,7 +66,7 @@ public class ParadisePlume extends CardImpl {
// Whenever a player casts a spell of the chosen color, you may gain 1 life.
this.addAbility(new ParadisePlumeSpellCastTriggeredAbility());
- // {tap}: Add one mana of the chosen color to your mana pool.
+ // {tap}: Add one mana of the chosen color.
this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, new ParadisePlumeManaEffect(), new TapSourceCost()));
}
@@ -85,7 +85,7 @@ class ParadisePlumeManaEffect extends ManaEffect {
public ParadisePlumeManaEffect() {
super();
- staticText = "Add one mana of the chosen color to your mana pool";
+ staticText = "Add one mana of the chosen color";
}
public ParadisePlumeManaEffect(final ParadisePlumeManaEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/p/PathOfAncestry.java b/Mage.Sets/src/mage/cards/p/PathOfAncestry.java
index 3520b2e5d96..f168d6aa358 100644
--- a/Mage.Sets/src/mage/cards/p/PathOfAncestry.java
+++ b/Mage.Sets/src/mage/cards/p/PathOfAncestry.java
@@ -61,7 +61,7 @@ public class PathOfAncestry extends CardImpl {
// Path of Ancestry enters the battlefield tapped.
this.addAbility(new EntersBattlefieldTappedAbility());
- // T: Add to your mana pool one mana of any color in your commander's color identity.
+ // T: Add one mana of any color in your commander's color identity.
Ability ability = new CommanderColorIdentityManaAbility();
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/p/PentadPrism.java b/Mage.Sets/src/mage/cards/p/PentadPrism.java
index 4fa7fe0a227..79c3e5ddb66 100644
--- a/Mage.Sets/src/mage/cards/p/PentadPrism.java
+++ b/Mage.Sets/src/mage/cards/p/PentadPrism.java
@@ -47,7 +47,7 @@ public class PentadPrism extends CardImpl {
// Sunburst
this.addAbility(new SunburstAbility(this));
- // Remove a charge counter from Pentad Prism: Add one mana of any color to your mana pool.
+ // Remove a charge counter from Pentad Prism: Add one mana of any color.
this.addAbility(new AnyColorManaAbility(new RemoveCountersSourceCost(CounterType.CHARGE.createInstance(1))));
}
diff --git a/Mage.Sets/src/mage/cards/p/PetalmaneBaku.java b/Mage.Sets/src/mage/cards/p/PetalmaneBaku.java
index 04726d31319..25adee233cd 100644
--- a/Mage.Sets/src/mage/cards/p/PetalmaneBaku.java
+++ b/Mage.Sets/src/mage/cards/p/PetalmaneBaku.java
@@ -60,12 +60,12 @@ public class PetalmaneBaku extends CardImpl {
// Whenever you cast a Spirit or Arcane spell, you may put a ki counter on Skullmane Baku.
this.addAbility(new SpellCastControllerTriggeredAbility(new AddCountersSourceEffect(CounterType.KI.createInstance()), StaticFilters.SPIRIT_OR_ARCANE_CARD, true));
- // {1}, Remove X ki counters from Petalmane Baku: Add X mana of any one color to your mana pool.
+ // {1}, Remove X ki counters from Petalmane Baku: Add X mana of any one color.
Ability ability = new DynamicManaAbility(
new Mana(0, 0, 0, 0, 0, 0, 1, 0),
new RemovedCountersForCostValue(),
new ManaCostsImpl<>("{1}"),
- "Add X mana of any one color to your mana pool",
+ "Add X mana of any one color",
true, new CountersSourceCount(CounterType.KI));
ability.addCost(new RemoveVariableCountersSourceCost(CounterType.KI.createInstance(),
"Remove X ki counters from {this}"));
diff --git a/Mage.Sets/src/mage/cards/p/PhyrexianAltar.java b/Mage.Sets/src/mage/cards/p/PhyrexianAltar.java
index 08fd264a790..636149a8dac 100644
--- a/Mage.Sets/src/mage/cards/p/PhyrexianAltar.java
+++ b/Mage.Sets/src/mage/cards/p/PhyrexianAltar.java
@@ -45,7 +45,7 @@ public class PhyrexianAltar extends CardImpl {
public PhyrexianAltar(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{3}");
- // Sacrifice a creature: Add one mana of any color to your mana pool.
+ // Sacrifice a creature: Add one mana of any color.
this.addAbility(new AnyColorManaAbility(
new SacrificeTargetCost(new TargetControlledCreaturePermanent(FILTER_CONTROLLED_CREATURE_SHORT_TEXT))));
}
diff --git a/Mage.Sets/src/mage/cards/p/PhyrexianLens.java b/Mage.Sets/src/mage/cards/p/PhyrexianLens.java
index dfee55ce64e..8f3039698c0 100644
--- a/Mage.Sets/src/mage/cards/p/PhyrexianLens.java
+++ b/Mage.Sets/src/mage/cards/p/PhyrexianLens.java
@@ -44,7 +44,7 @@ public class PhyrexianLens extends CardImpl {
public PhyrexianLens(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{3}");
- // {tap}, Pay 1 life: Add one mana of any color to your mana pool.
+ // {tap}, Pay 1 life: Add one mana of any color.
Ability ability = new AnyColorManaAbility();
ability.addCost(new PayLifeCost(1));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/p/PhyrexianScriptures.java b/Mage.Sets/src/mage/cards/p/PhyrexianScriptures.java
index 3a68927cd96..8b284cfd37b 100644
--- a/Mage.Sets/src/mage/cards/p/PhyrexianScriptures.java
+++ b/Mage.Sets/src/mage/cards/p/PhyrexianScriptures.java
@@ -86,7 +86,7 @@ public class PhyrexianScriptures extends CardImpl {
// III — Exile all cards from all opponents' graveyards.
sagaAbility.addChapterEffect(this, SagaChapter.CHAPTER_III,
new ExileGraveyardAllPlayersEffect(StaticFilters.FILTER_CARD_CARDS, TargetController.OPPONENT)
- .setText("exile all cards from all opponents' graveyards"));
+ );
this.addAbility(sagaAbility);
}
diff --git a/Mage.Sets/src/mage/cards/p/PiliPala.java b/Mage.Sets/src/mage/cards/p/PiliPala.java
index 8bb859cd411..e5e27ae8760 100644
--- a/Mage.Sets/src/mage/cards/p/PiliPala.java
+++ b/Mage.Sets/src/mage/cards/p/PiliPala.java
@@ -54,7 +54,7 @@ public class PiliPala extends CardImpl {
// Flying
this.addAbility(FlyingAbility.getInstance());
- // {2}, {untap}: Add one mana of any color to your mana pool.
+ // {2}, {untap}: Add one mana of any color.
Ability ability = new AnyColorManaAbility(new ManaCostsImpl("{2}"));
ability.addCost(new UntapSourceCost());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/p/PillarOfOrigins.java b/Mage.Sets/src/mage/cards/p/PillarOfOrigins.java
index c67c33c87b5..41e0db4dd24 100644
--- a/Mage.Sets/src/mage/cards/p/PillarOfOrigins.java
+++ b/Mage.Sets/src/mage/cards/p/PillarOfOrigins.java
@@ -59,7 +59,7 @@ public class PillarOfOrigins extends CardImpl {
// As Pillar of Origins enters the battlefield, choose a creature type.
this.addAbility(new AsEntersBattlefieldAbility(new ChooseCreatureTypeEffect(Outcome.Benefit)));
- // {T}: Add one mana of any color to your mana pool. Spend this mana only to cast a creature spell if the chosen type.
+ // {T}: Add one mana of any color. Spend this mana only to cast a creature spell if the chosen type.
this.addAbility(new ConditionalAnyColorManaAbility(new TapSourceCost(), 1, new PillarOfOriginsManaBuilder(), true));
}
diff --git a/Mage.Sets/src/mage/cards/p/PillarOfTheParuns.java b/Mage.Sets/src/mage/cards/p/PillarOfTheParuns.java
index af635939da0..680349f7f7d 100644
--- a/Mage.Sets/src/mage/cards/p/PillarOfTheParuns.java
+++ b/Mage.Sets/src/mage/cards/p/PillarOfTheParuns.java
@@ -51,7 +51,7 @@ public class PillarOfTheParuns extends CardImpl {
public PillarOfTheParuns(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.LAND},"");
- // {T}: Add one mana of any color to your mana pool. Spend this mana only to cast a multicolored spell.
+ // {T}: Add one mana of any color. Spend this mana only to cast a multicolored spell.
this.addAbility(new ConditionalAnyColorManaAbility(1, new ConditionalSpellManaBuilder(filter)));
}
diff --git a/Mage.Sets/src/mage/cards/p/PiratesPillage.java b/Mage.Sets/src/mage/cards/p/PiratesPillage.java
index 6e2373502da..ef0a5326eca 100644
--- a/Mage.Sets/src/mage/cards/p/PiratesPillage.java
+++ b/Mage.Sets/src/mage/cards/p/PiratesPillage.java
@@ -48,10 +48,10 @@ public class PiratesPillage extends CardImpl {
// As an additional cost to cast Pirate's Pillage, discard a card.
this.getSpellAbility().addCost(new DiscardCardCost(false));
- // Draw two cards and create two colorless Treasure artifacts with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."
+ // Draw two cards and create two colorless Treasure artifacts with "{T}, Sacrifice this artifact: Add one mana of any color."
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(2));
this.getSpellAbility().addEffect(new CreateTokenEffect(new TreasureToken(), 2)
- .setText("and create two colorless Treasure artifacts with \"{T}, Sacrifice this artifact: Add one mana of any color to your mana pool"));
+ .setText("and create two colorless Treasure artifacts with \"{T}, Sacrifice this artifact: Add one mana of any color"));
}
public PiratesPillage(final PiratesPillage card) {
diff --git a/Mage.Sets/src/mage/cards/p/PiratesPrize.java b/Mage.Sets/src/mage/cards/p/PiratesPrize.java
index 8676bdc3853..6e04b901388 100644
--- a/Mage.Sets/src/mage/cards/p/PiratesPrize.java
+++ b/Mage.Sets/src/mage/cards/p/PiratesPrize.java
@@ -44,7 +44,7 @@ public class PiratesPrize extends CardImpl {
public PiratesPrize(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{U}");
- // Draw two cards. Create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color to your mana pool."
+ // Draw two cards. Create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color."
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(2));
this.getSpellAbility().addEffect(new CreateTokenEffect(new TreasureToken()));
}
diff --git a/Mage.Sets/src/mage/cards/p/PitilessPlunderer.java b/Mage.Sets/src/mage/cards/p/PitilessPlunderer.java
index a2b5355482a..a64718ee6d1 100644
--- a/Mage.Sets/src/mage/cards/p/PitilessPlunderer.java
+++ b/Mage.Sets/src/mage/cards/p/PitilessPlunderer.java
@@ -62,7 +62,7 @@ public class PitilessPlunderer extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(4);
- // Whenever another creature you control dies, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."
+ // Whenever another creature you control dies, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color."
this.addAbility(new DiesCreatureTriggeredAbility(new CreateTokenEffect(new TreasureToken()), false, filter));
}
diff --git a/Mage.Sets/src/mage/cards/p/PlasmCapture.java b/Mage.Sets/src/mage/cards/p/PlasmCapture.java
index 05c1391a7b8..83ad53be506 100644
--- a/Mage.Sets/src/mage/cards/p/PlasmCapture.java
+++ b/Mage.Sets/src/mage/cards/p/PlasmCapture.java
@@ -54,7 +54,7 @@ public class PlasmCapture extends CardImpl {
public PlasmCapture(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{G}{G}{U}{U}");
- // Counter target spell. At the beginning of your next precombat main phase, add X mana in any combination of colors to your mana pool, where X is that spell's converted mana cost.
+ // Counter target spell. At the beginning of your next precombat main phase, add X mana in any combination of colors, where X is that spell's converted mana cost.
this.getSpellAbility().addTarget(new TargetSpell());
this.getSpellAbility().addEffect(new PlasmCaptureCounterEffect());
}
@@ -73,7 +73,7 @@ class PlasmCaptureCounterEffect extends OneShotEffect {
public PlasmCaptureCounterEffect() {
super(Outcome.Benefit);
- this.staticText = "Counter target spell. At the beginning of your next precombat main phase, add X mana in any combination of colors to your mana pool, where X is that spell's converted mana cost";
+ this.staticText = "Counter target spell. At the beginning of your next precombat main phase, add X mana in any combination of colors, where X is that spell's converted mana cost";
}
public PlasmCaptureCounterEffect(final PlasmCaptureCounterEffect effect) {
@@ -108,7 +108,7 @@ class PlasmCaptureManaEffect extends ManaEffect {
public PlasmCaptureManaEffect(int amountOfMana) {
super();
this.amountOfMana = amountOfMana;
- this.staticText = "add X mana in any combination of colors to your mana pool, where X is that spell's converted mana cost";
+ this.staticText = "add X mana in any combination of colors, where X is that spell's converted mana cost";
}
public PlasmCaptureManaEffect(final PlasmCaptureManaEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/p/PollenRemedy.java b/Mage.Sets/src/mage/cards/p/PollenRemedy.java
index 974dcc94d3f..7bef85d52ab 100644
--- a/Mage.Sets/src/mage/cards/p/PollenRemedy.java
+++ b/Mage.Sets/src/mage/cards/p/PollenRemedy.java
@@ -61,7 +61,7 @@ public class PollenRemedy extends CardImpl {
// Prevent the next 3 damage that would be dealt this turn to any number of target creatures and/or players, divided as you choose. If Pollen Remedy was kicked, prevent the next 6 damage this way instead.
Effect effect = new ConditionalReplacementEffect(new PreventDamageToTargetMultiAmountEffect(Duration.EndOfTurn, 6),
KickedCondition.instance, new PreventDamageToTargetMultiAmountEffect(Duration.EndOfTurn, 3));
- effect.setText("Prevent the next 3 damage that would be dealt this turn to any number of target creatures and/or players, divided as you choose. If {this} was kicked, prevent the next 6 damage this way instead.");
+ effect.setText("Prevent the next 3 damage that would be dealt this turn to any number of target creatures and/or players, divided as you choose. if this spell was kicked, prevent the next 6 damage this way instead.");
this.getSpellAbility().addEffect(effect);
originalId = this.getSpellAbility().getOriginalId();
}
diff --git a/Mage.Sets/src/mage/cards/p/PrecognitionField.java b/Mage.Sets/src/mage/cards/p/PrecognitionField.java
index fb690667491..e00a5d6915c 100644
--- a/Mage.Sets/src/mage/cards/p/PrecognitionField.java
+++ b/Mage.Sets/src/mage/cards/p/PrecognitionField.java
@@ -108,7 +108,7 @@ class PrecognitionFieldTopCardCastEffect extends AsThoughEffectImpl {
public PrecognitionFieldTopCardCastEffect() {
super(AsThoughEffectType.PLAY_FROM_NOT_OWN_HAND_ZONE, Duration.WhileOnBattlefield, Outcome.Benefit);
- staticText = "You may cast the top card of your library if it’s an instant or sorcery card.";
+ staticText = "You may cast the top card of your library if it's an instant or sorcery card.";
}
public PrecognitionFieldTopCardCastEffect(final PrecognitionFieldTopCardCastEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/p/PriestOfYawgmoth.java b/Mage.Sets/src/mage/cards/p/PriestOfYawgmoth.java
index f35654992eb..ca0634b84d2 100644
--- a/Mage.Sets/src/mage/cards/p/PriestOfYawgmoth.java
+++ b/Mage.Sets/src/mage/cards/p/PriestOfYawgmoth.java
@@ -54,9 +54,9 @@ public class PriestOfYawgmoth extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(2);
- // {T}, Sacrifice an artifact: Add to your mana pool an amount of {B} equal to the sacrificed artifact's converted mana cost.
+ // {T}, Sacrifice an artifact: Add an amount of {B} equal to the sacrificed artifact's converted mana cost.
Ability ability = new DynamicManaAbility(Mana.BlackMana(1), new SacrificeCostConvertedMana("artifact"),
- "add to your mana pool an amount of {B} equal to the sacrificed artifact's converted mana cost");
+ "add an amount of {B} equal to the sacrificed artifact's converted mana cost");
ability.addCost(new SacrificeTargetCost(new TargetControlledPermanent(new FilterControlledArtifactPermanent())));
this.addAbility(ability);
}
diff --git a/Mage.Sets/src/mage/cards/p/PrimalBeyond.java b/Mage.Sets/src/mage/cards/p/PrimalBeyond.java
index 37ddbcc0e69..1a163165ff4 100644
--- a/Mage.Sets/src/mage/cards/p/PrimalBeyond.java
+++ b/Mage.Sets/src/mage/cards/p/PrimalBeyond.java
@@ -68,7 +68,7 @@ public class PrimalBeyond extends CardImpl {
this.addAbility(new AsEntersBattlefieldAbility(new TapSourceUnlessPaysEffect(new RevealTargetFromHandCost(new TargetCardInHand(filter))), "you may reveal a Elemental card from your hand. If you don't, {this} enters the battlefield tapped"));
// {tap}: Add {C}.
this.addAbility(new ColorlessManaAbility());
- // {tap}: Add one mana of any color to your mana pool. Spend this mana only to cast an Elemental spell or activate an ability of an Elemental.
+ // {tap}: Add one mana of any color. Spend this mana only to cast an Elemental spell or activate an ability of an Elemental.
Ability ability = new ConditionalAnyColorManaAbility(new TapSourceCost(), 1, new PrimalBeyondManaBuilder(), true);
this.addAbility(ability);
}
diff --git a/Mage.Sets/src/mage/cards/p/PrimalWellspring.java b/Mage.Sets/src/mage/cards/p/PrimalWellspring.java
index fe6bcfba62b..9c207f54754 100644
--- a/Mage.Sets/src/mage/cards/p/PrimalWellspring.java
+++ b/Mage.Sets/src/mage/cards/p/PrimalWellspring.java
@@ -54,7 +54,7 @@ public class PrimalWellspring extends CardImpl {
this.nightCard = true;
- // Add one mana of any color to your mana pool.
+ // Add one mana of any color.
Ability ability = new AnyColorManaAbility();
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/p/PrismaticGeoscope.java b/Mage.Sets/src/mage/cards/p/PrismaticGeoscope.java
index eaf69c3c93c..f9a1eb57c91 100644
--- a/Mage.Sets/src/mage/cards/p/PrismaticGeoscope.java
+++ b/Mage.Sets/src/mage/cards/p/PrismaticGeoscope.java
@@ -51,10 +51,10 @@ public class PrismaticGeoscope extends CardImpl {
// Prismatic Geoscope enters the battlefield tapped.
this.addAbility(new EntersBattlefieldTappedAbility());
- // Domain — {T}: Add X mana in any combination of colors to your mana pool, where X is the number of basic land types among lands you control.
+ // Domain — {T}: Add X mana in any combination of colors, where X is the number of basic land types among lands you control.
Ability ability = new DynamicManaAbility(
new Mana(0, 0, 0, 0, 0, 0, 1, 0), new DomainValue(), new TapSourceCost(),
- "Add X mana in any combination of colors to your mana pool,"
+ "Add X mana in any combination of colors,"
+ " where X is the number of basic land types among lands you control."
);
ability.setAbilityWord(AbilityWord.DOMAIN);
diff --git a/Mage.Sets/src/mage/cards/p/PrismaticLens.java b/Mage.Sets/src/mage/cards/p/PrismaticLens.java
index 588044fc6f1..f8db57dbc95 100644
--- a/Mage.Sets/src/mage/cards/p/PrismaticLens.java
+++ b/Mage.Sets/src/mage/cards/p/PrismaticLens.java
@@ -48,7 +48,7 @@ public class PrismaticLens extends CardImpl {
// {tap}: Add {C}.
this.addAbility(new ColorlessManaAbility());
- // {1}, {tap}: Add one mana of any color to your mana pool.
+ // {1}, {tap}: Add one mana of any color.
Ability ability = new AnyColorManaAbility(new ManaCostsImpl("{1}"));
ability.addCost(new TapSourceCost());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/p/Probe.java b/Mage.Sets/src/mage/cards/p/Probe.java
index 35f7b37351c..601f4af4c50 100644
--- a/Mage.Sets/src/mage/cards/p/Probe.java
+++ b/Mage.Sets/src/mage/cards/p/Probe.java
@@ -58,7 +58,7 @@ public class Probe extends CardImpl {
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
new DiscardTargetEffect(2),
KickedCondition.instance,
- "
If {this} was kicked, target player discards two cards"));
+ "
if this spell was kicked, target player discards two cards"));
}
@Override
diff --git a/Mage.Sets/src/mage/cards/p/Prohibit.java b/Mage.Sets/src/mage/cards/p/Prohibit.java
index 3ae6ee0bebf..33fa8522be4 100644
--- a/Mage.Sets/src/mage/cards/p/Prohibit.java
+++ b/Mage.Sets/src/mage/cards/p/Prohibit.java
@@ -72,7 +72,7 @@ class ProhibitEffect extends OneShotEffect {
ProhibitEffect() {
super(Outcome.DestroyPermanent);
- this.staticText = "Counter target spell if its converted mana cost is 2 or less. If {this} was kicked, counter that spell if its converted mana cost is 4 or less instead.";
+ this.staticText = "Counter target spell if its converted mana cost is 2 or less. if this spell was kicked, counter that spell if its converted mana cost is 4 or less instead.";
}
ProhibitEffect(final ProhibitEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/p/PropheticPrism.java b/Mage.Sets/src/mage/cards/p/PropheticPrism.java
index f04536e92d1..8fc99ed2ae9 100644
--- a/Mage.Sets/src/mage/cards/p/PropheticPrism.java
+++ b/Mage.Sets/src/mage/cards/p/PropheticPrism.java
@@ -50,7 +50,7 @@ public class PropheticPrism extends CardImpl {
// When Prophetic Prism enters the battlefield, draw a card.
this.addAbility(new EntersBattlefieldTriggeredAbility(new DrawCardSourceControllerEffect(1)));
- // {1}, {T}: Add one mana of any color to your mana pool.
+ // {1}, {T}: Add one mana of any color.
Ability ability = new AnyColorManaAbility(new GenericManaCost(1));
ability.addCost(new TapSourceCost());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/p/ProsperousPirates.java b/Mage.Sets/src/mage/cards/p/ProsperousPirates.java
index 9ff437a039f..a5fd67e6068 100644
--- a/Mage.Sets/src/mage/cards/p/ProsperousPirates.java
+++ b/Mage.Sets/src/mage/cards/p/ProsperousPirates.java
@@ -51,7 +51,7 @@ public class ProsperousPirates extends CardImpl {
this.power = new MageInt(3);
this.toughness = new MageInt(4);
- // When Prosperous Pirates enters the battlefield, create two colorless Treasure artifact tokens with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."
+ // When Prosperous Pirates enters the battlefield, create two colorless Treasure artifact tokens with "{T}, Sacrifice this artifact: Add one mana of any color."
this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new TreasureToken("XLN"), 2)));
}
diff --git a/Mage.Sets/src/mage/cards/p/PryingBlade.java b/Mage.Sets/src/mage/cards/p/PryingBlade.java
index fca092898ea..0749dd1f656 100644
--- a/Mage.Sets/src/mage/cards/p/PryingBlade.java
+++ b/Mage.Sets/src/mage/cards/p/PryingBlade.java
@@ -56,7 +56,7 @@ public class PryingBlade extends CardImpl {
// Equipped creature gets +1/+0.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostEquippedEffect(1, 0)));
- // Whenever equipped creature deals combat damage to a player, create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color to your mana pool."
+ // Whenever equipped creature deals combat damage to a player, create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color."
this.addAbility(new DealsDamageToAPlayerAttachedTriggeredAbility(new CreateTokenEffect(new TreasureToken()), "equipped creature", false));
// Equip {2}
diff --git a/Mage.Sets/src/mage/cards/p/PyramidOfThePantheon.java b/Mage.Sets/src/mage/cards/p/PyramidOfThePantheon.java
index 9fb79dec0fc..7ad93e523ff 100644
--- a/Mage.Sets/src/mage/cards/p/PyramidOfThePantheon.java
+++ b/Mage.Sets/src/mage/cards/p/PyramidOfThePantheon.java
@@ -51,13 +51,13 @@ public class PyramidOfThePantheon extends CardImpl {
public PyramidOfThePantheon(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{1}");
- // {2}, {T}: Add one mana of any color to your mana pool. Put a brick counter on Pyramid of the Pantheon.
+ // {2}, {T}: Add one mana of any color. Put a brick counter on Pyramid of the Pantheon.
Ability ability = new AnyColorManaAbility(new GenericManaCost(2));
ability.addCost(new TapSourceCost());
ability.addEffect(new AddCountersSourceEffect(CounterType.BRICK.createInstance()));
this.addAbility(ability);
- // {T}: Add three mana of any one color to your mana pool. Activate this ability only of there are three or more brick counters on Pyramid of the Pantheon.
+ // {T}: Add three mana of any one color. Activate this ability only of there are three or more brick counters on Pyramid of the Pantheon.
this.addAbility(new ActivateIfConditionManaAbility(Zone.BATTLEFIELD,
new AddManaOfAnyColorEffect(3),
new TapSourceCost(),
diff --git a/Mage.Sets/src/mage/cards/q/QuirionElves.java b/Mage.Sets/src/mage/cards/q/QuirionElves.java
index c1ab6bb7a4a..1bb03c702fe 100644
--- a/Mage.Sets/src/mage/cards/q/QuirionElves.java
+++ b/Mage.Sets/src/mage/cards/q/QuirionElves.java
@@ -67,7 +67,7 @@ public class QuirionElves extends CardImpl {
// {tap}: Add {G}.
this.addAbility(new GreenManaAbility());
- // {tap}: Add one mana of the chosen color to your mana pool.
+ // {tap}: Add one mana of the chosen color.
this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, new QuirionElvesManaEffect(), new TapSourceCost()));
}
@@ -86,7 +86,7 @@ class QuirionElvesManaEffect extends ManaEffect {
public QuirionElvesManaEffect() {
super();
- staticText = "Add one mana of the chosen color to your mana pool";
+ staticText = "Add one mana of the chosen color";
}
public QuirionElvesManaEffect(final QuirionElvesManaEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/q/QuirionExplorer.java b/Mage.Sets/src/mage/cards/q/QuirionExplorer.java
index 4f1aa85b0bf..611240360bd 100644
--- a/Mage.Sets/src/mage/cards/q/QuirionExplorer.java
+++ b/Mage.Sets/src/mage/cards/q/QuirionExplorer.java
@@ -50,7 +50,7 @@ public class QuirionExplorer extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(1);
- // {T}: Add to your mana pool one mana of any color that a land an opponent controls could produce.
+ // {T}: Add one mana of any color that a land an opponent controls could produce.
this.addAbility(new AnyColorLandsProduceManaAbility(TargetController.OPPONENT));
}
diff --git a/Mage.Sets/src/mage/cards/q/QuirionSentinel.java b/Mage.Sets/src/mage/cards/q/QuirionSentinel.java
index c148a8d219e..9ef04a171f6 100644
--- a/Mage.Sets/src/mage/cards/q/QuirionSentinel.java
+++ b/Mage.Sets/src/mage/cards/q/QuirionSentinel.java
@@ -50,7 +50,7 @@ public class QuirionSentinel extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(1);
- // When Quirion Sentinel enters the battlefield, add one mana of any color to your mana pool.
+ // When Quirion Sentinel enters the battlefield, add one mana of any color.
this.addAbility(new EntersBattlefieldTriggeredAbility(new AddManaOfAnyColorEffect()));
}
diff --git a/Mage.Sets/src/mage/cards/r/RagingRavine.java b/Mage.Sets/src/mage/cards/r/RagingRavine.java
index a1b428685fc..035b2aab59d 100644
--- a/Mage.Sets/src/mage/cards/r/RagingRavine.java
+++ b/Mage.Sets/src/mage/cards/r/RagingRavine.java
@@ -62,7 +62,7 @@ public class RagingRavine extends CardImpl {
// Raging Ravine enters the battlefield tapped.
this.addAbility(new EntersBattlefieldTappedAbility());
- // Tap: Add Red or Green to your mana pool.
+ // Tap: Add Red or Green.
this.addAbility(new GreenManaAbility());
this.addAbility(new RedManaAbility());
Effect effect = new BecomesCreatureSourceEffect(new RagingRavineToken(), "land", Duration.EndOfTurn);
diff --git a/Mage.Sets/src/mage/cards/r/RainbowVale.java b/Mage.Sets/src/mage/cards/r/RainbowVale.java
index 52dea5ca4c8..9fc5a1b037b 100644
--- a/Mage.Sets/src/mage/cards/r/RainbowVale.java
+++ b/Mage.Sets/src/mage/cards/r/RainbowVale.java
@@ -51,7 +51,7 @@ public class RainbowVale extends CardImpl {
public RainbowVale(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
- // {tap}: Add one mana of any color to your mana pool. An opponent gains control of Rainbow Vale at the beginning of the next end step.
+ // {tap}: Add one mana of any color. An opponent gains control of Rainbow Vale at the beginning of the next end step.
Ability ability = new AnyColorManaAbility();
ability.addEffect(new RainbowValeEffect());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/r/RatColony.java b/Mage.Sets/src/mage/cards/r/RatColony.java
index dae3e405ae3..a538754c765 100644
--- a/Mage.Sets/src/mage/cards/r/RatColony.java
+++ b/Mage.Sets/src/mage/cards/r/RatColony.java
@@ -50,7 +50,7 @@ import mage.filter.predicate.permanent.AnotherPredicate;
*/
public class RatColony extends CardImpl {
- private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent();
+ private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("other Rat you control");
static {
filter.add(new SubtypePredicate(SubType.RAT));
diff --git a/Mage.Sets/src/mage/cards/r/RavagedHighlands.java b/Mage.Sets/src/mage/cards/r/RavagedHighlands.java
index 9e54c0ff624..1f0dc9d73e6 100644
--- a/Mage.Sets/src/mage/cards/r/RavagedHighlands.java
+++ b/Mage.Sets/src/mage/cards/r/RavagedHighlands.java
@@ -50,7 +50,7 @@ public class RavagedHighlands extends CardImpl {
this.addAbility(new EntersBattlefieldTappedAbility());
// {tap}: Add {R}.
this.addAbility(new RedManaAbility());
- // {tap}, Sacrifice Ravaged Highlands: Add one mana of any color to your mana pool.
+ // {tap}, Sacrifice Ravaged Highlands: Add one mana of any color.
Ability ability = new AnyColorManaAbility();
ability.addCost(new SacrificeSourceCost());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/r/ReflectingPool.java b/Mage.Sets/src/mage/cards/r/ReflectingPool.java
index d28543994e2..4d72918dd62 100644
--- a/Mage.Sets/src/mage/cards/r/ReflectingPool.java
+++ b/Mage.Sets/src/mage/cards/r/ReflectingPool.java
@@ -43,7 +43,7 @@ public class ReflectingPool extends CardImpl {
public ReflectingPool(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
- // {T}: Add to your mana pool one mana of any type that a land you control could produce.
+ // {T}: Add one mana of any type that a land you control could produce.
this.addAbility(new AnyColorLandsProduceManaAbility(TargetController.YOU, false));
}
diff --git a/Mage.Sets/src/mage/cards/r/RegalBehemoth.java b/Mage.Sets/src/mage/cards/r/RegalBehemoth.java
index 5283c756bbb..3640835cadd 100644
--- a/Mage.Sets/src/mage/cards/r/RegalBehemoth.java
+++ b/Mage.Sets/src/mage/cards/r/RegalBehemoth.java
@@ -67,9 +67,9 @@ public class RegalBehemoth extends CardImpl {
// When Regal Behemoth enters the battlefield, you become the monarch.
this.addAbility(new EntersBattlefieldTriggeredAbility(new BecomesMonarchSourceEffect(), false));
- // Whenever you tap a land for mana while you're the monarch, add one mana of any color to your mana pool.
+ // Whenever you tap a land for mana while you're the monarch, add one mana of any color.
ManaEffect manaEffect = new AddManaOfAnyColorEffect();
- manaEffect.setText("add one mana of any color to your mana pool (in addition to the mana the land produces).");
+ manaEffect.setText("add one mana of any color (in addition to the mana the land produces).");
ManaEffect effect = manaEffect;
this.addAbility(new RegalBehemothTriggeredManaAbility(
effect, new FilterControlledLandPermanent("you tap a land")));
diff --git a/Mage.Sets/src/mage/cards/r/RevelInRiches.java b/Mage.Sets/src/mage/cards/r/RevelInRiches.java
index 3e757cb225b..b17979d66e7 100644
--- a/Mage.Sets/src/mage/cards/r/RevelInRiches.java
+++ b/Mage.Sets/src/mage/cards/r/RevelInRiches.java
@@ -64,7 +64,7 @@ public class RevelInRiches extends CardImpl {
public RevelInRiches(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{4}{B}");
- // Whenever a creature an opponent controls dies, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."
+ // Whenever a creature an opponent controls dies, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color."
this.addAbility(new DiesCreatureTriggeredAbility(new CreateTokenEffect(new TreasureToken("XLN")), false, filter));
// At the beginning of your upkeep, if you control ten or more Treasures, you win the game.
TriggeredAbility ability = new BeginningOfUpkeepTriggeredAbility(new WinGameSourceControllerEffect(), TargetController.YOU, false);
diff --git a/Mage.Sets/src/mage/cards/r/RhysticCave.java b/Mage.Sets/src/mage/cards/r/RhysticCave.java
index 170ac58e0a5..0f9b1a85876 100644
--- a/Mage.Sets/src/mage/cards/r/RhysticCave.java
+++ b/Mage.Sets/src/mage/cards/r/RhysticCave.java
@@ -55,7 +55,7 @@ public class RhysticCave extends CardImpl {
public RhysticCave(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
- // {T}: Choose a color. Add one mana of that color to your mana pool unless any player pays {1}. Activate this ability only any time you could cast an instant.
+ // {T}: Choose a color. Add one mana of that color unless any player pays {1}. Activate this ability only any time you could cast an instant.
this.addAbility(new RhysticCaveManaAbility());
}
@@ -113,7 +113,7 @@ class RhysticCaveManaEffect extends ManaEffect {
public RhysticCaveManaEffect() {
super();
chosenMana = new Mana();
- this.staticText = "Choose a color. Add one mana of that color to your mana pool ";
+ this.staticText = "Choose a color. Add one mana of that color ";
}
public RhysticCaveManaEffect(final RhysticCaveManaEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/r/RishkarPeemaRenegade.java b/Mage.Sets/src/mage/cards/r/RishkarPeemaRenegade.java
index 664ec33529a..94d107a510b 100644
--- a/Mage.Sets/src/mage/cards/r/RishkarPeemaRenegade.java
+++ b/Mage.Sets/src/mage/cards/r/RishkarPeemaRenegade.java
@@ -76,7 +76,7 @@ public class RishkarPeemaRenegade extends CardImpl {
ability.addTarget(new TargetCreaturePermanent(0, 2));
this.addAbility(ability);
- // Each creature you control with a counter on it has "T: Add G to your mana pool."
+ // Each creature you control with a counter on it has "T: Add G."
this.addAbility(new SimpleStaticAbility(
Zone.BATTLEFIELD,
new GainAbilityControlledEffect(
diff --git a/Mage.Sets/src/mage/cards/r/RiteOfReplication.java b/Mage.Sets/src/mage/cards/r/RiteOfReplication.java
index 5b0a31ac7ba..9e18e26f19d 100644
--- a/Mage.Sets/src/mage/cards/r/RiteOfReplication.java
+++ b/Mage.Sets/src/mage/cards/r/RiteOfReplication.java
@@ -53,7 +53,7 @@ public class RiteOfReplication extends CardImpl {
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(new CreateTokenCopyTargetEffect(null, null, false, 5),
new CreateTokenCopyTargetEffect(), KickedCondition.instance,
- "Create a token that's a copy of target creature. If {this} was kicked, create five of those tokens instead"));
+ "Create a token that's a copy of target creature. if this spell was kicked, create five of those tokens instead"));
}
public RiteOfReplication(final RiteOfReplication card) {
diff --git a/Mage.Sets/src/mage/cards/r/RonaDiscipleOfGix.java b/Mage.Sets/src/mage/cards/r/RonaDiscipleOfGix.java
index 85d43403edb..58fc5084ac9 100644
--- a/Mage.Sets/src/mage/cards/r/RonaDiscipleOfGix.java
+++ b/Mage.Sets/src/mage/cards/r/RonaDiscipleOfGix.java
@@ -121,9 +121,9 @@ class RonaDiscipleOfGixPlayNonLandEffect extends AsThoughEffectImpl {
public boolean applies(UUID objectId, Ability source, UUID affectedControllerId, Game game) {
if (affectedControllerId.equals(source.getControllerId())) {
Card card = game.getCard(objectId);
- MageObject sourceObject = source.getSourceObject(game);
+ MageObject sourceObject = game.getObject(source.getSourceId());
if (card != null && !card.isLand() && sourceObject != null) {
- UUID exileId = CardUtil.getExileZoneId(game, source.getSourceId(), source.getSourceObjectZoneChangeCounter());
+ UUID exileId = CardUtil.getExileZoneId(game, source.getSourceId(), sourceObject.getZoneChangeCounter(game));
if (exileId != null) {
ExileZone exileZone = game.getState().getExile().getExileZone(exileId);
return exileZone != null && exileZone.contains(objectId);
diff --git a/Mage.Sets/src/mage/cards/r/RushingRiver.java b/Mage.Sets/src/mage/cards/r/RushingRiver.java
index fa33ff406f7..21c7a340a46 100644
--- a/Mage.Sets/src/mage/cards/r/RushingRiver.java
+++ b/Mage.Sets/src/mage/cards/r/RushingRiver.java
@@ -63,7 +63,7 @@ public class RushingRiver extends CardImpl {
Effect effect = new ConditionalOneShotEffect(
new ReturnToHandTargetEffect(),
KickedCondition.instance,
- "If {this} was kicked, return another target nonland permanent to its owner's hand");
+ "if this spell was kicked, return another target nonland permanent to its owner's hand");
effect.setTargetPointer(new SecondTargetPointer());
this.getSpellAbility().addEffect(effect);
this.getSpellAbility().addTarget(new TargetNonlandPermanent());
diff --git a/Mage.Sets/src/mage/cards/r/RuthlessDisposal.java b/Mage.Sets/src/mage/cards/r/RuthlessDisposal.java
index e7bcb8b3c8c..19cf992023d 100644
--- a/Mage.Sets/src/mage/cards/r/RuthlessDisposal.java
+++ b/Mage.Sets/src/mage/cards/r/RuthlessDisposal.java
@@ -55,7 +55,7 @@ public class RuthlessDisposal extends CardImpl {
// As an additional cost to cast Ruthless Disposal, discard a card and sacrifice a creature.
this.getSpellAbility().addCost(new DiscardTargetCost(new TargetCardInHand(new FilterCard("a card"))));
Cost cost = new SacrificeTargetCost(new TargetControlledCreaturePermanent(FILTER_CONTROLLED_CREATURE_SHORT_TEXT));
- cost.setText("As an additional cost to cast {this}, sacrifice a creature");
+ cost.setText("as an additional cost to cast this spell, sacrifice a creature");
this.getSpellAbility().addCost(cost);
// Two target creatures each get -13/-13 until end of turn.
diff --git a/Mage.Sets/src/mage/cards/r/RuthlessKnave.java b/Mage.Sets/src/mage/cards/r/RuthlessKnave.java
index 7e1c736d3d3..73f9de65bd9 100644
--- a/Mage.Sets/src/mage/cards/r/RuthlessKnave.java
+++ b/Mage.Sets/src/mage/cards/r/RuthlessKnave.java
@@ -67,7 +67,7 @@ public class RuthlessKnave extends CardImpl {
this.power = new MageInt(3);
this.toughness = new MageInt(2);
- // {2}{B}, Sacrifice a creature: Create two colorless Treasure artifact tokens with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."
+ // {2}{B}, Sacrifice a creature: Create two colorless Treasure artifact tokens with "{T}, Sacrifice this artifact: Add one mana of any color."
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new TreasureToken(), 2), new ManaCostsImpl("{2}{B}"));
ability.addCost(new SacrificeTargetCost(new TargetControlledCreaturePermanent(FILTER_CONTROLLED_CREATURE_SHORT_TEXT)));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/s/Sacrifice.java b/Mage.Sets/src/mage/cards/s/Sacrifice.java
index a331fead9c2..86bd3085fad 100644
--- a/Mage.Sets/src/mage/cards/s/Sacrifice.java
+++ b/Mage.Sets/src/mage/cards/s/Sacrifice.java
@@ -49,9 +49,9 @@ public class Sacrifice extends CardImpl {
// As an additional cost to cast Sacrifice, sacrifice a creature.
this.getSpellAbility().addCost(new SacrificeTargetCost(new TargetControlledCreaturePermanent(FILTER_CONTROLLED_CREATURE_SHORT_TEXT)));
- // Add to your mana pool an amount of {B} equal to the sacrificed creature's converted mana cost.
+ // Add an amount of {B} equal to the sacrificed creature's converted mana cost.
this.getSpellAbility().addEffect(new DynamicManaEffect(Mana.BlackMana(1), new SacrificeCostConvertedMana("creature"),
- "add to your mana pool an amount of {B} equal to the sacrificed creature's converted mana cost"));
+ "add an amount of {B} equal to the sacrificed creature's converted mana cost"));
}
public Sacrifice(final Sacrifice card) {
diff --git a/Mage.Sets/src/mage/cards/s/SadisticSacrament.java b/Mage.Sets/src/mage/cards/s/SadisticSacrament.java
index 2f49d29d840..7c70c4df94d 100644
--- a/Mage.Sets/src/mage/cards/s/SadisticSacrament.java
+++ b/Mage.Sets/src/mage/cards/s/SadisticSacrament.java
@@ -51,7 +51,7 @@ import mage.target.common.TargetCardInLibrary;
*/
public class SadisticSacrament extends CardImpl {
- private static final String ruleText = "Search target player's library for up to three cards, exile them, then that player shuffles their library. If {this} was kicked, instead search that player's library for up to fifteen cards, exile them, then that player shuffles their library";
+ private static final String ruleText = "Search target player's library for up to three cards, exile them, then that player shuffles their library. if this spell was kicked, instead search that player's library for up to fifteen cards, exile them, then that player shuffles their library";
public SadisticSacrament(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{B}{B}{B}");
diff --git a/Mage.Sets/src/mage/cards/s/SailorOfMeans.java b/Mage.Sets/src/mage/cards/s/SailorOfMeans.java
index b8d43b12cd2..160a9516760 100644
--- a/Mage.Sets/src/mage/cards/s/SailorOfMeans.java
+++ b/Mage.Sets/src/mage/cards/s/SailorOfMeans.java
@@ -51,7 +51,7 @@ public class SailorOfMeans extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(4);
- // When Sailor of Means enters the battlefield, create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color to your mana pool."
+ // When Sailor of Means enters the battlefield, create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color."
this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new TreasureToken())));
}
diff --git a/Mage.Sets/src/mage/cards/s/SanctumOfTheSun.java b/Mage.Sets/src/mage/cards/s/SanctumOfTheSun.java
index 847d1fc0f0a..98329365226 100644
--- a/Mage.Sets/src/mage/cards/s/SanctumOfTheSun.java
+++ b/Mage.Sets/src/mage/cards/s/SanctumOfTheSun.java
@@ -57,9 +57,9 @@ public class SanctumOfTheSun extends CardImpl {
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD,
new InfoEffect("(Transforms from Azor's Gateway.)")).setRuleAtTheTop(true));
- // {T}: Add X mana of any one color to your mana pool, where X is your life total.
+ // {T}: Add X mana of any one color, where X is your life total.
this.addAbility(new DynamicManaAbility(new Mana(0, 0, 0, 0, 0, 0, 1, 0), new ControllerLifeCount(), new TapSourceCost(),
- "Add X mana of any one color to your mana pool, where X is is your life total", true));
+ "Add X mana of any one color, where X is is your life total", true));
}
diff --git a/Mage.Sets/src/mage/cards/s/SarkhanUnbroken.java b/Mage.Sets/src/mage/cards/s/SarkhanUnbroken.java
index 04adea4f792..c7b9ecdc078 100644
--- a/Mage.Sets/src/mage/cards/s/SarkhanUnbroken.java
+++ b/Mage.Sets/src/mage/cards/s/SarkhanUnbroken.java
@@ -71,7 +71,7 @@ public class SarkhanUnbroken extends CardImpl {
this.addAbility(new PlanswalkerEntersWithLoyalityCountersAbility(4));
- // +1: Draw a card, then add one mana of any color to your mana pool.
+ // +1: Draw a card, then add one mana of any color.
this.addAbility(new LoyaltyAbility(new SarkhanUnbrokenAbility1(), 1));
// -2: Create a 4/4 red Dragon creature token with flying.
this.addAbility(new LoyaltyAbility(new CreateTokenEffect(new DragonToken(), 1), -2));
@@ -93,7 +93,7 @@ class SarkhanUnbrokenAbility1 extends OneShotEffect {
public SarkhanUnbrokenAbility1() {
super(Outcome.Benefit);
- this.staticText = "Draw a card, then add one mana of any color to your mana pool.";
+ this.staticText = "Draw a card, then add one mana of any color.";
}
public SarkhanUnbrokenAbility1(final SarkhanUnbrokenAbility1 effect) {
diff --git a/Mage.Sets/src/mage/cards/s/SasayaOrochiAscendant.java b/Mage.Sets/src/mage/cards/s/SasayaOrochiAscendant.java
index 2fb49c8775c..282326c1b71 100644
--- a/Mage.Sets/src/mage/cards/s/SasayaOrochiAscendant.java
+++ b/Mage.Sets/src/mage/cards/s/SasayaOrochiAscendant.java
@@ -125,7 +125,7 @@ class SasayasEssence extends TokenImpl {
color.setGreen(true);
- // Whenever a land you control is tapped for mana, for each other land you control with the same name, add one mana to your mana pool of any type that land produced.
+ // Whenever a land you control is tapped for mana, for each other land you control with the same name, add one mana of any type that land produced.
this.addAbility(new TapForManaAllTriggeredManaAbility(
new SasayasEssenceManaEffectEffect(),
new FilterControlledLandPermanent(), SetTargetPointer.PERMANENT));
@@ -143,7 +143,7 @@ class SasayasEssenceManaEffectEffect extends ManaEffect {
public SasayasEssenceManaEffectEffect() {
super();
- this.staticText = "for each other land you control with the same name, add one mana to your mana pool of any type that land produced";
+ this.staticText = "for each other land you control with the same name, add one mana of any type that land produced";
}
public SasayasEssenceManaEffectEffect(final SasayasEssenceManaEffectEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/s/SavageOffensive.java b/Mage.Sets/src/mage/cards/s/SavageOffensive.java
index c8b5c276b49..24744781b36 100644
--- a/Mage.Sets/src/mage/cards/s/SavageOffensive.java
+++ b/Mage.Sets/src/mage/cards/s/SavageOffensive.java
@@ -69,7 +69,7 @@ public class SavageOffensive extends CardImpl {
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
new AddContinuousEffectToGame(new BoostControlledEffect(1, 1, Duration.EndOfTurn)),
new LockedInCondition(KickedCondition.instance),
- "If {this} was kicked, they get +1/+1 until end of turn."));
+ "if this spell was kicked, they get +1/+1 until end of turn."));
}
public SavageOffensive(final SavageOffensive card) {
diff --git a/Mage.Sets/src/mage/cards/s/ScaleguardSentinels.java b/Mage.Sets/src/mage/cards/s/ScaleguardSentinels.java
index c0a19bac1d3..55887ebb6d2 100644
--- a/Mage.Sets/src/mage/cards/s/ScaleguardSentinels.java
+++ b/Mage.Sets/src/mage/cards/s/ScaleguardSentinels.java
@@ -69,7 +69,7 @@ public class ScaleguardSentinels extends CardImpl {
this.toughness = new MageInt(3);
// As an additional cost to cast Scaleguard Sentinels, you may reveal a Dragon card from your hand.
- this.getSpellAbility().addEffect(new InfoEffect("As an additional cost to cast {this}, you may reveal a Dragon card from your hand"));
+ this.getSpellAbility().addEffect(new InfoEffect("as an additional cost to cast this spell, you may reveal a Dragon card from your hand"));
// Scaleguard Sentinels enters the battlefield with a +1/+1 counter on it if you revealed a Dragon card or controlled a Dragon as you cast Scaleguard Sentinels.
this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance(), true),
diff --git a/Mage.Sets/src/mage/cards/s/SchoolOfTheUnseen.java b/Mage.Sets/src/mage/cards/s/SchoolOfTheUnseen.java
index bd469e73890..595e59e5dae 100644
--- a/Mage.Sets/src/mage/cards/s/SchoolOfTheUnseen.java
+++ b/Mage.Sets/src/mage/cards/s/SchoolOfTheUnseen.java
@@ -48,7 +48,7 @@ public class SchoolOfTheUnseen extends CardImpl {
// {tap}: Add {C}.
this.addAbility(new ColorlessManaAbility());
- // {2}, {tap}: Add one mana of any color to your mana pool.
+ // {2}, {tap}: Add one mana of any color.
Ability ability = new AnyColorManaAbility(new GenericManaCost(2));
ability.addCost(new TapSourceCost());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/s/ScorchedEarth.java b/Mage.Sets/src/mage/cards/s/ScorchedEarth.java
index 9dedf2cd26f..d8372671c12 100644
--- a/Mage.Sets/src/mage/cards/s/ScorchedEarth.java
+++ b/Mage.Sets/src/mage/cards/s/ScorchedEarth.java
@@ -98,7 +98,7 @@ class ScorchedEarthRuleEffect extends OneShotEffect {
public ScorchedEarthRuleEffect() {
super(Outcome.Benefit);
- this.staticText = "As an additional cost to cast {this}, discard X land cards";
+ this.staticText = "as an additional cost to cast this spell, discard X land cards";
}
public ScorchedEarthRuleEffect(final ScorchedEarthRuleEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/s/Scuttlemutt.java b/Mage.Sets/src/mage/cards/s/Scuttlemutt.java
index 2244a8f8342..f4e9a961d23 100644
--- a/Mage.Sets/src/mage/cards/s/Scuttlemutt.java
+++ b/Mage.Sets/src/mage/cards/s/Scuttlemutt.java
@@ -54,7 +54,7 @@ public class Scuttlemutt extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(2);
- // {T}: Add one mana of any color to your mana pool.
+ // {T}: Add one mana of any color.
this.addAbility(new AnyColorManaAbility());
// {T}: Target creature becomes the color or colors of your choice until end of turn.
diff --git a/Mage.Sets/src/mage/cards/s/SeafloorDebris.java b/Mage.Sets/src/mage/cards/s/SeafloorDebris.java
index 97a6a041339..bd20f088de3 100644
--- a/Mage.Sets/src/mage/cards/s/SeafloorDebris.java
+++ b/Mage.Sets/src/mage/cards/s/SeafloorDebris.java
@@ -50,7 +50,7 @@ public class SeafloorDebris extends CardImpl {
this.addAbility(new EntersBattlefieldTappedAbility());
// {tap}: Add {U}.
this.addAbility(new BlueManaAbility());
- // {tap}, Sacrifice Seafloor Debris: Add one mana of any color to your mana pool.
+ // {tap}, Sacrifice Seafloor Debris: Add one mana of any color.
Ability ability = new AnyColorManaAbility();
ability.addCost(new SacrificeSourceCost());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/s/SelvalaHeartOfTheWilds.java b/Mage.Sets/src/mage/cards/s/SelvalaHeartOfTheWilds.java
index 21c48e51716..902d6b6783e 100644
--- a/Mage.Sets/src/mage/cards/s/SelvalaHeartOfTheWilds.java
+++ b/Mage.Sets/src/mage/cards/s/SelvalaHeartOfTheWilds.java
@@ -65,7 +65,7 @@ public class SelvalaHeartOfTheWilds extends CardImpl {
}
private static final String rule = "Whenever another creature enters the battlefield, its controller may draw a card if its power is greater than each other creature's power.";
- private static final String rule2 = "Add X mana in any combination of colors to your mana pool, where X is the greatest power among creatures you control.";
+ private static final String rule2 = "Add X mana in any combination of colors, where X is the greatest power among creatures you control.";
public SelvalaHeartOfTheWilds(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{G}{G}");
@@ -78,7 +78,7 @@ public class SelvalaHeartOfTheWilds extends CardImpl {
// Whenever another creature enters the battlefield, its controller may draw a card if its power is greater than each other creature's power.
this.addAbility(new EntersBattlefieldAllTriggeredAbility(Zone.BATTLEFIELD, new SelvalaHeartOfTheWildsEffect(), filter, false, SetTargetPointer.PERMANENT, rule));
- // {G}, {T}: Add X mana in any combination of colors to your mana pool, where X is the greatest power among creatures you control.
+ // {G}, {T}: Add X mana in any combination of colors, where X is the greatest power among creatures you control.
ManaEffect manaEffect = new AddManaInAnyCombinationEffect(new GreatestPowerAmongControlledCreaturesValue(), rule2, ColoredManaSymbol.B, ColoredManaSymbol.U, ColoredManaSymbol.R, ColoredManaSymbol.W, ColoredManaSymbol.G);
Ability ability = new SimpleManaAbility(Zone.BATTLEFIELD, manaEffect, new ManaCostsImpl("{G}"));
ability.addCost(new TapSourceCost());
@@ -182,6 +182,6 @@ class GreatestPowerYouControlValue implements DynamicValue {
@Override
public String getMessage() {
- return "Add X mana in any combination of colors to your mana pool, where X is the greatest power among creatures you control.";
+ return "Add X mana in any combination of colors, where X is the greatest power among creatures you control.";
}
}
diff --git a/Mage.Sets/src/mage/cards/s/ServantOfTheConduit.java b/Mage.Sets/src/mage/cards/s/ServantOfTheConduit.java
index 67635f5e460..656a8df3ef8 100644
--- a/Mage.Sets/src/mage/cards/s/ServantOfTheConduit.java
+++ b/Mage.Sets/src/mage/cards/s/ServantOfTheConduit.java
@@ -56,7 +56,7 @@ public class ServantOfTheConduit extends CardImpl {
// When Servant of the Conduit enters teh battlefield, you get {E}{E}.
this.addAbility(new EntersBattlefieldTriggeredAbility(new GetEnergyCountersControllerEffect(2)));
- // {T}, Pay {E}: Add one mana of any color to your mana pool.
+ // {T}, Pay {E}: Add one mana of any color.
Ability ability = new AnyColorManaAbility(new TapSourceCost());
ability.addCost(new PayEnergyCost(1));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/s/ShamanOfForgottenWays.java b/Mage.Sets/src/mage/cards/s/ShamanOfForgottenWays.java
index 0cd803a7c42..74c7095e872 100644
--- a/Mage.Sets/src/mage/cards/s/ShamanOfForgottenWays.java
+++ b/Mage.Sets/src/mage/cards/s/ShamanOfForgottenWays.java
@@ -67,7 +67,7 @@ public class ShamanOfForgottenWays extends CardImpl {
this.power = new MageInt( 2);
this.toughness = new MageInt(3);
- // {T}:Add two mana in any combination of colors to your mana pool. Spend this mana only to cast creature spells.
+ // {T}:Add two mana in any combination of colors. Spend this mana only to cast creature spells.
this.addAbility(new ConditionalAnyColorManaAbility(2, new ShamanOfForgottenWaysManaBuilder()));
// Formidable - {9}{G}{G},{T}:Each player's life total becomes the number of creatures he or she controls. Activate the ability only if creatures you control have total power 8 or greater.
diff --git a/Mage.Sets/src/mage/cards/s/ShelteredAerie.java b/Mage.Sets/src/mage/cards/s/ShelteredAerie.java
index dac05c9d760..50474c03437 100644
--- a/Mage.Sets/src/mage/cards/s/ShelteredAerie.java
+++ b/Mage.Sets/src/mage/cards/s/ShelteredAerie.java
@@ -64,10 +64,10 @@ public class ShelteredAerie extends CardImpl {
Ability ability = new EnchantAbility(auraTarget.getTargetName());
this.addAbility(ability);
- // Enchanted land has "{T}: Add two mana of any one color to your mana pool."
+ // Enchanted land has "{T}: Add two mana of any one color."
Ability gainedAbility = new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaOfAnyColorEffect(2), new TapSourceCost());
Effect effect = new GainAbilityAttachedEffect(gainedAbility, AttachmentType.AURA);
- effect.setText("Enchanted land has \"{T}: Add two mana of any one color to your mana pool.\"");
+ effect.setText("Enchanted land has \"{T}: Add two mana of any one color.\"");
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
}
diff --git a/Mage.Sets/src/mage/cards/s/ShimmeringGrotto.java b/Mage.Sets/src/mage/cards/s/ShimmeringGrotto.java
index 82a01928f71..86b145d891a 100644
--- a/Mage.Sets/src/mage/cards/s/ShimmeringGrotto.java
+++ b/Mage.Sets/src/mage/cards/s/ShimmeringGrotto.java
@@ -47,7 +47,7 @@ public class ShimmeringGrotto extends CardImpl {
super(ownerId,setInfo,new CardType[]{CardType.LAND},"");
// {tap}: Add {C}.
this.addAbility(new ColorlessManaAbility());
- // {1}, {tap}: Add one mana of any color to your mana pool.
+ // {1}, {tap}: Add one mana of any color.
Ability ability = new AnyColorManaAbility(new GenericManaCost(1));
ability.addCost(new TapSourceCost());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/s/ShivanFire.java b/Mage.Sets/src/mage/cards/s/ShivanFire.java
index da76aa6569b..0a345764ac3 100644
--- a/Mage.Sets/src/mage/cards/s/ShivanFire.java
+++ b/Mage.Sets/src/mage/cards/s/ShivanFire.java
@@ -55,7 +55,7 @@ public class ShivanFire extends CardImpl {
// Shivan Fire deals 2 damage to any target. If Shivan Fire was kicked, it deals 4 damage to that creature or player instead.
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(new DamageTargetEffect(4),
- new DamageTargetEffect(2), KickedCondition.instance, "{this} deals 2 damage to target creature. If {this} was kicked, it deals 4 damage to that creature instead"));
+ new DamageTargetEffect(2), KickedCondition.instance, "{this} deals 2 damage to target creature. if this spell was kicked, it deals 4 damage to that creature instead"));
}
public ShivanFire(final ShivanFire card) {
diff --git a/Mage.Sets/src/mage/cards/s/ShivanReef.java b/Mage.Sets/src/mage/cards/s/ShivanReef.java
index 395c33c9bf5..6f2c6946172 100644
--- a/Mage.Sets/src/mage/cards/s/ShivanReef.java
+++ b/Mage.Sets/src/mage/cards/s/ShivanReef.java
@@ -48,10 +48,10 @@ public class ShivanReef extends CardImpl {
public ShivanReef(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.LAND},"");
- // Tap: Add 1 to your mana pool.
+ // Tap: Add 1.
this.addAbility(new ColorlessManaAbility());
- //Tap: Add Blue or Red to your mana pool. Shivan Reef deals 1 damage to you.
+ //Tap: Add Blue or Red. Shivan Reef deals 1 damage to you.
Ability blueManaAbility = new SimpleManaAbility(Zone.BATTLEFIELD, Mana.BlueMana(1), new TapSourceCost());
blueManaAbility.addEffect(new DamageControllerEffect(1));
this.addAbility(blueManaAbility);
diff --git a/Mage.Sets/src/mage/cards/s/SickeningDreams.java b/Mage.Sets/src/mage/cards/s/SickeningDreams.java
index 117189d22d1..5e9b1798841 100644
--- a/Mage.Sets/src/mage/cards/s/SickeningDreams.java
+++ b/Mage.Sets/src/mage/cards/s/SickeningDreams.java
@@ -73,7 +73,7 @@ class SickeningDreamsAdditionalCost extends VariableCostImpl {
SickeningDreamsAdditionalCost() {
super("cards to discard");
- this.text = "As an additional cost to cast {this}, discard X cards";
+ this.text = "as an additional cost to cast this spell, discard X cards";
}
SickeningDreamsAdditionalCost(final SickeningDreamsAdditionalCost cost) {
diff --git a/Mage.Sets/src/mage/cards/s/SilhanaStarfletcher.java b/Mage.Sets/src/mage/cards/s/SilhanaStarfletcher.java
index 95eb0cd35a5..b2791b389eb 100644
--- a/Mage.Sets/src/mage/cards/s/SilhanaStarfletcher.java
+++ b/Mage.Sets/src/mage/cards/s/SilhanaStarfletcher.java
@@ -68,7 +68,7 @@ public class SilhanaStarfletcher extends CardImpl {
// As Silhana Starfletcher enters the battlefield, choose a color.
this.addAbility(new EntersBattlefieldAbility(new ChooseColorEffect(Outcome.Neutral)));
- // {tap}: Add one mana of the chosen color to your mana pool.
+ // {tap}: Add one mana of the chosen color.
this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, new SilhanaStarfletcherManaEffect(), new TapSourceCost()));
}
@@ -87,7 +87,7 @@ class SilhanaStarfletcherManaEffect extends ManaEffect {
public SilhanaStarfletcherManaEffect() {
super();
- staticText = "Add one mana of the chosen color to your mana pool";
+ staticText = "Add one mana of the chosen color";
}
public SilhanaStarfletcherManaEffect(final SilhanaStarfletcherManaEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/s/SilumgarsScorn.java b/Mage.Sets/src/mage/cards/s/SilumgarsScorn.java
index f42fe9c5723..6cd739e9c3b 100644
--- a/Mage.Sets/src/mage/cards/s/SilumgarsScorn.java
+++ b/Mage.Sets/src/mage/cards/s/SilumgarsScorn.java
@@ -65,7 +65,7 @@ public class SilumgarsScorn extends CardImpl {
super(ownerId,setInfo,new CardType[]{CardType.INSTANT},"{U}{U}");
// As an additional cost to cast Silumgar's Scorn, you may reveal a Dragon card from your hand.
- this.getSpellAbility().addEffect(new InfoEffect("As an additional cost to cast {this}, you may reveal a Dragon card from your hand"));
+ this.getSpellAbility().addEffect(new InfoEffect("as an additional cost to cast this spell, you may reveal a Dragon card from your hand"));
// Counter target spell unless its controller pays {1}. If you revealed a Dragon card or controlled a Dragon as you cast Silumgar's Scorn, counter that spell instead.
this.getSpellAbility().addEffect(new SilumgarsScornCounterEffect());
diff --git a/Mage.Sets/src/mage/cards/s/SithHolocron.java b/Mage.Sets/src/mage/cards/s/SithHolocron.java
index 95fb49f1e03..436fbeb73eb 100644
--- a/Mage.Sets/src/mage/cards/s/SithHolocron.java
+++ b/Mage.Sets/src/mage/cards/s/SithHolocron.java
@@ -71,7 +71,7 @@ public class SithHolocron extends CardImpl {
ability.addCost(cost);
this.addAbility(ability);
- // {T}, Remove two charge counters from Sith Holocron: Add UB or BR to your mana pool.
+ // {T}, Remove two charge counters from Sith Holocron: Add UB or BR.
cost = new RemoveCountersSourceCost(CounterType.CHARGE.createInstance(2));
ability = new SimpleManaAbility(Zone.BATTLEFIELD, new Mana(0, 0, 1, 0, 1, 0, 0, 0), new TapSourceCost());
diff --git a/Mage.Sets/src/mage/cards/s/SkeletalScrying.java b/Mage.Sets/src/mage/cards/s/SkeletalScrying.java
index f186e260f9b..ab4edea9e31 100644
--- a/Mage.Sets/src/mage/cards/s/SkeletalScrying.java
+++ b/Mage.Sets/src/mage/cards/s/SkeletalScrying.java
@@ -86,7 +86,7 @@ class SkeletalScryingRuleEffect extends OneShotEffect {
public SkeletalScryingRuleEffect() {
super(Outcome.Benefit);
- this.staticText = "As an additional cost to cast {this}, exile X cards from your graveyard";
+ this.staticText = "as an additional cost to cast this spell, exile X cards from your graveyard";
}
public SkeletalScryingRuleEffect(final SkeletalScryingRuleEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/s/SliverHive.java b/Mage.Sets/src/mage/cards/s/SliverHive.java
index c0663105101..8f500633885 100644
--- a/Mage.Sets/src/mage/cards/s/SliverHive.java
+++ b/Mage.Sets/src/mage/cards/s/SliverHive.java
@@ -71,7 +71,7 @@ public class SliverHive extends CardImpl {
// {T}: Add {C}.
this.addAbility(new ColorlessManaAbility());
- // {T}: Add one mana of any color to your mana pool. Spend this mana only to cast a Sliver spell.
+ // {T}: Add one mana of any color. Spend this mana only to cast a Sliver spell.
this.addAbility(new ConditionalAnyColorManaAbility(new TapSourceCost(), 1, new ConditionalSpellManaBuilder(filterSpell), true));
// {5}, {T}: Create a 1/1 colorless Sliver creature token. Activate this ability only if you control a Sliver.
diff --git a/Mage.Sets/src/mage/cards/s/Smokebraider.java b/Mage.Sets/src/mage/cards/s/Smokebraider.java
index ba8b1783934..5c14e4a8731 100644
--- a/Mage.Sets/src/mage/cards/s/Smokebraider.java
+++ b/Mage.Sets/src/mage/cards/s/Smokebraider.java
@@ -57,7 +57,7 @@ public class Smokebraider extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(1);
- // {tap}: Add two mana in any combination of colors to your mana pool. Spend this mana only to cast Elemental spells or activate abilities of Elementals.
+ // {tap}: Add two mana in any combination of colors. Spend this mana only to cast Elemental spells or activate abilities of Elementals.
this.addAbility(new ConditionalAnyColorManaAbility(2, new SmokebraiderManaBuilder()));
}
diff --git a/Mage.Sets/src/mage/cards/s/SolGrail.java b/Mage.Sets/src/mage/cards/s/SolGrail.java
index ffad24c8718..3333e579f1f 100644
--- a/Mage.Sets/src/mage/cards/s/SolGrail.java
+++ b/Mage.Sets/src/mage/cards/s/SolGrail.java
@@ -57,7 +57,7 @@ public class SolGrail extends CardImpl {
// As Sol Grail enters the battlefield, choose a color.
this.addAbility(new EntersBattlefieldAbility(new ChooseColorEffect(Outcome.Neutral)));
- // {tap}: Add one mana of the chosen color to your mana pool.
+ // {tap}: Add one mana of the chosen color.
this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, new SolGrailManaEffect(), new TapSourceCost()));
}
@@ -76,7 +76,7 @@ class SolGrailManaEffect extends ManaEffect {
public SolGrailManaEffect() {
super();
- staticText = "Add one mana of the chosen color to your mana pool";
+ staticText = "Add one mana of the chosen color";
}
public SolGrailManaEffect(final SolGrailManaEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/s/SoldeviAdnate.java b/Mage.Sets/src/mage/cards/s/SoldeviAdnate.java
index d997e199fbb..65b7527e7d0 100644
--- a/Mage.Sets/src/mage/cards/s/SoldeviAdnate.java
+++ b/Mage.Sets/src/mage/cards/s/SoldeviAdnate.java
@@ -64,9 +64,9 @@ public class SoldeviAdnate extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(2);
- // {T}, Sacrifice a black or artifact creature: Add to your mana pool an amount of {B} equal to the sacrificed creature's converted mana cost.
+ // {T}, Sacrifice a black or artifact creature: Add an amount of {B} equal to the sacrificed creature's converted mana cost.
Ability ability = new DynamicManaAbility(Mana.BlackMana(1), new SacrificeCostConvertedMana("creature"),
- "add to your mana pool an amount of {B} equal to the sacrificed creature's converted mana cost");
+ "add an amount of {B} equal to the sacrificed creature's converted mana cost");
ability.addCost(new SacrificeTargetCost(new TargetControlledPermanent(filter)));
this.addAbility(ability);
}
diff --git a/Mage.Sets/src/mage/cards/s/SomberwaldSage.java b/Mage.Sets/src/mage/cards/s/SomberwaldSage.java
index da362cfc38a..284fd305b4d 100644
--- a/Mage.Sets/src/mage/cards/s/SomberwaldSage.java
+++ b/Mage.Sets/src/mage/cards/s/SomberwaldSage.java
@@ -53,7 +53,7 @@ public class SomberwaldSage extends CardImpl {
this.power = new MageInt(0);
this.toughness = new MageInt(1);
- // {tap}: Add three mana of any one color to your mana pool. Spend this mana only to cast creature spells.
+ // {tap}: Add three mana of any one color. Spend this mana only to cast creature spells.
this.addAbility(new ConditionalAnyColorManaAbility(new TapSourceCost(), 3, new SomberwaldSageManaBuilder(), true));
}
diff --git a/Mage.Sets/src/mage/cards/s/SpellSwindle.java b/Mage.Sets/src/mage/cards/s/SpellSwindle.java
index a956b52b363..9660810f1d7 100644
--- a/Mage.Sets/src/mage/cards/s/SpellSwindle.java
+++ b/Mage.Sets/src/mage/cards/s/SpellSwindle.java
@@ -49,7 +49,7 @@ public class SpellSwindle extends CardImpl {
public SpellSwindle(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{3}{U}{U}");
- // Counter target spell. Create X colorless Treasure artifact tokens, where X is that spell's converted mana cost. They have "T, Sacrifice this artifact: Add one mana of any color to your mana pool."
+ // Counter target spell. Create X colorless Treasure artifact tokens, where X is that spell's converted mana cost. They have "T, Sacrifice this artifact: Add one mana of any color."
this.getSpellAbility().addTarget(new TargetSpell());
this.getSpellAbility().addEffect(new SpellSwindleEffect());
}
@@ -69,7 +69,7 @@ class SpellSwindleEffect extends OneShotEffect {
public SpellSwindleEffect() {
super(Outcome.Detriment);
staticText = "Counter target spell. Create X colorless Treasure artifact tokens, where X is that spell's converted mana cost. "
- + "They have \"{T}, Sacrifice this artifact: Add one mana of any color to your mana pool.\"";
+ + "They have \"{T}, Sacrifice this artifact: Add one mana of any color.\"";
}
public SpellSwindleEffect(final SpellSwindleEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/s/SpireOfIndustry.java b/Mage.Sets/src/mage/cards/s/SpireOfIndustry.java
index 05b8e9d7bbd..1c9b2658579 100644
--- a/Mage.Sets/src/mage/cards/s/SpireOfIndustry.java
+++ b/Mage.Sets/src/mage/cards/s/SpireOfIndustry.java
@@ -53,7 +53,7 @@ public class SpireOfIndustry extends CardImpl {
// {T}: Add {C}.
this.addAbility(new ColorlessManaAbility());
- // {T}, Pay 1 life: Add one mana of any color to your mana pool. Activate this ability only if you control an artifact.
+ // {T}, Pay 1 life: Add one mana of any color. Activate this ability only if you control an artifact.
Ability ability = new ActivateIfConditionManaAbility(
Zone.BATTLEFIELD,
new AddManaOfAnyColorEffect(),
diff --git a/Mage.Sets/src/mage/cards/s/SpringjackPasture.java b/Mage.Sets/src/mage/cards/s/SpringjackPasture.java
index 4aff2586f02..88f6b9b6fb4 100644
--- a/Mage.Sets/src/mage/cards/s/SpringjackPasture.java
+++ b/Mage.Sets/src/mage/cards/s/SpringjackPasture.java
@@ -72,12 +72,12 @@ public class SpringjackPasture extends CardImpl {
ability.addCost(new TapSourceCost());
this.addAbility(ability);
- // {tap}, Sacrifice X Goats: Add X mana of any one color to your mana pool. You gain X life.
+ // {tap}, Sacrifice X Goats: Add X mana of any one color. You gain X life.
ability = new DynamicManaAbility(
new Mana(0,0,0,0,0,0,1,0),
new GetXValue(),
new TapSourceCost(),
- "Add X mana of any one color to your mana pool",
+ "Add X mana of any one color",
true);
ability.addCost(new SacrificeXTargetCost(filter));
ability.addEffect(new GainLifeEffect(new GetXValue()));
diff --git a/Mage.Sets/src/mage/cards/s/SpringleafDrum.java b/Mage.Sets/src/mage/cards/s/SpringleafDrum.java
index e71beb3368b..56254d44ba0 100644
--- a/Mage.Sets/src/mage/cards/s/SpringleafDrum.java
+++ b/Mage.Sets/src/mage/cards/s/SpringleafDrum.java
@@ -52,7 +52,7 @@ public class SpringleafDrum extends CardImpl {
public SpringleafDrum(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{1}");
- // {T}, Tap an untapped creature you control: Add one mana of any color to your mana pool.
+ // {T}, Tap an untapped creature you control: Add one mana of any color.
Ability ability = new AnyColorManaAbility();
ability.addCost(new TapTargetCost(new TargetControlledCreaturePermanent(1, 1, filter, false)));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/s/SquanderedResources.java b/Mage.Sets/src/mage/cards/s/SquanderedResources.java
index 1c3f9682196..bea07cd8423 100644
--- a/Mage.Sets/src/mage/cards/s/SquanderedResources.java
+++ b/Mage.Sets/src/mage/cards/s/SquanderedResources.java
@@ -65,7 +65,7 @@ public class SquanderedResources extends CardImpl {
public SquanderedResources(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{B}{G}");
- // Sacrifice a land: Add to your mana pool one mana of any type the sacrificed land could produce.
+ // Sacrifice a land: Add one mana of any type the sacrificed land could produce.
this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, new SquanderedResourcesEffect(), new SacrificeTargetCost(new TargetControlledPermanent(filter))));
}
@@ -89,7 +89,7 @@ class SquanderedResourcesEffect extends ManaEffect {
public SquanderedResourcesEffect() {
super();
- staticText = "Add to your mana pool one mana of any type the sacrificed land could produce";
+ staticText = "Add one mana of any type the sacrificed land could produce";
}
public SquanderedResourcesEffect(final SquanderedResourcesEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/s/StandingStones.java b/Mage.Sets/src/mage/cards/s/StandingStones.java
index 02bbfc95713..7bd76733479 100644
--- a/Mage.Sets/src/mage/cards/s/StandingStones.java
+++ b/Mage.Sets/src/mage/cards/s/StandingStones.java
@@ -46,7 +46,7 @@ public class StandingStones extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{3}");
- // {1}, {tap}, Pay 1 life: Add one mana of any color to your mana pool.
+ // {1}, {tap}, Pay 1 life: Add one mana of any color.
Ability ability = new AnyColorManaAbility();
ability.addCost(new GenericManaCost(1));
ability.addCost(new PayLifeCost(1));
diff --git a/Mage.Sets/src/mage/cards/s/StarCompass.java b/Mage.Sets/src/mage/cards/s/StarCompass.java
index 2a68d148c38..7b370f453f0 100644
--- a/Mage.Sets/src/mage/cards/s/StarCompass.java
+++ b/Mage.Sets/src/mage/cards/s/StarCompass.java
@@ -63,7 +63,7 @@ public class StarCompass extends CardImpl {
// Star Compass enters the battlefield tapped.
this.addAbility(new EntersBattlefieldTappedAbility());
- // {tap}: Add to your mana pool one mana of any color that a basic land you control could produce.
+ // {tap}: Add one mana of any color that a basic land you control could produce.
this.addAbility(new StarCompassManaAbility());
}
@@ -108,7 +108,7 @@ class StarCompassManaEffect extends ManaEffect {
public StarCompassManaEffect() {
super();
- staticText = "Add to your mana pool one mana of any type that a basic land you control could produce";
+ staticText = "Add one mana of any type that a basic land you control could produce";
}
public StarCompassManaEffect(final StarCompassManaEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/s/StormTheVault.java b/Mage.Sets/src/mage/cards/s/StormTheVault.java
index 4a1647230fe..27cd746b389 100644
--- a/Mage.Sets/src/mage/cards/s/StormTheVault.java
+++ b/Mage.Sets/src/mage/cards/s/StormTheVault.java
@@ -59,7 +59,7 @@ public class StormTheVault extends CardImpl {
this.transformable = true;
this.secondSideCardClazz = VaultOfCatlacan.class;
- // Whenever one or more creatures you control deal combat damage to a player, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."
+ // Whenever one or more creatures you control deal combat damage to a player, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color."
this.addAbility(new ControlledCreaturesDealCombatDamagePlayerTriggeredAbility(new CreateTokenEffect(new TreasureToken())));
// At the beginning of your end step, if you control five or more artifacts, transform Storm the Vault.
diff --git a/Mage.Sets/src/mage/cards/s/StrengthOfNight.java b/Mage.Sets/src/mage/cards/s/StrengthOfNight.java
index ac8f7bc40da..e8be274589f 100644
--- a/Mage.Sets/src/mage/cards/s/StrengthOfNight.java
+++ b/Mage.Sets/src/mage/cards/s/StrengthOfNight.java
@@ -64,7 +64,7 @@ public class StrengthOfNight extends CardImpl {
this.getSpellAbility().addEffect(new BoostControlledEffect(1, 1, Duration.EndOfTurn));
ContinuousEffect effect = new BoostControlledEffect(2, 2, Duration.EndOfTurn, filter);
this.getSpellAbility().addEffect(new ConditionalContinuousEffect(effect, new LockedInCondition(KickedCondition.instance),
- "If {this} was kicked, Zombie creatures you control get an additional +2/+2 until end of turn."));
+ "if this spell was kicked, Zombie creatures you control get an additional +2/+2 until end of turn."));
}
public StrengthOfNight(final StrengthOfNight card) {
diff --git a/Mage.Sets/src/mage/cards/s/SurvivorsEncampment.java b/Mage.Sets/src/mage/cards/s/SurvivorsEncampment.java
index 5c73f4fac4c..1d3a596fedc 100644
--- a/Mage.Sets/src/mage/cards/s/SurvivorsEncampment.java
+++ b/Mage.Sets/src/mage/cards/s/SurvivorsEncampment.java
@@ -61,7 +61,7 @@ public class SurvivorsEncampment extends CardImpl {
// {T}: Add {C}.
this.addAbility(new ColorlessManaAbility());
- // {T}, Tap an untapped creature you control: Add one mana of any color to your mana pool.
+ // {T}, Tap an untapped creature you control: Add one mana of any color.
Ability ability = new AnyColorManaAbility();
ability.addCost(new TapTargetCost(new TargetControlledPermanent(filter)));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/s/SylvanCaryatid.java b/Mage.Sets/src/mage/cards/s/SylvanCaryatid.java
index 07737efaba0..f5fb98a6681 100644
--- a/Mage.Sets/src/mage/cards/s/SylvanCaryatid.java
+++ b/Mage.Sets/src/mage/cards/s/SylvanCaryatid.java
@@ -54,7 +54,7 @@ public class SylvanCaryatid extends CardImpl {
this.addAbility(DefenderAbility.getInstance());
// Hexproof
this.addAbility(HexproofAbility.getInstance());
- // {T}: Add one mana of any color to your mana pool.
+ // {T}: Add one mana of any color.
this.addAbility(new AnyColorManaAbility());
}
diff --git a/Mage.Sets/src/mage/cards/s/SylvokExplorer.java b/Mage.Sets/src/mage/cards/s/SylvokExplorer.java
index 8cf5dd33bb5..e0f217c489e 100644
--- a/Mage.Sets/src/mage/cards/s/SylvokExplorer.java
+++ b/Mage.Sets/src/mage/cards/s/SylvokExplorer.java
@@ -50,7 +50,7 @@ public class SylvokExplorer extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(1);
- // {T}: Add to your mana pool one mana of any color that a land an opponent controls could produce.
+ // {T}: Add one mana of any color that a land an opponent controls could produce.
this.addAbility(new AnyColorLandsProduceManaAbility(TargetController.OPPONENT));
}
diff --git a/Mage.Sets/src/mage/cards/t/TarnishedCitadel.java b/Mage.Sets/src/mage/cards/t/TarnishedCitadel.java
index aee06618404..e932452328a 100644
--- a/Mage.Sets/src/mage/cards/t/TarnishedCitadel.java
+++ b/Mage.Sets/src/mage/cards/t/TarnishedCitadel.java
@@ -50,7 +50,7 @@ public class TarnishedCitadel extends CardImpl {
// {tap}: Add {C}.
this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, Mana.ColorlessMana(1), new TapSourceCost()));
- // {tap}: Add one mana of any color to your mana pool. Tarnished Citadel deals 3 damage to you.
+ // {tap}: Add one mana of any color. Tarnished Citadel deals 3 damage to you.
ActivatedManaAbilityImpl ability = new AnyColorManaAbility(new TapSourceCost());
ability.addEffect(new DamageControllerEffect(3));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/t/TectonicEdge.java b/Mage.Sets/src/mage/cards/t/TectonicEdge.java
index b6d12489cc9..b407132e00c 100644
--- a/Mage.Sets/src/mage/cards/t/TectonicEdge.java
+++ b/Mage.Sets/src/mage/cards/t/TectonicEdge.java
@@ -58,7 +58,7 @@ public class TectonicEdge extends CardImpl {
public TectonicEdge(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.LAND},null);
- // Tap: Add 1 to your mana pool.
+ // Tap: Add 1.
this.addAbility(new ColorlessManaAbility());
// {1}, {T}, Sacrifice Tectonic Edge: Destroy target nonbasic land. Activate this ability only if an opponent controls four or more lands.
diff --git a/Mage.Sets/src/mage/cards/t/TendoIceBridge.java b/Mage.Sets/src/mage/cards/t/TendoIceBridge.java
index e93db4d2376..f90e52cd566 100644
--- a/Mage.Sets/src/mage/cards/t/TendoIceBridge.java
+++ b/Mage.Sets/src/mage/cards/t/TendoIceBridge.java
@@ -52,7 +52,7 @@ public class TendoIceBridge extends CardImpl {
new AddCountersSourceEffect(CounterType.CHARGE.createInstance(1)), "with a charge counter on it"));
// {tap}: Add {C}.
this.addAbility(new ColorlessManaAbility());
- // {tap}, Remove a charge counter from Tendo Ice Bridge: Add one mana of any color to your mana pool.
+ // {tap}, Remove a charge counter from Tendo Ice Bridge: Add one mana of any color.
Ability ability = new AnyColorManaAbility();
ability.addCost(new RemoveCountersSourceCost(CounterType.CHARGE.createInstance(1)));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/t/TerashisCry.java b/Mage.Sets/src/mage/cards/t/TerashisCry.java
index e2083750435..09777538132 100644
--- a/Mage.Sets/src/mage/cards/t/TerashisCry.java
+++ b/Mage.Sets/src/mage/cards/t/TerashisCry.java
@@ -36,6 +36,7 @@ import mage.constants.CardType;
import mage.constants.SubType;
import mage.target.Target;
import mage.target.common.TargetCreaturePermanent;
+import static mage.filter.StaticFilters.FILTER_PERMANENT_CREATURES;
import java.util.UUID;
@@ -51,8 +52,7 @@ public class TerashisCry extends CardImpl {
// Tap up to three target creatures.
- Target target = new TargetCreaturePermanent(0, 3);
- target.setTargetName("up to three");
+ Target target = new TargetCreaturePermanent(0, 3, FILTER_PERMANENT_CREATURES, false);
this.getSpellAbility().addEffect(new TapTargetEffect());
this.getSpellAbility().addTarget(target);
}
diff --git a/Mage.Sets/src/mage/cards/t/Terrarion.java b/Mage.Sets/src/mage/cards/t/Terrarion.java
index 4b6e3f6172a..71d429cdcb2 100644
--- a/Mage.Sets/src/mage/cards/t/Terrarion.java
+++ b/Mage.Sets/src/mage/cards/t/Terrarion.java
@@ -53,7 +53,7 @@ public class Terrarion extends CardImpl {
// Terrarion enters the battlefield tapped.
this.addAbility(new EntersBattlefieldTappedAbility());
- // {2}, {T}, Sacrifice Terrarion: Add two mana in any combination of colors to your mana pool.
+ // {2}, {T}, Sacrifice Terrarion: Add two mana in any combination of colors.
Ability ability = new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaInAnyCombinationEffect(2), new GenericManaCost(2));
ability.addCost(new TapSourceCost());
ability.addCost(new SacrificeSourceCost());
diff --git a/Mage.Sets/src/mage/cards/t/TezzeretTheSchemer.java b/Mage.Sets/src/mage/cards/t/TezzeretTheSchemer.java
index 9f00da53f1d..8fd3ceaf3ee 100644
--- a/Mage.Sets/src/mage/cards/t/TezzeretTheSchemer.java
+++ b/Mage.Sets/src/mage/cards/t/TezzeretTheSchemer.java
@@ -61,7 +61,7 @@ public class TezzeretTheSchemer extends CardImpl {
//Starting Loyalty - 5
this.addAbility(new PlanswalkerEntersWithLoyalityCountersAbility(5));
- // +1: Create a colorless artifact token named Etherium Cell which has "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."
+ // +1: Create a colorless artifact token named Etherium Cell which has "{T}, Sacrifice this artifact: Add one mana of any color."
this.addAbility(new LoyaltyAbility(new CreateTokenEffect(new EtheriumCellToken()), 1));
// -2: Target creature gets +X/-X until end of turn, where X is the number of artifacts you control.
diff --git a/Mage.Sets/src/mage/cards/t/ThespiansStage.java b/Mage.Sets/src/mage/cards/t/ThespiansStage.java
index 7624d965c55..9c9e161299d 100644
--- a/Mage.Sets/src/mage/cards/t/ThespiansStage.java
+++ b/Mage.Sets/src/mage/cards/t/ThespiansStage.java
@@ -53,7 +53,7 @@ public class ThespiansStage extends CardImpl {
public ThespiansStage(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.LAND},"");
- // {T}: Add 1 to your mana pool.
+ // {T}: Add 1.
this.addAbility(new ColorlessManaAbility());
// 2, {T}: Thespian's Stage becomes a copy of target land and gains this ability.
diff --git a/Mage.Sets/src/mage/cards/t/ThranQuarry.java b/Mage.Sets/src/mage/cards/t/ThranQuarry.java
index 40a86add4c4..1d5bc564494 100644
--- a/Mage.Sets/src/mage/cards/t/ThranQuarry.java
+++ b/Mage.Sets/src/mage/cards/t/ThranQuarry.java
@@ -54,7 +54,7 @@ public class ThranQuarry extends CardImpl {
this.addAbility(new ConditionalTriggeredAbility(triggered, new CreatureCountCondition(0, TargetController.YOU),
"At the beginning of the end step, if you control no creatures, sacrifice {this}."));
- // {tap}: Add one mana of any color to your mana pool.
+ // {tap}: Add one mana of any color.
this.addAbility(new AnyColorManaAbility());
}
diff --git a/Mage.Sets/src/mage/cards/t/TimberlandRuins.java b/Mage.Sets/src/mage/cards/t/TimberlandRuins.java
index 63237940ac9..569bbd66706 100644
--- a/Mage.Sets/src/mage/cards/t/TimberlandRuins.java
+++ b/Mage.Sets/src/mage/cards/t/TimberlandRuins.java
@@ -50,7 +50,7 @@ public class TimberlandRuins extends CardImpl {
this.addAbility(new EntersBattlefieldTappedAbility());
// {tap}: Add {G}.
this.addAbility(new GreenManaAbility());
- // {tap}, Sacrifice Timberland Ruins: Add one mana of any color to your mana pool.
+ // {tap}, Sacrifice Timberland Ruins: Add one mana of any color.
Ability ability = new AnyColorManaAbility();
ability.addCost(new SacrificeSourceCost());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/t/TombOfTheDuskRose.java b/Mage.Sets/src/mage/cards/t/TombOfTheDuskRose.java
index ea4ca583c85..500df591f0d 100644
--- a/Mage.Sets/src/mage/cards/t/TombOfTheDuskRose.java
+++ b/Mage.Sets/src/mage/cards/t/TombOfTheDuskRose.java
@@ -68,7 +68,7 @@ public class TombOfTheDuskRose extends CardImpl {
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD,
new InfoEffect("(Transforms from Profane Procession.)")).setRuleAtTheTop(true));
- // {T}: Add one mana of any color to your mana pool.
+ // {T}: Add one mana of any color.
this.addAbility(new AnyColorManaAbility());
// {2}{W}{B},{T} : Put a creature card exiled with this permanent onto the battlefield under your control.
diff --git a/Mage.Sets/src/mage/cards/t/TombOfTheSpiritDragon.java b/Mage.Sets/src/mage/cards/t/TombOfTheSpiritDragon.java
index 50dddd30dc7..62d2150327b 100644
--- a/Mage.Sets/src/mage/cards/t/TombOfTheSpiritDragon.java
+++ b/Mage.Sets/src/mage/cards/t/TombOfTheSpiritDragon.java
@@ -57,7 +57,7 @@ public class TombOfTheSpiritDragon extends CardImpl {
public TombOfTheSpiritDragon(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.LAND},"");
- // T: Add 1 to your mana pool
+ // T: Add 1
this.addAbility(new ColorlessManaAbility());
// 2, T: You gain 1 life for each colorless creature you control
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainLifeEffect(new PermanentsOnBattlefieldCount(filter)), new GenericManaCost(2));
diff --git a/Mage.Sets/src/mage/cards/t/TrainedPronghorn.java b/Mage.Sets/src/mage/cards/t/TrainedPronghorn.java
new file mode 100644
index 00000000000..319e4103fea
--- /dev/null
+++ b/Mage.Sets/src/mage/cards/t/TrainedPronghorn.java
@@ -0,0 +1,84 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.cards.t;
+
+import java.util.UUID;
+import mage.MageInt;
+import mage.abilities.Ability;
+import mage.abilities.abilityword.GrandeurAbility;
+import mage.abilities.common.SimpleActivatedAbility;
+import mage.abilities.costs.common.DiscardCardCost;
+import mage.abilities.costs.common.TapSourceCost;
+import mage.abilities.effects.ContinuousEffect;
+import mage.abilities.effects.ContinuousRuleModifyingEffectImpl;
+import mage.abilities.effects.OneShotEffect;
+import mage.abilities.effects.common.PreventAllDamageToSourceEffect;
+import mage.abilities.effects.common.PreventDamageToTargetEffect;
+import mage.abilities.effects.common.combat.CantAttackAnyPlayerAllEffect;
+import mage.cards.CardImpl;
+import mage.cards.CardSetInfo;
+import mage.constants.*;
+import mage.filter.common.FilterCreaturePermanent;
+import mage.filter.predicate.permanent.ControllerIdPredicate;
+import mage.game.Game;
+import mage.game.events.GameEvent;
+import mage.game.events.GameEvent.EventType;
+import mage.players.Player;
+import mage.target.TargetPlayer;
+import mage.target.common.TargetCreaturePermanent;
+
+/**
+ *
+ * @author tcontis
+ */
+public class TrainedPronghorn extends CardImpl {
+
+ public TrainedPronghorn(UUID ownerId, CardSetInfo setInfo) {
+ super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{W}");
+ this.subtype.add(SubType.ANTELOPE);
+
+ this.power = new MageInt(1);
+ this.toughness = new MageInt(1);
+ this.toughness = new MageInt(1);
+
+ //Discard a card: Prevent all damage that would be dealt to Trained Pronghorn this turn
+ this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new PreventAllDamageToSourceEffect(Duration.EndOfTurn), new DiscardCardCost()));
+
+ }
+
+ public TrainedPronghorn(final TrainedPronghorn card) {
+ super(card);
+ }
+
+ @Override
+ public TrainedPronghorn copy() {
+ return new TrainedPronghorn(this);
+ }
+}
+
+
diff --git a/Mage.Sets/src/mage/cards/t/TransguildPromenade.java b/Mage.Sets/src/mage/cards/t/TransguildPromenade.java
index dcf133631be..5a90b22ee87 100644
--- a/Mage.Sets/src/mage/cards/t/TransguildPromenade.java
+++ b/Mage.Sets/src/mage/cards/t/TransguildPromenade.java
@@ -49,7 +49,7 @@ public class TransguildPromenade extends CardImpl {
this.addAbility(new EntersBattlefieldTappedAbility());
// When Transguild Promenade enters the battlefield, sacrifice it unless you pay {1}.
this.addAbility(new EntersBattlefieldTriggeredAbility(new SacrificeSourceUnlessPaysEffect(new GenericManaCost(1))));
- // {T}: Add one mana of any color to your mana pool.
+ // {T}: Add one mana of any color.
this.addAbility(new AnyColorManaAbility());
}
diff --git a/Mage.Sets/src/mage/cards/t/TreasureMap.java b/Mage.Sets/src/mage/cards/t/TreasureMap.java
index 0e3aa7cf6a9..9534b718a4b 100644
--- a/Mage.Sets/src/mage/cards/t/TreasureMap.java
+++ b/Mage.Sets/src/mage/cards/t/TreasureMap.java
@@ -59,7 +59,7 @@ public class TreasureMap extends CardImpl {
this.transformable = true;
this.secondSideCardClazz = TreasureCove.class;
- // {1}, {T}: Scry 1. Put a landmark counter on Treasure Map. Then if there are three or more landmark counters on it, remove those counters, transform Treasure Map, and create three colorless Treasure artifact tokens with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."
+ // {1}, {T}: Scry 1. Put a landmark counter on Treasure Map. Then if there are three or more landmark counters on it, remove those counters, transform Treasure Map, and create three colorless Treasure artifact tokens with "{T}, Sacrifice this artifact: Add one mana of any color."
this.addAbility(new TransformAbility());
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new TreasureMapEffect(), new ManaCostsImpl("{1}"));
ability.addCost(new TapSourceCost());
@@ -83,7 +83,7 @@ class TreasureMapEffect extends OneShotEffect {
this.staticText = "Scry 1. Put a landmark counter on {this}. "
+ "Then if there are three or more landmark counters on it, "
+ "remove those counters, transform {this}, and create "
- + "three colorless Treasure artifact tokens with \"{T}, Sacrifice this artifact: Add one mana of any color to your mana pool.\"";
+ + "three colorless Treasure artifact tokens with \"{T}, Sacrifice this artifact: Add one mana of any color.\"";
}
TreasureMapEffect(final TreasureMapEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/t/TroveOfTemptation.java b/Mage.Sets/src/mage/cards/t/TroveOfTemptation.java
index 70ad58d291f..ebc331a7192 100644
--- a/Mage.Sets/src/mage/cards/t/TroveOfTemptation.java
+++ b/Mage.Sets/src/mage/cards/t/TroveOfTemptation.java
@@ -55,7 +55,7 @@ public class TroveOfTemptation extends CardImpl {
// Each opponent must attack you or a planeswalker you control with at least one creature each combat if able.
addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new TroveOfTemptationForceAttackEffect(Duration.WhileOnBattlefield)));
- // At the beginning of your end step, create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color to your mana pool.”
+ // At the beginning of your end step, create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color.”
addAbility(new BeginningOfYourEndStepTriggeredAbility(new CreateTokenEffect(new TreasureToken()), false));
}
diff --git a/Mage.Sets/src/mage/cards/u/UnbridledGrowth.java b/Mage.Sets/src/mage/cards/u/UnbridledGrowth.java
index 989d0cb9c94..42802f525a2 100644
--- a/Mage.Sets/src/mage/cards/u/UnbridledGrowth.java
+++ b/Mage.Sets/src/mage/cards/u/UnbridledGrowth.java
@@ -67,10 +67,10 @@ public class UnbridledGrowth extends CardImpl {
Ability ability = new EnchantAbility(auraTarget.getTargetName());
this.addAbility(ability);
- // Enchanted land has "{T}: Add one mana of any color to your mana pool."
+ // Enchanted land has "{T}: Add one mana of any color."
Ability gainedAbility = new AnyColorManaAbility(new TapSourceCost());
Effect effect = new GainAbilityAttachedEffect(gainedAbility, AttachmentType.AURA);
- effect.setText("Enchanted land has \"{T}: Add one mana of any color to your mana pool.\"");
+ effect.setText("Enchanted land has \"{T}: Add one mana of any color.\"");
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
// Sacrifice Unbridled Growth: Draw a card.
diff --git a/Mage.Sets/src/mage/cards/u/UnclaimedTerritory.java b/Mage.Sets/src/mage/cards/u/UnclaimedTerritory.java
index 7365b57cd13..ca1a677660e 100644
--- a/Mage.Sets/src/mage/cards/u/UnclaimedTerritory.java
+++ b/Mage.Sets/src/mage/cards/u/UnclaimedTerritory.java
@@ -63,7 +63,7 @@ public class UnclaimedTerritory extends CardImpl {
// {T}: Add {C}.
this.addAbility(new ColorlessManaAbility());
- // {T}: Add one mana of any color to your mana pool. Spend this mana only to cast a creature spell of the chosen type.
+ // {T}: Add one mana of any color. Spend this mana only to cast a creature spell of the chosen type.
this.addAbility(new ConditionalAnyColorManaAbility(new TapSourceCost(), 1, new UnclaimedTerritoryManaBuilder(), true));
}
diff --git a/Mage.Sets/src/mage/cards/u/UndiscoveredParadise.java b/Mage.Sets/src/mage/cards/u/UndiscoveredParadise.java
index 027b158b749..341a45467f1 100644
--- a/Mage.Sets/src/mage/cards/u/UndiscoveredParadise.java
+++ b/Mage.Sets/src/mage/cards/u/UndiscoveredParadise.java
@@ -52,7 +52,7 @@ public class UndiscoveredParadise extends CardImpl {
public UndiscoveredParadise(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
- // {T}: Add one mana of any color to your mana pool. During your next untap step, as you untap your permanents, return Undiscovered Paradise to its owner's hand.
+ // {T}: Add one mana of any color. During your next untap step, as you untap your permanents, return Undiscovered Paradise to its owner's hand.
Ability ability = new AnyColorManaAbility();
ability.addEffect(new UndiscoveredParadiseEffect());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/u/UnknownShores.java b/Mage.Sets/src/mage/cards/u/UnknownShores.java
index d923a5038d6..d69946c117f 100644
--- a/Mage.Sets/src/mage/cards/u/UnknownShores.java
+++ b/Mage.Sets/src/mage/cards/u/UnknownShores.java
@@ -48,7 +48,7 @@ public class UnknownShores extends CardImpl {
// {T}: Add {C}.
this.addAbility(new ColorlessManaAbility());
- // {1}, {T}: Add one mana of any color to your mana pool.
+ // {1}, {T}: Add one mana of any color.
Ability ability = new AnyColorManaAbility(new GenericManaCost(1));
ability.addCost(new TapSourceCost());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/u/UrzasRage.java b/Mage.Sets/src/mage/cards/u/UrzasRage.java
index 911b5d236e5..0cf2a8ced4a 100644
--- a/Mage.Sets/src/mage/cards/u/UrzasRage.java
+++ b/Mage.Sets/src/mage/cards/u/UrzasRage.java
@@ -64,7 +64,7 @@ public class UrzasRage extends CardImpl {
// Urza's Rage deals 3 damage to any target. If Urza's Rage was kicked, instead it deals 10 damage to that creature or player and the damage can't be prevented.
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(new DamageTargetEffect(10, false),
new DamageTargetEffect(3), KickedCondition.instance,
- "{this} deals 3 damage to any target. If {this} was kicked, instead it deals 10 damage to that permanent or player and the damage can't be prevented."));
+ "{this} deals 3 damage to any target. if this spell was kicked, instead it deals 10 damage to that permanent or player and the damage can't be prevented."));
this.getSpellAbility().addTarget(new TargetAnyTarget());
}
diff --git a/Mage.Sets/src/mage/cards/u/UtopiaMycon.java b/Mage.Sets/src/mage/cards/u/UtopiaMycon.java
index 80b84f33ef8..b600c3dbe57 100644
--- a/Mage.Sets/src/mage/cards/u/UtopiaMycon.java
+++ b/Mage.Sets/src/mage/cards/u/UtopiaMycon.java
@@ -74,7 +74,7 @@ public class UtopiaMycon extends CardImpl {
// Remove three spore counters from Utopia Mycon: Create a 1/1 green Saproling creature token.
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new SaprolingToken()), new RemoveCountersSourceCost(CounterType.SPORE.createInstance(3))));
- // Sacrifice a Saproling: Add one mana of any color to your mana pool.
+ // Sacrifice a Saproling: Add one mana of any color.
Ability ability = new AnyColorManaAbility(new SacrificeTargetCost(new TargetControlledCreaturePermanent(1,1, filter, false)));
ability.addTarget(new TargetPermanent(filter));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/u/UtopiaTree.java b/Mage.Sets/src/mage/cards/u/UtopiaTree.java
index ba19ade67f2..c422948ef05 100644
--- a/Mage.Sets/src/mage/cards/u/UtopiaTree.java
+++ b/Mage.Sets/src/mage/cards/u/UtopiaTree.java
@@ -48,7 +48,7 @@ public class UtopiaTree extends CardImpl {
this.power = new MageInt(0);
this.toughness = new MageInt(2);
- // {tap}: Add one mana of any color to your mana pool.
+ // {tap}: Add one mana of any color.
this.addAbility(new AnyColorManaAbility());
}
diff --git a/Mage.Sets/src/mage/cards/u/UtopiaVow.java b/Mage.Sets/src/mage/cards/u/UtopiaVow.java
index 1187bbc9cf2..ff90e496769 100644
--- a/Mage.Sets/src/mage/cards/u/UtopiaVow.java
+++ b/Mage.Sets/src/mage/cards/u/UtopiaVow.java
@@ -67,9 +67,9 @@ public class UtopiaVow extends CardImpl {
// Enchanted creature can't attack or block.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantAttackBlockAttachedEffect(AttachmentType.AURA)));
- // Enchanted creature has "{tap}: Add one mana of any color to your mana pool."
+ // Enchanted creature has "{tap}: Add one mana of any color."
Effect effect = new GainAbilityAttachedEffect(new AnyColorManaAbility(), AttachmentType.AURA, Duration.WhileOnBattlefield);
- effect.setText("Enchanted creature has \"{T}: Add one mana of any color to your mana pool.\"");
+ effect.setText("Enchanted creature has \"{T}: Add one mana of any color.\"");
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
}
diff --git a/Mage.Sets/src/mage/cards/v/VampiresBite.java b/Mage.Sets/src/mage/cards/v/VampiresBite.java
index a1193120bd3..8e7c0eb1641 100644
--- a/Mage.Sets/src/mage/cards/v/VampiresBite.java
+++ b/Mage.Sets/src/mage/cards/v/VampiresBite.java
@@ -59,7 +59,7 @@ public class VampiresBite extends CardImpl {
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
this.getSpellAbility().addEffect(new BoostTargetEffect(3, 0, Duration.EndOfTurn));
ContinuousEffect effect = new GainAbilityTargetEffect(LifelinkAbility.getInstance(), Duration.EndOfTurn);
- this.getSpellAbility().addEffect(new ConditionalContinuousEffect(effect, new LockedInCondition(KickedCondition.instance), "If {this} was kicked, that creature gains lifelink until end of turn"));
+ this.getSpellAbility().addEffect(new ConditionalContinuousEffect(effect, new LockedInCondition(KickedCondition.instance), "if this spell was kicked, that creature gains lifelink until end of turn"));
}
public VampiresBite(final VampiresBite card) {
diff --git a/Mage.Sets/src/mage/cards/v/Vampirism.java b/Mage.Sets/src/mage/cards/v/Vampirism.java
new file mode 100644
index 00000000000..6bf8fc98ce2
--- /dev/null
+++ b/Mage.Sets/src/mage/cards/v/Vampirism.java
@@ -0,0 +1,123 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.cards.v;
+
+import mage.abilities.Ability;
+import mage.abilities.common.EntersBattlefieldTriggeredAbility;
+import mage.abilities.common.SimpleStaticAbility;
+import mage.abilities.common.delayed.AtTheBeginOfNextUpkeepDelayedTriggeredAbility;
+import mage.abilities.effects.ContinuousEffectImpl;
+import mage.abilities.effects.common.AttachEffect;
+import mage.abilities.effects.common.CreateDelayedTriggeredAbilityEffect;
+import mage.abilities.effects.common.DrawCardSourceControllerEffect;
+import mage.abilities.effects.common.continuous.BoostControlledEffect;
+import mage.abilities.keyword.EnchantAbility;
+import mage.cards.CardImpl;
+import mage.cards.CardSetInfo;
+import mage.constants.*;
+import mage.filter.common.FilterControlledCreaturePermanent;
+import mage.game.Game;
+import mage.game.permanent.Permanent;
+import mage.target.TargetPermanent;
+import mage.target.common.TargetCreaturePermanent;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author tcontis
+ */
+public class Vampirism extends CardImpl {
+
+ public Vampirism(UUID ownerId, CardSetInfo setInfo) {
+ super(ownerId,setInfo,new CardType[]{CardType.ENCHANTMENT},"{1}{B}");
+ this.subtype.add(SubType.AURA);
+
+ // Enchant creature
+ TargetPermanent auraTarget = new TargetCreaturePermanent();
+ this.getSpellAbility().addTarget(auraTarget);
+ this.getSpellAbility().addEffect(new AttachEffect(Outcome.BoostCreature));
+ Ability ability = new EnchantAbility(auraTarget.getTargetName());
+ this.addAbility(ability);
+
+ // When Vampirism enters the battlefield, draw a card at the beginning of the next turn's upkeep.
+ this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateDelayedTriggeredAbilityEffect(
+ new AtTheBeginOfNextUpkeepDelayedTriggeredAbility(new DrawCardSourceControllerEffect(1), Duration.OneUse)), false));
+
+ // Enchanted creature gets +1/+1 for each other creature you control.
+ this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new VampirismBoostEnchantedEffect()));
+
+ // Other creatures you control get -1/-1.
+ this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostControlledEffect(-1, -1, Duration.WhileOnBattlefield, true)));
+
+ }
+
+ public Vampirism(final Vampirism card) {
+ super(card);
+ }
+
+ @Override
+ public Vampirism copy() {
+ return new Vampirism(this);
+ }
+}
+
+class VampirismBoostEnchantedEffect extends ContinuousEffectImpl {
+
+ public VampirismBoostEnchantedEffect() {
+ super(Duration.WhileOnBattlefield, Layer.PTChangingEffects_7, SubLayer.ModifyPT_7c, Outcome.BoostCreature);
+ staticText = "Enchanted creature gets +1/+1 for each other creature you control";
+ }
+
+ public VampirismBoostEnchantedEffect(final VampirismBoostEnchantedEffect effect) {
+ super(effect);
+ }
+
+ @Override
+ public VampirismBoostEnchantedEffect copy() {
+ return new VampirismBoostEnchantedEffect(this);
+ }
+
+ @Override
+ public boolean apply(Game game, Ability source) {
+ FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent();
+ int count = game.getBattlefield().count(filter, source.getSourceId(), source.getControllerId(), game) - 1;
+ if (count > 0) {
+ Permanent enchantment = game.getPermanent(source.getSourceId());
+ if (enchantment != null && enchantment.getAttachedTo() != null) {
+ Permanent creature = game.getPermanent(enchantment.getAttachedTo());
+ if (creature != null) {
+ creature.addPower(count);
+ creature.addToughness(count);
+ return true;
+ }
+ }
+ }
+ return false;
+ }
+}
diff --git a/Mage.Sets/src/mage/cards/v/VaultOfCatlacan.java b/Mage.Sets/src/mage/cards/v/VaultOfCatlacan.java
index 974d0c11cbe..d20f73742ec 100644
--- a/Mage.Sets/src/mage/cards/v/VaultOfCatlacan.java
+++ b/Mage.Sets/src/mage/cards/v/VaultOfCatlacan.java
@@ -61,7 +61,7 @@ public class VaultOfCatlacan extends CardImpl {
ability.setRuleAtTheTop(true);
this.addAbility(ability);
- // {T}: Add one mana of any color to your mana pool.
+ // {T}: Add one mana of any color.
this.addAbility(new AnyColorManaAbility());
// {T}: Add {U} for each artifact you control.
diff --git a/Mage.Sets/src/mage/cards/v/VedalkenEngineer.java b/Mage.Sets/src/mage/cards/v/VedalkenEngineer.java
index 34c50f8b791..d4e99bab291 100644
--- a/Mage.Sets/src/mage/cards/v/VedalkenEngineer.java
+++ b/Mage.Sets/src/mage/cards/v/VedalkenEngineer.java
@@ -63,7 +63,7 @@ public class VedalkenEngineer extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(1);
- // {tap}: Add two mana of any one color to your mana pool. Spend this mana only to cast artifact spells or activate abilities of artifacts.
+ // {tap}: Add two mana of any one color. Spend this mana only to cast artifact spells or activate abilities of artifacts.
this.addAbility(new VedalkenEngineerAbility(new TapSourceCost(), 2, new VedalkenEngineerManaBuilder()));
}
@@ -136,7 +136,7 @@ class VedalkenEngineerEffect extends ManaEffect {
super();
this.amount = amount;
this.manaBuilder = manaBuilder;
- staticText = "Add " + amount + " mana of any one color to your mana pool. " + manaBuilder.getRule();
+ staticText = "Add " + amount + " mana of any one color. " + manaBuilder.getRule();
}
public VedalkenEngineerEffect(final VedalkenEngineerEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/v/VerdantEidolon.java b/Mage.Sets/src/mage/cards/v/VerdantEidolon.java
index 179af9aa41c..80768cf9522 100644
--- a/Mage.Sets/src/mage/cards/v/VerdantEidolon.java
+++ b/Mage.Sets/src/mage/cards/v/VerdantEidolon.java
@@ -62,7 +62,7 @@ public class VerdantEidolon extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(2);
- // {G}, Sacrifice Verdant Eidolon: Add three mana of any one color to your mana pool.
+ // {G}, Sacrifice Verdant Eidolon: Add three mana of any one color.
Ability ability = new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaOfAnyColorEffect(3), new ManaCostsImpl("{G}"));
ability.addCost(new SacrificeSourceCost());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/v/VesperGhoul.java b/Mage.Sets/src/mage/cards/v/VesperGhoul.java
index 08174f2d520..cf62024ae64 100644
--- a/Mage.Sets/src/mage/cards/v/VesperGhoul.java
+++ b/Mage.Sets/src/mage/cards/v/VesperGhoul.java
@@ -53,7 +53,7 @@ public class VesperGhoul extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(1);
- // {tap}, Pay 1 life: Add one mana of any color to your mana pool.
+ // {tap}, Pay 1 life: Add one mana of any color.
Ability ability = new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaOfAnyColorEffect(), new TapSourceCost());
ability.addCost(new PayLifeCost(1));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/v/VesselOfEndlessRest.java b/Mage.Sets/src/mage/cards/v/VesselOfEndlessRest.java
index 1bccc96138e..8d89240c0ec 100644
--- a/Mage.Sets/src/mage/cards/v/VesselOfEndlessRest.java
+++ b/Mage.Sets/src/mage/cards/v/VesselOfEndlessRest.java
@@ -50,7 +50,7 @@ public class VesselOfEndlessRest extends CardImpl {
ability.addTarget(new TargetCardInGraveyard());
this.addAbility(ability);
- // {tap}: Add one mana of any color to your mana pool.
+ // {tap}: Add one mana of any color.
this.addAbility(new AnyColorManaAbility());
}
diff --git a/Mage.Sets/src/mage/cards/v/VinesOfVastwood.java b/Mage.Sets/src/mage/cards/v/VinesOfVastwood.java
index 54a0e68f50d..2f69b84e415 100644
--- a/Mage.Sets/src/mage/cards/v/VinesOfVastwood.java
+++ b/Mage.Sets/src/mage/cards/v/VinesOfVastwood.java
@@ -50,7 +50,7 @@ public class VinesOfVastwood extends CardImpl {
private static final FilterObject filter = new FilterStackObject("spells or abilities your opponents control");
- private static final String staticText = "If {this} was kicked, that creature gets +4/+4 until end of turn";
+ private static final String staticText = "if this spell was kicked, that creature gets +4/+4 until end of turn";
public VinesOfVastwood(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.INSTANT},"{G}");
diff --git a/Mage.Sets/src/mage/cards/v/ViridianJoiner.java b/Mage.Sets/src/mage/cards/v/ViridianJoiner.java
index 585d0c351e4..ece627c45dd 100644
--- a/Mage.Sets/src/mage/cards/v/ViridianJoiner.java
+++ b/Mage.Sets/src/mage/cards/v/ViridianJoiner.java
@@ -51,7 +51,7 @@ public class ViridianJoiner extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(2);
- // {tap}: Add to your mana pool an amount of {G} equal to Viridian Joiner's power.
+ // {tap}: Add an amount of {G} equal to Viridian Joiner's power.
this.addAbility(new DynamicManaAbility(Mana.GreenMana(1), new SourcePermanentPowerCount()));
}
diff --git a/Mage.Sets/src/mage/cards/v/VividCrag.java b/Mage.Sets/src/mage/cards/v/VividCrag.java
index 0c87fe9b100..37b3075e221 100644
--- a/Mage.Sets/src/mage/cards/v/VividCrag.java
+++ b/Mage.Sets/src/mage/cards/v/VividCrag.java
@@ -54,7 +54,7 @@ public class VividCrag extends CardImpl {
this.addAbility(ability);
// {tap}: Add {R}.
this.addAbility(new RedManaAbility());
- // {tap}, Remove a charge counter from Vivid Crag: Add one mana of any color to your mana pool.
+ // {tap}, Remove a charge counter from Vivid Crag: Add one mana of any color.
ability = new AnyColorManaAbility();
ability.addCost(new RemoveCountersSourceCost(CounterType.CHARGE.createInstance(1)));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/v/VividCreek.java b/Mage.Sets/src/mage/cards/v/VividCreek.java
index 37a3835ceb8..f39250bd372 100644
--- a/Mage.Sets/src/mage/cards/v/VividCreek.java
+++ b/Mage.Sets/src/mage/cards/v/VividCreek.java
@@ -54,7 +54,7 @@ public class VividCreek extends CardImpl {
this.addAbility(ability);
// {tap}: Add {U}.
this.addAbility(new BlueManaAbility());
- // {tap}, Remove a charge counter from Vivid Creek: Add one mana of any color to your mana pool.
+ // {tap}, Remove a charge counter from Vivid Creek: Add one mana of any color.
ability = new AnyColorManaAbility();
ability.addCost(new RemoveCountersSourceCost(CounterType.CHARGE.createInstance(1)));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/v/VividGrove.java b/Mage.Sets/src/mage/cards/v/VividGrove.java
index f9e1b2e3537..85fde88816f 100644
--- a/Mage.Sets/src/mage/cards/v/VividGrove.java
+++ b/Mage.Sets/src/mage/cards/v/VividGrove.java
@@ -54,7 +54,7 @@ public class VividGrove extends CardImpl {
this.addAbility(ability);
// {tap}: Add {G}.
this.addAbility(new GreenManaAbility());
- // {tap}, Remove a charge counter from Vivid Grove: Add one mana of any color to your mana pool.
+ // {tap}, Remove a charge counter from Vivid Grove: Add one mana of any color.
ability = new AnyColorManaAbility();
ability.addCost(new RemoveCountersSourceCost(CounterType.CHARGE.createInstance(1)));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/v/VividMarsh.java b/Mage.Sets/src/mage/cards/v/VividMarsh.java
index 7b0e2331f40..98adf0d81df 100644
--- a/Mage.Sets/src/mage/cards/v/VividMarsh.java
+++ b/Mage.Sets/src/mage/cards/v/VividMarsh.java
@@ -55,7 +55,7 @@ public class VividMarsh extends CardImpl {
this.addAbility(ability);
// {tap}: Add {B}.
this.addAbility(new BlackManaAbility());
- // {tap}, Remove a charge counter from Vivid Marsh: Add one mana of any color to your mana pool.
+ // {tap}, Remove a charge counter from Vivid Marsh: Add one mana of any color.
ability = new AnyColorManaAbility();
ability.addCost(new RemoveCountersSourceCost(CounterType.CHARGE.createInstance(1)));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/v/VividMeadow.java b/Mage.Sets/src/mage/cards/v/VividMeadow.java
index b53844c82d4..1bb462129ed 100644
--- a/Mage.Sets/src/mage/cards/v/VividMeadow.java
+++ b/Mage.Sets/src/mage/cards/v/VividMeadow.java
@@ -54,7 +54,7 @@ public class VividMeadow extends CardImpl {
this.addAbility(ability);
// {tap}: Add {W}.
this.addAbility(new WhiteManaAbility());
- // {tap}, Remove a charge counter from Vivid Meadow: Add one mana of any color to your mana pool.
+ // {tap}, Remove a charge counter from Vivid Meadow: Add one mana of any color.
ability = new AnyColorManaAbility();
ability.addCost(new RemoveCountersSourceCost(CounterType.CHARGE.createInstance(1)));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/v/VorinclexVoiceOfHunger.java b/Mage.Sets/src/mage/cards/v/VorinclexVoiceOfHunger.java
index c37641832fe..cb4be6ad30a 100644
--- a/Mage.Sets/src/mage/cards/v/VorinclexVoiceOfHunger.java
+++ b/Mage.Sets/src/mage/cards/v/VorinclexVoiceOfHunger.java
@@ -66,9 +66,9 @@ public class VorinclexVoiceOfHunger extends CardImpl {
// Trample
this.addAbility(TrampleAbility.getInstance());
- // Whenever you tap a land for mana, add one mana to your mana pool of any type that land produced.
+ // Whenever you tap a land for mana, add one mana of any type that land produced.
ManaEffect effect = new AddManaOfAnyTypeProducedEffect();
- effect.setText("add one mana to your mana pool of any type that land produced");
+ effect.setText("add one mana of any type that land produced");
this.addAbility(new TapForManaAllTriggeredManaAbility(
effect, new FilterControlledLandPermanent("you tap a land"),
SetTargetPointer.PERMANENT));
diff --git a/Mage.Sets/src/mage/cards/v/VraskaRelicSeeker.java b/Mage.Sets/src/mage/cards/v/VraskaRelicSeeker.java
index dabfc8e09ff..a69c46e28a0 100644
--- a/Mage.Sets/src/mage/cards/v/VraskaRelicSeeker.java
+++ b/Mage.Sets/src/mage/cards/v/VraskaRelicSeeker.java
@@ -65,7 +65,7 @@ public class VraskaRelicSeeker extends CardImpl {
//+2: Create a 2/2 black Pirate creature token with menace.
this.addAbility(new LoyaltyAbility(new CreateTokenEffect(new PirateToken()), 2));
- //-3: Destroy target artifact, creature, or enchantment. Create a colorless Treasure artifact token with "T, Sacrfice this artifact. Add one mana of any color to your mana pool."
+ //-3: Destroy target artifact, creature, or enchantment. Create a colorless Treasure artifact token with "T, Sacrfice this artifact. Add one mana of any color."
Ability ability = new LoyaltyAbility(new VraskaRelicSeekerDestroyEffect(), -3);
ability.addTarget(new TargetPermanent(StaticFilters.FILTER_PERMANENT_ARTIFACT_CREATURE_OR_ENCHANTMENT));
this.addAbility(ability);
@@ -90,7 +90,7 @@ class VraskaRelicSeekerDestroyEffect extends OneShotEffect {
VraskaRelicSeekerDestroyEffect() {
super(Outcome.Benefit);
- this.staticText = "Destroy target artifact, creature, or enchantment. Create a colorless Treasure artifact token with \"{T}, Sacrifice this artifact. Add one mana of any color to your mana pool.\"";
+ this.staticText = "Destroy target artifact, creature, or enchantment. Create a colorless Treasure artifact token with \"{T}, Sacrifice this artifact. Add one mana of any color.\"";
}
VraskaRelicSeekerDestroyEffect(final VraskaRelicSeekerDestroyEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/w/WantedScoundrels.java b/Mage.Sets/src/mage/cards/w/WantedScoundrels.java
index 4c73cb94aee..d46d6943c96 100644
--- a/Mage.Sets/src/mage/cards/w/WantedScoundrels.java
+++ b/Mage.Sets/src/mage/cards/w/WantedScoundrels.java
@@ -53,7 +53,7 @@ public class WantedScoundrels extends CardImpl {
this.power = new MageInt(4);
this.toughness = new MageInt(3);
- // When Wanted Scoundrels dies, target opponent creates two colorless Treasure artifact tokens with "T, Sacrifice this artifact: Add one mana of any color to your mana pool."
+ // When Wanted Scoundrels dies, target opponent creates two colorless Treasure artifact tokens with "T, Sacrifice this artifact: Add one mana of any color."
Ability ability = new DiesTriggeredAbility(new CreateTokenTargetEffect(new TreasureToken(), 2), false);
ability.addTarget(new TargetOpponent());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/w/WaterveilCavern.java b/Mage.Sets/src/mage/cards/w/WaterveilCavern.java
index 14e434f6c7e..049780b937a 100644
--- a/Mage.Sets/src/mage/cards/w/WaterveilCavern.java
+++ b/Mage.Sets/src/mage/cards/w/WaterveilCavern.java
@@ -46,10 +46,10 @@ public class WaterveilCavern extends CardImpl {
public WaterveilCavern(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.LAND},"");
- // Tap: Add 1 to your mana pool.
+ // Tap: Add 1.
this.addAbility(new ColorlessManaAbility());
- // Tap: Add Blue or Black to your mana pool. Waterveil Cavern doesn't untap during your next untap step.
+ // Tap: Add Blue or Black. Waterveil Cavern doesn't untap during your next untap step.
Ability blueManaAbility = new BlueManaAbility();
blueManaAbility.addEffect(new DontUntapInControllersNextUntapStepSourceEffect());
this.addAbility(blueManaAbility);
diff --git a/Mage.Sets/src/mage/cards/w/WeirdingWood.java b/Mage.Sets/src/mage/cards/w/WeirdingWood.java
index 6ae484043c5..a1c1725fc88 100644
--- a/Mage.Sets/src/mage/cards/w/WeirdingWood.java
+++ b/Mage.Sets/src/mage/cards/w/WeirdingWood.java
@@ -68,10 +68,10 @@ public class WeirdingWood extends CardImpl {
// When Weirding Wood enters the battlefield, investigate.
this.addAbility(new EntersBattlefieldTriggeredAbility(new InvestigateEffect()));
- // Enchanted land has "{T}: Add two mana of any one color to your mana pool."
+ // Enchanted land has "{T}: Add two mana of any one color."
Ability gainedAbility = new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaOfAnyColorEffect(2), new TapSourceCost());
Effect effect = new GainAbilityAttachedEffect(gainedAbility, AttachmentType.AURA);
- effect.setText("Enchanted land has \"{T}: Add two mana of any color to your mana pool.\"");
+ effect.setText("Enchanted land has \"{T}: Add two mana of any color.\"");
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
}
diff --git a/Mage.Sets/src/mage/cards/w/WildHolocron.java b/Mage.Sets/src/mage/cards/w/WildHolocron.java
index 7739d104a0e..3d0fa778f12 100644
--- a/Mage.Sets/src/mage/cards/w/WildHolocron.java
+++ b/Mage.Sets/src/mage/cards/w/WildHolocron.java
@@ -71,7 +71,7 @@ public class WildHolocron extends CardImpl {
ability.addCost(cost);
this.addAbility(ability);
- // {T}, Remove two charge counters from Wild Holocron: Add RG or GW to your mana pool.
+ // {T}, Remove two charge counters from Wild Holocron: Add RG or GW.
cost = new RemoveCountersSourceCost(CounterType.CHARGE.createInstance(2));
ability = new SimpleManaAbility(Zone.BATTLEFIELD, new Mana(1, 1, 0, 0, 0, 0, 0, 0), new TapSourceCost());
diff --git a/Mage.Sets/src/mage/cards/w/WilyGoblin.java b/Mage.Sets/src/mage/cards/w/WilyGoblin.java
index af39361b1c6..a7a264eaf2d 100644
--- a/Mage.Sets/src/mage/cards/w/WilyGoblin.java
+++ b/Mage.Sets/src/mage/cards/w/WilyGoblin.java
@@ -51,7 +51,7 @@ public class WilyGoblin extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(1);
- // When Wily Goblin enters the battlefield, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."
+ // When Wily Goblin enters the battlefield, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color."
this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new TreasureToken())));
}
diff --git a/Mage.Sets/src/mage/cards/w/WingedTempleOfOrazca.java b/Mage.Sets/src/mage/cards/w/WingedTempleOfOrazca.java
index f2f033f7384..c7b2224cfc0 100644
--- a/Mage.Sets/src/mage/cards/w/WingedTempleOfOrazca.java
+++ b/Mage.Sets/src/mage/cards/w/WingedTempleOfOrazca.java
@@ -70,7 +70,7 @@ public class WingedTempleOfOrazca extends CardImpl {
ability.setRuleAtTheTop(true);
this.addAbility(ability);
- // {T}: Add one mana of any color to your mana pool.
+ // {T}: Add one mana of any color.
this.addAbility(new AnyColorManaAbility());
// {1}{G}{U}, {T}: Target creature you control gains flying and gets +X/+X until end of turn, where X is its power.
diff --git a/Mage.Sets/src/mage/cards/w/WirewoodChanneler.java b/Mage.Sets/src/mage/cards/w/WirewoodChanneler.java
index fa970506fec..7d3c8791192 100644
--- a/Mage.Sets/src/mage/cards/w/WirewoodChanneler.java
+++ b/Mage.Sets/src/mage/cards/w/WirewoodChanneler.java
@@ -60,9 +60,9 @@ public class WirewoodChanneler extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(2);
- // {T}: Add X mana of any one color to your mana pool, where X is the number of Elves on the battlefield.
+ // {T}: Add X mana of any one color, where X is the number of Elves on the battlefield.
DynamicManaAbility ability = new DynamicManaAbility(new Mana(0,0,0,0,0,0,1, 0), new PermanentsOnBattlefieldCount(filter), new TapSourceCost(),
- "Add X mana of any one color to your mana pool, where X is the number of Elves on the battlefield", true);
+ "Add X mana of any one color, where X is the number of Elves on the battlefield", true);
this.addAbility(ability);
}
diff --git a/Mage.Sets/src/mage/cards/y/YavimayaCoast.java b/Mage.Sets/src/mage/cards/y/YavimayaCoast.java
index 45bbba57b6f..3ffcb3d12a6 100644
--- a/Mage.Sets/src/mage/cards/y/YavimayaCoast.java
+++ b/Mage.Sets/src/mage/cards/y/YavimayaCoast.java
@@ -48,10 +48,10 @@ public class YavimayaCoast extends CardImpl {
public YavimayaCoast(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.LAND},"");
- // Tap: Add 1 to your mana pool.
+ // Tap: Add 1.
this.addAbility(new ColorlessManaAbility());
- // Tap: Add Green or Blue to your mana pool. Yavimaya Coast deals 1 damage to you.
+ // Tap: Add Green or Blue. Yavimaya Coast deals 1 damage to you.
Ability greenManaAbility = new SimpleManaAbility(Zone.BATTLEFIELD, Mana.GreenMana(1), new TapSourceCost());
greenManaAbility.addEffect(new DamageControllerEffect(1));
this.addAbility(greenManaAbility);
diff --git a/Mage.Sets/src/mage/cards/y/YawgmothsVileOffering.java b/Mage.Sets/src/mage/cards/y/YawgmothsVileOffering.java
index 1c172cdd894..0aff3af8a64 100644
--- a/Mage.Sets/src/mage/cards/y/YawgmothsVileOffering.java
+++ b/Mage.Sets/src/mage/cards/y/YawgmothsVileOffering.java
@@ -25,7 +25,7 @@ import mage.target.common.TargetCreatureOrPlaneswalker;
*/
public class YawgmothsVileOffering extends CardImpl {
- private static final FilterPermanentCard cardFilter = new FilterPermanentCard();
+ private static final FilterPermanentCard cardFilter = new FilterPermanentCard("creature or planeswalker card");
static {
cardFilter.add(Predicates.or(
@@ -43,7 +43,7 @@ public class YawgmothsVileOffering extends CardImpl {
// Put up to one target creature or planeswalker from a graveyard onto the battlefield under your control.
// Destroy up to one target creature or planeswalker. Exile Yawgmoth’s Vile Offering.
- this.getSpellAbility().addEffect(new YawgmothsVireOfferingEffect());
+ this.getSpellAbility().addEffect(new YawgmothsVileOfferingEffect());
this.getSpellAbility().addTarget(new TargetCardInGraveyard(0, 1, cardFilter));
this.getSpellAbility().addTarget(new TargetCreatureOrPlaneswalker(0, 1, new FilterCreatureOrPlaneswalkerPermanent(), false));
this.getSpellAbility().addEffect(ExileSpellEffect.getInstance());
@@ -59,14 +59,14 @@ public class YawgmothsVileOffering extends CardImpl {
}
}
-class YawgmothsVireOfferingEffect extends OneShotEffect {
+class YawgmothsVileOfferingEffect extends OneShotEffect {
- public YawgmothsVireOfferingEffect() {
+ public YawgmothsVileOfferingEffect() {
super(Outcome.Benefit);
- this.staticText = "Put up to one target creature or planeswalker from a graveyard onto the battlefield under your control. Destroy up to one target creature or planeswalker";
+ this.staticText = "Put up to one target creature or planeswalker card from a graveyard onto the battlefield under your control. Destroy up to one target creature or planeswalker";
}
- public YawgmothsVireOfferingEffect(final YawgmothsVireOfferingEffect effect) {
+ public YawgmothsVileOfferingEffect(final YawgmothsVileOfferingEffect effect) {
super(effect);
}
@@ -93,7 +93,7 @@ class YawgmothsVireOfferingEffect extends OneShotEffect {
}
@Override
- public YawgmothsVireOfferingEffect copy() {
- return new YawgmothsVireOfferingEffect(this);
+ public YawgmothsVileOfferingEffect copy() {
+ return new YawgmothsVileOfferingEffect(this);
}
}
diff --git a/Mage.Sets/src/mage/cards/z/ZahidDjinnOfTheLamp.java b/Mage.Sets/src/mage/cards/z/ZahidDjinnOfTheLamp.java
index d8461ddc064..e9cbaabd814 100644
--- a/Mage.Sets/src/mage/cards/z/ZahidDjinnOfTheLamp.java
+++ b/Mage.Sets/src/mage/cards/z/ZahidDjinnOfTheLamp.java
@@ -1,81 +1,81 @@
-/*
- * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without modification, are
- * permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice, this list of
- * conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright notice, this list
- * of conditions and the following disclaimer in the documentation and/or other materials
- * provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
- * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
- * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
- * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
- * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
- * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * The views and conclusions contained in the software and documentation are those of the
- * authors and should not be interpreted as representing official policies, either expressed
- * or implied, of BetaSteward_at_googlemail.com.
- */
-package mage.cards.z;
-
-import java.util.UUID;
-import mage.MageInt;
-import mage.abilities.costs.AlternativeCostSourceAbility;
-import mage.abilities.costs.common.TapTargetCost;
-import mage.abilities.costs.mana.ManaCostsImpl;
-import mage.abilities.keyword.FlyingAbility;
-import mage.cards.CardImpl;
-import mage.cards.CardSetInfo;
-import mage.constants.CardType;
-import mage.constants.SubType;
-import mage.constants.SuperType;
-import mage.filter.common.FilterControlledArtifactPermanent;
-import mage.filter.predicate.Predicates;
-import mage.filter.predicate.permanent.TappedPredicate;
-import mage.target.common.TargetControlledPermanent;
-
-/**
- *
- * @author LevelX2
- */
-public class ZahidDjinnOfTheLamp extends CardImpl {
-
- public ZahidDjinnOfTheLamp(UUID ownerId, CardSetInfo setInfo) {
- super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{U}{U}");
-
- this.addSuperType(SuperType.LEGENDARY);
- this.subtype.add(SubType.DJINN);
- this.power = new MageInt(5);
- this.toughness = new MageInt(6);
-
- // You may pay {3}{U} and tap an untapped artifact you control rather than pay this spell's mana cost.
- AlternativeCostSourceAbility alternativeCostSourceAbility = new AlternativeCostSourceAbility(new ManaCostsImpl("{3}{U}"), null,
- "You may pay {3}{U} and tap an untapped artifact you control rather than pay this spell's mana cost.");
- FilterControlledArtifactPermanent filter = new FilterControlledArtifactPermanent("untapped artifact you control");
- filter.add(Predicates.not(new TappedPredicate()));
- alternativeCostSourceAbility.addCost(new TapTargetCost(new TargetControlledPermanent(filter)));
- this.addAbility(alternativeCostSourceAbility);
-
- // Flying
- this.addAbility(FlyingAbility.getInstance());
-
- }
-
- public ZahidDjinnOfTheLamp(final ZahidDjinnOfTheLamp card) {
- super(card);
- }
-
- @Override
- public ZahidDjinnOfTheLamp copy() {
- return new ZahidDjinnOfTheLamp(this);
- }
-}
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.cards.z;
+
+import java.util.UUID;
+import mage.MageInt;
+import mage.abilities.costs.AlternativeCostSourceAbility;
+import mage.abilities.costs.common.TapTargetCost;
+import mage.abilities.costs.mana.ManaCostsImpl;
+import mage.abilities.keyword.FlyingAbility;
+import mage.cards.CardImpl;
+import mage.cards.CardSetInfo;
+import mage.constants.CardType;
+import mage.constants.SubType;
+import mage.constants.SuperType;
+import mage.filter.common.FilterControlledArtifactPermanent;
+import mage.filter.predicate.Predicates;
+import mage.filter.predicate.permanent.TappedPredicate;
+import mage.target.common.TargetControlledPermanent;
+
+/**
+ *
+ * @author LevelX2
+ */
+public class ZahidDjinnOfTheLamp extends CardImpl {
+
+ public ZahidDjinnOfTheLamp(UUID ownerId, CardSetInfo setInfo) {
+ super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{U}{U}");
+
+ this.addSuperType(SuperType.LEGENDARY);
+ this.subtype.add(SubType.DJINN);
+ this.power = new MageInt(5);
+ this.toughness = new MageInt(6);
+
+ // You may pay {3}{U} and tap an untapped artifact you control rather than pay this spell's mana cost.
+ AlternativeCostSourceAbility alternativeCostSourceAbility = new AlternativeCostSourceAbility(new ManaCostsImpl("{3}{U}"), null,
+ "You may pay {3}{U} and tap an untapped artifact you control rather than pay this spell's mana cost.");
+ FilterControlledArtifactPermanent filter = new FilterControlledArtifactPermanent("untapped artifact you control");
+ filter.add(Predicates.not(new TappedPredicate()));
+ alternativeCostSourceAbility.addCost(new TapTargetCost(new TargetControlledPermanent(filter)));
+ this.addAbility(alternativeCostSourceAbility);
+
+ // Flying
+ this.addAbility(FlyingAbility.getInstance());
+
+ }
+
+ public ZahidDjinnOfTheLamp(final ZahidDjinnOfTheLamp card) {
+ super(card);
+ }
+
+ @Override
+ public ZahidDjinnOfTheLamp copy() {
+ return new ZahidDjinnOfTheLamp(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/cards/z/ZendikarResurgent.java b/Mage.Sets/src/mage/cards/z/ZendikarResurgent.java
index f6fab6276b4..332884711e5 100644
--- a/Mage.Sets/src/mage/cards/z/ZendikarResurgent.java
+++ b/Mage.Sets/src/mage/cards/z/ZendikarResurgent.java
@@ -48,9 +48,9 @@ public class ZendikarResurgent extends CardImpl {
public ZendikarResurgent(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{5}{G}{G}");
- // Whenever you tap a land for mana, add one mana to your mana pool of any type that land produced. (The types of mana are white, blue, black, red, green, and colorless.)
+ // Whenever you tap a land for mana, add one mana of any type that land produced. (The types of mana are white, blue, black, red, green, and colorless.)
AddManaOfAnyTypeProducedEffect effect = new AddManaOfAnyTypeProducedEffect();
- effect.setText("add one mana to your mana pool of any type that land produced");
+ effect.setText("add one mana of any type that land produced");
this.addAbility(new TapForManaAllTriggeredManaAbility(
effect,
new FilterControlledLandPermanent("you tap a land"),
diff --git a/Mage.Sets/src/mage/sets/Alliances.java b/Mage.Sets/src/mage/sets/Alliances.java
index 8e05965cc7f..9d879e5ddcf 100644
--- a/Mage.Sets/src/mage/sets/Alliances.java
+++ b/Mage.Sets/src/mage/sets/Alliances.java
@@ -1,23 +1,6 @@
package mage.sets;
import mage.cards.ExpansionSet;
-import mage.cards.a.AesthirGlider;
-import mage.cards.a.AgentOfStromgald;
-import mage.cards.b.BalduvianWarMakers;
-import mage.cards.c.CarrierPigeons;
-import mage.cards.e.EnslavedScout;
-import mage.cards.f.FeveredStrength;
-import mage.cards.g.GorillaBerserkers;
-import mage.cards.g.GorillaShaman;
-import mage.cards.i.InsidiousBookworms;
-import mage.cards.l.LimDulsHighGuard;
-import mage.cards.p.PhyrexianWarBeast;
-import mage.cards.r.RoyalHerbalist;
-import mage.cards.s.SoldeviAdnate;
-import mage.cards.s.SoldeviSage;
-import mage.cards.s.StormShaman;
-import mage.cards.s.SwampMosquito;
-import mage.cards.w.WhipVine;
import mage.constants.Rarity;
import mage.constants.SetType;
@@ -116,6 +99,8 @@ public class Alliances extends ExpansionSet {
cards.add(new SetCardInfo("Krovikan Horror", 53, Rarity.RARE, mage.cards.k.KrovikanHorror.class));
cards.add(new SetCardInfo("Krovikan Plague", 54, Rarity.UNCOMMON, mage.cards.k.KrovikanPlague.class));
cards.add(new SetCardInfo("Lake of the Dead", 140, Rarity.RARE, mage.cards.l.LakeOfTheDead.class));
+ cards.add(new SetCardInfo("Lat-Nam's Legacy", "30a", Rarity.COMMON, mage.cards.l.LatNamsLegacy.class));
+ cards.add(new SetCardInfo("Lat-Nam's Legacy", "30b", Rarity.COMMON, mage.cards.l.LatNamsLegacy.class));
cards.add(new SetCardInfo("Library of Lat-Nam", 31, Rarity.RARE, mage.cards.l.LibraryOfLatNam.class));
cards.add(new SetCardInfo("Lim-Dul's High Guard", "55a", Rarity.COMMON, mage.cards.l.LimDulsHighGuard.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Lim-Dul's High Guard", "55b", Rarity.COMMON, mage.cards.l.LimDulsHighGuard.class, NON_FULL_USE_VARIOUS));
diff --git a/Mage.Sets/src/mage/sets/Judgment.java b/Mage.Sets/src/mage/sets/Judgment.java
index 2013013d15c..7273117178c 100644
--- a/Mage.Sets/src/mage/sets/Judgment.java
+++ b/Mage.Sets/src/mage/sets/Judgment.java
@@ -168,6 +168,7 @@ public class Judgment extends ExpansionSet {
cards.add(new SetCardInfo("Test of Endurance", 29, Rarity.RARE, mage.cards.t.TestOfEndurance.class));
cards.add(new SetCardInfo("Thriss, Nantuko Primus", 134, Rarity.RARE, mage.cards.t.ThrissNantukoPrimus.class));
cards.add(new SetCardInfo("Toxic Stench", 74, Rarity.COMMON, mage.cards.t.ToxicStench.class));
+ cards.add(new SetCardInfo("Trained Pronghorn", 30, Rarity.COMMON, mage.cards.t.TrainedPronghorn.class));
cards.add(new SetCardInfo("Treacherous Vampire", 75, Rarity.UNCOMMON, mage.cards.t.TreacherousVampire.class));
cards.add(new SetCardInfo("Treacherous Werewolf", 76, Rarity.COMMON, mage.cards.t.TreacherousWerewolf.class));
cards.add(new SetCardInfo("Tunneler Wurm", 135, Rarity.UNCOMMON, mage.cards.t.TunnelerWurm.class));
diff --git a/Mage.Sets/src/mage/sets/MastersEditionII.java b/Mage.Sets/src/mage/sets/MastersEditionII.java
index 784a0aff509..6d1617f3636 100644
--- a/Mage.Sets/src/mage/sets/MastersEditionII.java
+++ b/Mage.Sets/src/mage/sets/MastersEditionII.java
@@ -178,6 +178,7 @@ public class MastersEditionII extends ExpansionSet {
cards.add(new SetCardInfo("Krovikan Fetish", 100, Rarity.COMMON, mage.cards.k.KrovikanFetish.class));
cards.add(new SetCardInfo("Krovikan Horror", 101, Rarity.RARE, mage.cards.k.KrovikanHorror.class));
cards.add(new SetCardInfo("Krovikan Sorcerer", 51, Rarity.COMMON, mage.cards.k.KrovikanSorcerer.class));
+ cards.add(new SetCardInfo("Lat-Nam's Legacy", 52, Rarity.COMMON, mage.cards.l.LatNamsLegacy.class));
cards.add(new SetCardInfo("Leaping Lizard", 171, Rarity.COMMON, mage.cards.l.LeapingLizard.class));
cards.add(new SetCardInfo("Lim-Dul's High Guard", 103, Rarity.UNCOMMON, LimDulsHighGuard.class));
cards.add(new SetCardInfo("Lodestone Bauble", 213, Rarity.RARE, mage.cards.l.LodestoneBauble.class));
diff --git a/Mage.Sets/src/mage/sets/Visions.java b/Mage.Sets/src/mage/sets/Visions.java
index c16b6af1a07..dd91e41c306 100644
--- a/Mage.Sets/src/mage/sets/Visions.java
+++ b/Mage.Sets/src/mage/sets/Visions.java
@@ -184,14 +184,15 @@ public class Visions extends ExpansionSet {
cards.add(new SetCardInfo("Tempest Drake", 139, Rarity.UNCOMMON, mage.cards.t.TempestDrake.class));
cards.add(new SetCardInfo("Three Wishes", 45, Rarity.RARE, mage.cards.t.ThreeWishes.class));
cards.add(new SetCardInfo("Tin-Wing Chimera", 157, Rarity.UNCOMMON, mage.cards.t.TinWingChimera.class));
- cards.add(new SetCardInfo("Tithe", 123, Rarity.RARE, mage.cards.t.Tithe.class));
+ cards.add(new SetCardInfo("Tithe", 23, Rarity.RARE, mage.cards.t.Tithe.class));
cards.add(new SetCardInfo("Tremor", 99, Rarity.COMMON, mage.cards.t.Tremor.class));
cards.add(new SetCardInfo("Triangle of War", 158, Rarity.RARE, mage.cards.t.TriangleOfWar.class));
- cards.add(new SetCardInfo("Uktabi Orangutan", 73, Rarity.UNCOMMON, mage.cards.u.UktabiOrangutan.class));
+ cards.add(new SetCardInfo("Uktabi Orangutan", 123, Rarity.UNCOMMON, mage.cards.u.UktabiOrangutan.class));
cards.add(new SetCardInfo("Undiscovered Paradise", 167, Rarity.RARE, mage.cards.u.UndiscoveredParadise.class));
cards.add(new SetCardInfo("Undo", 47, Rarity.COMMON, mage.cards.u.Undo.class));
cards.add(new SetCardInfo("Urborg Mindsucker", 21, Rarity.COMMON, mage.cards.u.UrborgMindsucker.class));
cards.add(new SetCardInfo("Vampiric Tutor", 22, Rarity.RARE, mage.cards.v.VampiricTutor.class));
+ cards.add(new SetCardInfo("Vampirism", 73, Rarity.UNCOMMON, mage.cards.v.Vampirism.class));
cards.add(new SetCardInfo("Vanishing", 48, Rarity.COMMON, mage.cards.v.Vanishing.class));
cards.add(new SetCardInfo("Viashino Sandstalker", 100, Rarity.UNCOMMON, mage.cards.v.ViashinoSandstalker.class));
cards.add(new SetCardInfo("Viashivan Dragon", 140, Rarity.RARE, mage.cards.v.ViashivanDragon.class));
diff --git a/Mage.Tests/src/test/java/org/mage/test/AI/basic/CastCreaturesTest.java b/Mage.Tests/src/test/java/org/mage/test/AI/basic/CastCreaturesTest.java
index 57814e4f17f..8564278a878 100644
--- a/Mage.Tests/src/test/java/org/mage/test/AI/basic/CastCreaturesTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/AI/basic/CastCreaturesTest.java
@@ -76,7 +76,7 @@ public class CastCreaturesTest extends CardTestPlayerBaseAI {
public void testSimpleCast3() {
// Affinity for artifacts (This spell costs less to cast for each artifact you control.)
addCard(Zone.HAND, playerA, "Myr Enforcer");
- // {T}: Add to your mana pool.
+ // {T}: Add.
// {T}, {1}, Sacrifice Mind Stone: Draw a card.
addCard(Zone.BATTLEFIELD, playerA, "Mind Stone", 3);
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 1);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/activated/LightningStormTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/activated/LightningStormTest.java
index 9b0035236e3..508dd3b8cfe 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/activated/LightningStormTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/activated/LightningStormTest.java
@@ -50,7 +50,7 @@ public class LightningStormTest extends CardTestPlayerBase {
@Test
public void ActivateByBothPlayersTest() {
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 3);
- // Lightning Storm deals X damage to target creature or player, where X is 3 plus the number of charge counters on it.
+ // Lightning Storm deals X damage to any target, where X is 3 plus the number of charge counters on it.
// Discard a land card: Put two charge counters on Lightning Storm. You may choose a new target for it. Any player may activate this ability but only if Lightning Storm is on the stack.
addCard(Zone.HAND, playerA, "Lightning Storm"); // {1}{R}{R}
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/enters/BloodMoonTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/enters/BloodMoonTest.java
index 75e453f97eb..2d3d3f2779c 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/enters/BloodMoonTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/enters/BloodMoonTest.java
@@ -69,7 +69,7 @@ public class BloodMoonTest extends CardTestPlayerBase {
/**
* Kabira Crossroads Land Kabira Crossroads enters the battlefield
* tapped. When Kabira Crossroads enters the battlefield, you gain 2
- * life. {W}: Add to your mana pool.
+ * life. {W}: Add.
*
*/
addCard(Zone.HAND, playerA, "Kabira Crossroads");
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/enters/SkylineCascadeTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/enters/SkylineCascadeTest.java
index 489d7745ca6..3f8e8bda75b 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/enters/SkylineCascadeTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/enters/SkylineCascadeTest.java
@@ -29,7 +29,7 @@ public class SkylineCascadeTest extends CardTestPlayerBase {
/**
* Skyline Cascade enters the battlefield tapped.
* When Skyline Cascade enters the battlefield, target creature an opponent controls doesn't untap during its controller's next untap step.
- * Tap: Add {U} to your mana pool.
+ * Tap: Add {U} .
*/
addCard(Zone.HAND, playerB, "Skyline Cascade");
@@ -64,7 +64,7 @@ public class SkylineCascadeTest extends CardTestPlayerBase {
/**
* Skyline Cascade enters the battlefield tapped.
* When Skyline Cascade enters the battlefield, target creature an opponent controls doesn't untap during its controller's next untap step.
- * Tap: Add {U} to your mana pool.
+ * Tap: Add {U} .
*/
addCard(Zone.HAND, playerB, "Skyline Cascade");
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/enters/ValakutTheMoltenPinnacleTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/enters/ValakutTheMoltenPinnacleTest.java
index 6bcd6809e4c..c823abade7f 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/enters/ValakutTheMoltenPinnacleTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/enters/ValakutTheMoltenPinnacleTest.java
@@ -43,7 +43,7 @@ public class ValakutTheMoltenPinnacleTest extends CardTestPlayerBase {
* Valakut, the Molten Pinnacle Land Valakut, the Molten Pinnacle enters the
* battlefield tapped. Whenever a Mountain enters the battlefield under your
* control, if you control at least five other Mountains, you may have
- * Valakut, the Molten Pinnacle deal 3 damage to target creature or player.
+ * Valakut, the Molten Pinnacle deal 3 damage to any target.
* {T}: Add {R}.
*/
@Test
@@ -169,7 +169,7 @@ public class ValakutTheMoltenPinnacleTest extends CardTestPlayerBase {
public void withPrismaticOmen() {
// Valakut, the Molten Pinnacle enters the battlefield tapped.
// Whenever a Mountain enters the battlefield under your control, if you control at least five other Mountains,
- // you may have Valakut, the Molten Pinnacle deal 3 damage to target creature or player.
+ // you may have Valakut, the Molten Pinnacle deal 3 damage to any target.
// {T}: Add {R}.
addCard(Zone.BATTLEFIELD, playerA, "Valakut, the Molten Pinnacle");
addCard(Zone.BATTLEFIELD, playerA, "Forest", 4);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/AmplifyTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/AmplifyTest.java
index 5df01166432..3874c662d54 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/AmplifyTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/AmplifyTest.java
@@ -46,7 +46,7 @@ public class AmplifyTest extends CardTestPlayerBase {
public void testAmplifyOneCard() {
// Creature — Dragon - Dragon 5/5 {5}{R}{R}
// Amplify 3 (As this creature enters the battlefield, put three +1/+1 counters on it for each Dragon card you reveal in your hand.)
- // {T}: Kilnmouth Dragon deals damage equal to the number of +1/+1 counters on it to target creature or player
+ // {T}: Kilnmouth Dragon deals damage equal to the number of +1/+1 counters on it to any target
addCard(Zone.HAND, playerA, "Kilnmouth Dragon", 2);
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 7);
@@ -67,7 +67,7 @@ public class AmplifyTest extends CardTestPlayerBase {
public void testAmplifyTwoCards() {
// Creature — Dragon - Dragon 5/5 {5}{R}{R}
// Amplify 3 (As this creature enters the battlefield, put three +1/+1 counters on it for each Dragon card you reveal in your hand.)
- // {T}: Kilnmouth Dragon deals damage equal to the number of +1/+1 counters on it to target creature or player
+ // {T}: Kilnmouth Dragon deals damage equal to the number of +1/+1 counters on it to any target
addCard(Zone.HAND, playerA, "Kilnmouth Dragon", 2);
addCard(Zone.HAND, playerA, "Phantasmal Dragon", 1);
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 7);
@@ -89,7 +89,7 @@ public class AmplifyTest extends CardTestPlayerBase {
public void testAmplifyWithClone() {
// Creature — Dragon - Dragon 5/5 {5}{R}{R}
// Amplify 3 (As this creature enters the battlefield, put three +1/+1 counters on it for each Dragon card you reveal in your hand.)
- // {T}: Kilnmouth Dragon deals damage equal to the number of +1/+1 counters on it to target creature or player
+ // {T}: Kilnmouth Dragon deals damage equal to the number of +1/+1 counters on it to any target
addCard(Zone.HAND, playerA, "Kilnmouth Dragon", 2);
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 7);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/ChampionTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/ChampionTest.java
index 8ceecdc027c..524563d80cf 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/ChampionTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/ChampionTest.java
@@ -59,7 +59,7 @@ public class ChampionTest extends CardTestPlayerBase {
* Champion a Goblin or Shaman (When this enters the battlefield, sacrifice
* it unless you exile another Goblin or Shaman you control. When this
* leaves the battlefield, that card returns to the battlefield.)
- * {T}: Lightning Crafter deals 3 damage to target creature or player.
+ * {T}: Lightning Crafter deals 3 damage to any target.
*
*/
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/CrewTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/CrewTest.java
index 8c7f7b8bd59..dc157d49b71 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/CrewTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/CrewTest.java
@@ -44,7 +44,7 @@ public class CrewTest extends CardTestPlayerBase {
@Test
public void crewBasicTest() {
- // {T}: Add one mana of any color to your mana pool.
+ // {T}: Add one mana of any color.
// Crew 3 (Tap any number of creatures you control with total power 3 or more: This Vehicle becomes an artifact creature until end of turn.)";
addCard(Zone.BATTLEFIELD, playerA, "Cultivator's Caravan", 1);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/DeathtouchTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/DeathtouchTest.java
index 387bc7127e8..6a32ef44ceb 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/DeathtouchTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/DeathtouchTest.java
@@ -77,7 +77,7 @@ public class DeathtouchTest extends CardTestPlayerBase {
it equal to the amount of mana spent to cast it.
{X}, Remove X +1/+1 counters from Marath: Choose one -
* Put X +1/+1 counters on target creature
- * Marath deals X damage to target creature or player
+ * Marath deals X damage to any target
* Put an X/X green Elemental creature token onto the battlefield. X can't be 0
*/
addCard(Zone.HAND, playerA, "Marath, Will of the Wild", 1);
@@ -90,7 +90,7 @@ public class DeathtouchTest extends CardTestPlayerBase {
activateAbility(1, PhaseStep.POSTCOMBAT_MAIN, playerA, "{X}, Remove X +1/+1 counters from Marath", "Archangel of Thune");
setChoice(playerA, "X=3");
- setModeChoice(playerA, "2"); // Marath deals X damage to target creature or player
+ setModeChoice(playerA, "2"); // Marath deals X damage to any target
setStopAt(1, PhaseStep.END_TURN);
execute();
@@ -118,7 +118,7 @@ public class DeathtouchTest extends CardTestPlayerBase {
it equal to the amount of mana spent to cast it.
{X}, Remove X +1/+1 counters from Marath: Choose one -
* Put X +1/+1 counters on target creature
- * Marath deals X damage to target creature or player
+ * Marath deals X damage to any target
* Put an X/X green Elemental creature token onto the battlefield. X can't be 0
*/
addCard(Zone.HAND, playerA, "Marath, Will of the Wild", 1);
@@ -133,7 +133,7 @@ public class DeathtouchTest extends CardTestPlayerBase {
activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Equip {2}", "Marath, Will of the Wild");
activateAbility(1, PhaseStep.POSTCOMBAT_MAIN, playerA, "{X}, Remove X +1/+1 counters from Marath", "Elesh Norn, Grand Cenobite");
- setModeChoice(playerA, "2"); // Marath deals X damage to target creature or player
+ setModeChoice(playerA, "2"); // Marath deals X damage to any target
setChoice(playerA, "X=1");
setStopAt(1, PhaseStep.END_TURN);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/EscalateTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/EscalateTest.java
index 572c0d6b1a6..31b170cd302 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/EscalateTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/EscalateTest.java
@@ -62,7 +62,6 @@ public class EscalateTest extends CardTestPlayerBase {
assertGraveyardCount(playerA, "Savage Alliance", 1);
}
- @Ignore
@Test
public void testGaddockTeegInteraction_ThreeCMC_OneMode() {
@@ -91,7 +90,6 @@ public class EscalateTest extends CardTestPlayerBase {
// Reported bug: Escalate CMC is not calculated correctly when more than 1 mode chosen
// With 1 extra mode, the casting cost is {2}{R}{R} but the CMC should still be 3
- @Ignore
@Test
public void testGaddockTeegInteraction_ThreeCMC_TwoModes() {
@@ -119,7 +117,6 @@ public class EscalateTest extends CardTestPlayerBase {
assertLife(playerB, 17);
}
- @Ignore
@Test
public void testSpellQuellerInteraction_ThreeCMC_ThreeModes() {
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/PersistTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/PersistTest.java
index 036f6c3bde9..6da6e7a1541 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/PersistTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/PersistTest.java
@@ -205,7 +205,7 @@ public class PersistTest extends CardTestPlayerBase {
// Creatures you control can't have -1/-1 counters placed on them.
// Creatures your opponents control lose infect.
addCard(Zone.BATTLEFIELD, playerA, "Melira, Sylvok Outcast", 1); // 2/2
- // When Murderous Redcap enters the battlefield, it deals damage equal to its power to target creature or player.
+ // When Murderous Redcap enters the battlefield, it deals damage equal to its power to any target.
// Persist
addCard(Zone.HAND, playerA, "Murderous Redcap", 1); // 2/2
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 4);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/RenownTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/RenownTest.java
index 4a138d3fc33..b4a3de98ce1 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/RenownTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/RenownTest.java
@@ -97,7 +97,7 @@ public class RenownTest extends CardTestPlayerBase {
@Test
public void testHonoredHierarch() {
addCard(Zone.BATTLEFIELD, playerA, "Forest", 1);
- // As long as Honored Hierarch is renowned, it has vigilance and "{T}: Add one mana of any color to your mana pool."
+ // As long as Honored Hierarch is renowned, it has vigilance and "{T}: Add one mana of any color."
addCard(Zone.HAND, playerA, "Honored Hierarch"); // 1/1
addCard(Zone.LIBRARY, playerA, "Veteran's Sidearm");
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/StormTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/StormTest.java
index 87e1cbdf6ea..a3c062e819f 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/StormTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/StormTest.java
@@ -142,7 +142,7 @@ public class StormTest extends CardTestPlayerBase {
@Test
public void testStormSpellCountered() {
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 3);
- // Grapeshot deals 1 damage to target creature or player.
+ // Grapeshot deals 1 damage to any target.
// Storm (When you cast this spell, copy it for each spell cast before it this turn. You may choose new targets for the copies.)
addCard(Zone.HAND, playerA, "Grapeshot");
addCard(Zone.HAND, playerA, "Lightning Bolt");
@@ -174,7 +174,7 @@ public class StormTest extends CardTestPlayerBase {
// Whenever you cast an instant or sorcery spell that has the same name as a card in your graveyard, you may put a quest counter on Pyromancer Ascension.
// Whenever you cast an instant or sorcery spell while Pyromancer Ascension has two or more quest counters on it, you may copy that spell. You may choose new targets for the copy.
addCard(Zone.BATTLEFIELD, playerA, "Pyromancer Ascension", 1);
- // Grapeshot deals 1 damage to target creature or player. - Sorcery {1}{R}
+ // Grapeshot deals 1 damage to any target. - Sorcery {1}{R}
// Storm (When you cast this spell, copy it for each spell cast before it this turn. You may choose new targets for the copies.)
addCard(Zone.LIBRARY, playerA, "Grapeshot", 2);
skipInitShuffling();
@@ -207,7 +207,7 @@ public class StormTest extends CardTestPlayerBase {
public void testStormAndFlashback() {
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 8);
addCard(Zone.BATTLEFIELD, playerA, "Island", 1);
- // Geistflame deals 1 damage to target creature or player.
+ // Geistflame deals 1 damage to any target.
// Flashback {3}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)
addCard(Zone.HAND, playerA, "Geistflame", 2); // {R}
addCard(Zone.LIBRARY, playerA, "Grapeshot", 2);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/SurgeTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/SurgeTest.java
index eaf057eb8ab..8c510d66b4f 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/SurgeTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/SurgeTest.java
@@ -102,7 +102,7 @@ public class SurgeTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 6);
// Surge {3}{R}{R} (You may cast this spell for its surge cost if you or a teammate has cast another spell this turn)
// Flying
- // When Tyrant of Valakut enters the battlefield, if its surge cost was paid, it deals 3 damage to target creature or player.
+ // When Tyrant of Valakut enters the battlefield, if its surge cost was paid, it deals 3 damage to any target.
addCard(Zone.HAND, playerA, "Tyrant of Valakut"); // {5}{R}{R}
addCard(Zone.HAND, playerA, "Lightning Bolt");
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/SuspendTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/SuspendTest.java
index 9f25fe66a11..d8836b3dba5 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/SuspendTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/SuspendTest.java
@@ -171,7 +171,7 @@ public class SuspendTest extends CardTestPlayerBase {
*/
@Test
public void testCostManipulation() {
- // Rift Bolt deals 3 damage to target creature or player.
+ // Rift Bolt deals 3 damage to any target.
// Suspend 1-{R}
addCard(Zone.HAND, playerA, "Rift Bolt", 1);
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 1);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/oneshot/counterspell/CounterbalanceTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/oneshot/counterspell/CounterbalanceTest.java
index c780a14710a..02e3312020a 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/oneshot/counterspell/CounterbalanceTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/oneshot/counterspell/CounterbalanceTest.java
@@ -51,7 +51,7 @@ public class CounterbalanceTest extends CardTestPlayerBase {
public void testCommand() {
addCard(Zone.HAND, playerA, "Death Grasp");
// Sorcery {X}{W}{B}
- // Death Grasp deals X damage to target creature or player. You gain X life.
+ // Death Grasp deals X damage to any target. You gain X life.
addCard(Zone.BATTLEFIELD, playerA, "Swamp", 3);
addCard(Zone.BATTLEFIELD, playerA, "Plains", 3);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/oneshot/damage/JayaBallardTaskMageTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/oneshot/damage/JayaBallardTaskMageTest.java
index 3798cd8c938..3c94ec87cb2 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/oneshot/damage/JayaBallardTaskMageTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/oneshot/damage/JayaBallardTaskMageTest.java
@@ -41,7 +41,7 @@ public class JayaBallardTaskMageTest extends CardTestPlayerBase {
@Test
public void testDamageNormal() {
// {R}, {tap}, Discard a card: Destroy target blue permanent.
- // {1}{R}, {tap}, Discard a card: Jaya Ballard, Task Mage deals 3 damage to target creature or player. A creature dealt damage this way can't be regenerated this turn.
+ // {1}{R}, {tap}, Discard a card: Jaya Ballard, Task Mage deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.
// {5}{R}{R}, {tap}, Discard a card: Jaya Ballard deals 6 damage to each creature and each player.
addCard(Zone.BATTLEFIELD, playerA, "Jaya Ballard, Task Mage");
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 7);
@@ -66,7 +66,7 @@ public class JayaBallardTaskMageTest extends CardTestPlayerBase {
@Test
public void testDamageWithDeathPitsOfRath() {
// {R}, {tap}, Discard a card: Destroy target blue permanent.
- // {1}{R}, {tap}, Discard a card: Jaya Ballard, Task Mage deals 3 damage to target creature or player. A creature dealt damage this way can't be regenerated this turn.
+ // {1}{R}, {tap}, Discard a card: Jaya Ballard, Task Mage deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.
// {5}{R}{R}, {tap}, Discard a card: Jaya Ballard deals 6 damage to each creature and each player.
addCard(Zone.BATTLEFIELD, playerA, "Jaya Ballard, Task Mage");
// Whenever a creature is dealt damage, destroy it. It can't be regenerated.
@@ -94,7 +94,7 @@ public class JayaBallardTaskMageTest extends CardTestPlayerBase {
@Test
public void testDamageWithRepercussion() {
// {R}, {tap}, Discard a card: Destroy target blue permanent.
- // {1}{R}, {tap}, Discard a card: Jaya Ballard, Task Mage deals 3 damage to target creature or player. A creature dealt damage this way can't be regenerated this turn.
+ // {1}{R}, {tap}, Discard a card: Jaya Ballard, Task Mage deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.
// {5}{R}{R}, {tap}, Discard a card: Jaya Ballard deals 6 damage to each creature and each player.
addCard(Zone.BATTLEFIELD, playerA, "Jaya Ballard, Task Mage");
// Whenever a creature is dealt damage, Repercussion deals that much damage to that creature's controller.
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/oneshot/damage/SatyrFiredancerTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/oneshot/damage/SatyrFiredancerTest.java
index ac6211a2fcd..01a257dd1a0 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/oneshot/damage/SatyrFiredancerTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/oneshot/damage/SatyrFiredancerTest.java
@@ -88,7 +88,7 @@ public class SatyrFiredancerTest extends CardTestPlayerBase {
// Whenever an instant or sorcery spell you control deals damage to an opponent, Satyr Firedancer deals that much damage to target creature that player controls.
addCard(Zone.BATTLEFIELD, playerA, "Satyr Firedancer");
- // {T}: Prodigal Pyromancer deals 1 damage to target creature or player.
+ // {T}: Prodigal Pyromancer deals 1 damage to any target.
addCard(Zone.BATTLEFIELD, playerA, "Prodigal Pyromancer", 1);
activateAbility(3, PhaseStep.PRECOMBAT_MAIN, playerA, "{T}: {source} deals", playerB);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/other/SoulfireGrandMasterTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/other/SoulfireGrandMasterTest.java
index d180cdadf67..5c0caae43d0 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/other/SoulfireGrandMasterTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/other/SoulfireGrandMasterTest.java
@@ -182,7 +182,7 @@ public class SoulfireGrandMasterTest extends CardTestPlayerBase {
addCard(Zone.HAND, playerA, "Lightning Bolt");
addCard(Zone.BATTLEFIELD, playerA, "Soulfire Grand Master", 1);
- // {3}, {T}: Rod of Ruin deals 1 damage to target creature or player.
+ // {3}, {T}: Rod of Ruin deals 1 damage to any target.
addCard(Zone.BATTLEFIELD, playerA, "Rod of Ruin", 1);
activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{3}, {T}");
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/asthough/SpendOtherManaTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/asthough/SpendOtherManaTest.java
index 81b9ce78dd6..739a9043932 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/asthough/SpendOtherManaTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/asthough/SpendOtherManaTest.java
@@ -55,7 +55,7 @@ public class SpendOtherManaTest extends CardTestPlayerBase {
// {W}{B}: Target artifact creature gains deathtouch and lifelink until end of turn.
addCard(Zone.BATTLEFIELD, playerA, "Sydri, Galvanic Genius");
//{T}: Add {C}. ( represents colorless mana.)
- // {1}, {T}: Add one mana of any color to your mana pool.
+ // {1}, {T}: Add one mana of any color.
addCard(Zone.BATTLEFIELD, playerA, "Unknown Shores");
addCard(Zone.BATTLEFIELD, playerB, "Mountain");
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/conditional/DoIfCostPaidTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/conditional/DoIfCostPaidTest.java
index 450d6927779..fc9256ea34c 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/conditional/DoIfCostPaidTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/conditional/DoIfCostPaidTest.java
@@ -14,7 +14,7 @@ public class DoIfCostPaidTest extends CardTestPlayerBase {
@Test
public void testPayIsNotOptional() {
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 1);
- // Shock deals 2 damage to target creature or player.
+ // Shock deals 2 damage to any target.
addCard(Zone.HAND, playerA, "Shock", 1);
// When a source an opponent controls deals damage to you, sacrifice Awaken the Sky Tyrant.
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/conditional/TragicSlipTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/conditional/TragicSlipTest.java
index ae79e35e53c..0bbcfee3ab3 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/conditional/TragicSlipTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/conditional/TragicSlipTest.java
@@ -40,7 +40,7 @@ public class TragicSlipTest extends CardTestPlayerBase {
// Tragic Slip - Instant, B - Target creature gets -1/-1 until end of turn.
// Morbid — That creature gets -13/-13 until end of turn instead if a creature died this turn.
addCard(Zone.HAND, playerA, "Tragic Slip");
- // Searing Spear - Instant, 1R - Searing Spear deals 3 damage to target creature or player.
+ // Searing Spear - Instant, 1R - Searing Spear deals 3 damage to any target.
addCard(Zone.HAND, playerA, "Searing Spear");
addCard(Zone.BATTLEFIELD, playerA, "Silvercoat Lion");
addCard(Zone.BATTLEFIELD, playerA, "Pillarfield Ox");
@@ -63,7 +63,7 @@ public class TragicSlipTest extends CardTestPlayerBase {
// Tragic Slip - Instant, B - Target creature gets -1/-1 until end of turn.
// Morbid — That creature gets -13/-13 until end of turn instead if a creature died this turn.
addCard(Zone.HAND, playerA, "Tragic Slip");
- // Searing Spear - Instant, 1R - Searing Spear deals 3 damage to target creature or player.
+ // Searing Spear - Instant, 1R - Searing Spear deals 3 damage to any target.
addCard(Zone.HAND, playerA, "Searing Spear");
addCard(Zone.BATTLEFIELD, playerA, "Silvercoat Lion");
addCard(Zone.BATTLEFIELD, playerA, "Pillarfield Ox");
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/continuous/AlmsBeastTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/continuous/AlmsBeastTest.java
index 568516479d1..19d0e9940cd 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/continuous/AlmsBeastTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/continuous/AlmsBeastTest.java
@@ -58,7 +58,7 @@ public class AlmsBeastTest extends CardTestPlayerBase {
@Test
public void testNoLifelinkAfterCombat() {
- // {T}: Rootwater Hunter deals 1 damage to target creature or player.
+ // {T}: Rootwater Hunter deals 1 damage to any target.
addCard(Zone.BATTLEFIELD, playerA, "Rootwater Hunter");
addCard(Zone.BATTLEFIELD, playerA, "Plains");
// Prevent all damage that would be dealt to target creature this turn.
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/continuous/EightAndAHalfTailsTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/continuous/EightAndAHalfTailsTest.java
index a540f1869b3..88b0a9758db 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/continuous/EightAndAHalfTailsTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/continuous/EightAndAHalfTailsTest.java
@@ -31,7 +31,6 @@ import mage.constants.PhaseStep;
import mage.constants.Zone;
import mage.game.permanent.Permanent;
import org.junit.Assert;
-import org.junit.Ignore;
import org.junit.Test;
import org.mage.test.serverside.base.CardTestPlayerBase;
@@ -73,7 +72,6 @@ public class EightAndAHalfTailsTest extends CardTestPlayerBase {
* recast he was still white.
*/
@Test
- @Ignore
public void testColorChangeIsReset() {
addCard(Zone.BATTLEFIELD, playerA, "Plains", 1);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/continuous/ImprisonedInTheMoonTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/continuous/ImprisonedInTheMoonTest.java
index 47d2799d576..abd863a4b7e 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/continuous/ImprisonedInTheMoonTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/continuous/ImprisonedInTheMoonTest.java
@@ -28,7 +28,7 @@ public class ImprisonedInTheMoonTest extends CardTestPlayerBase {
// Imprisoned in the Moon - Enchantment - Aura - {2}{U}
// Enchant creature, land, or planeswalker
- // Enchanted permanent is a colorless land with "Tap: Add Colorless to your mana pool" and loses all other card types and abilities.
+ // Enchanted permanent is a colorless land with "Tap: Add Colorless" and loses all other card types and abilities.
addCard(Zone.HAND, playerA, "Imprisoned in the Moon", 1);
addCard(Zone.BATTLEFIELD, playerA, "Island", 3);
addCard(Zone.BATTLEFIELD, playerB, "Urza's Mine", 1);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/continuous/LandTypeChangingEffectsTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/continuous/LandTypeChangingEffectsTest.java
index 710224e2439..c259297f6e3 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/continuous/LandTypeChangingEffectsTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/continuous/LandTypeChangingEffectsTest.java
@@ -64,8 +64,8 @@ public class LandTypeChangingEffectsTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerB, "Canopy Vista", 1);
addCard(Zone.BATTLEFIELD, playerB, "Plains", 2);
- // Lands you control have "{T}: Add one mana of any color to your mana pool."
- // {T}: Add one mana of any color to your mana pool.
+ // Lands you control have "{T}: Add one mana of any color."
+ // {T}: Add one mana of any color.
addCard(Zone.HAND, playerB, "Chromatic Lantern");
castSpell(2, PhaseStep.PRECOMBAT_MAIN, playerB, "Chromatic Lantern");
@@ -87,8 +87,8 @@ public class LandTypeChangingEffectsTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerB, "Canopy Vista", 1);
addCard(Zone.BATTLEFIELD, playerB, "Plains", 2);
- // Lands you control have "{T}: Add one mana of any color to your mana pool."
- // {T}: Add one mana of any color to your mana pool.
+ // Lands you control have "{T}: Add one mana of any color."
+ // {T}: Add one mana of any color.
addCard(Zone.HAND, playerB, "Chromatic Lantern");
castSpell(2, PhaseStep.PRECOMBAT_MAIN, playerB, "Chromatic Lantern");
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/control/GainControlTargetEffectTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/control/GainControlTargetEffectTest.java
index 2f8d8888b02..9fef6bc8626 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/control/GainControlTargetEffectTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/control/GainControlTargetEffectTest.java
@@ -52,7 +52,7 @@ public class GainControlTargetEffectTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerA, "Vedalken Shackles", 1);
addCard(Zone.BATTLEFIELD, playerA, "Island", 3);
- // Lightning Strike deals 3 damage to target creature or player.
+ // Lightning Strike deals 3 damage to any target.
addCard(Zone.HAND, playerB, "Lightning Strike", 1);
addCard(Zone.BATTLEFIELD, playerB, "Mountain", 2);
// Flying
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/control/GontiLordOfLuxuryEffectTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/control/GontiLordOfLuxuryEffectTest.java
index d683f1c4499..1d9998f03bc 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/control/GontiLordOfLuxuryEffectTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/control/GontiLordOfLuxuryEffectTest.java
@@ -95,7 +95,7 @@ public class GontiLordOfLuxuryEffectTest extends CardTestPlayerBase {
addCard(Zone.HAND, playerA, "Gonti, Lord of Luxury", 1); // Creature 2/3 {2}{B}{B}
// Creatures you control get +1/+1.
- // Whenever you tap a land for mana, add one mana to your mana pool of any type that land produced.
+ // Whenever you tap a land for mana, add one mana of any type that land produced.
addCard(Zone.LIBRARY, playerB, "Mirari's Wake"); // Enchantment {3}{G}{W}
skipInitShuffling();
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/copy/CopySpellTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/copy/CopySpellTest.java
index 167ac7f8856..c3acf40c808 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/copy/CopySpellTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/copy/CopySpellTest.java
@@ -257,7 +257,7 @@ public class CopySpellTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerA, "Atraxa, Praetors' Voice", 4);
// Walking Ballista enters the battlefield with X +1/+1 counters on it.
// {4}: Put a +1/+1 counter on Walking Ballista.
- // Remove a +1/+1 counter from Walking Ballista: It deals 1 damage to target creature or player.
+ // Remove a +1/+1 counter from Walking Ballista: It deals 1 damage to any target.
addCard(Zone.HAND, playerA, "Walking Ballista"); // {X}{X}
addCard(Zone.BATTLEFIELD, playerB, "Silvercoat Lion", 1);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/copy/MirrorworksTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/copy/MirrorworksTest.java
index 792a371bc99..cf5ab271633 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/copy/MirrorworksTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/copy/MirrorworksTest.java
@@ -49,7 +49,7 @@ public class MirrorworksTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerA, "Island", 2);
// If Mox Diamond would enter the battlefield, you may discard a land card instead. If you do, put Mox Diamond onto the battlefield. If you don't, put it into its owner's graveyard.
- // {T}: Add one mana of any color to your mana pool.
+ // {T}: Add one mana of any color.
addCard(Zone.HAND, playerA, "Mox Diamond", 1); // Artifact {0}
// Whenever another nontoken artifact enters the battlefield under your control, you may pay {2}.
@@ -74,7 +74,7 @@ public class MirrorworksTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerA, "Island", 2);
// If Mox Diamond would enter the battlefield, you may discard a land card instead. If you do, put Mox Diamond onto the battlefield. If you don't, put it into its owner's graveyard.
- // {T}: Add one mana of any color to your mana pool.
+ // {T}: Add one mana of any color.
addCard(Zone.HAND, playerA, "Mox Diamond", 1); // Artifact {0}
// Whenever another nontoken artifact enters the battlefield under your control, you may pay {2}.
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/copy/PhantasmalImageTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/copy/PhantasmalImageTest.java
index aa6c0eaacd0..628e9b71530 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/copy/PhantasmalImageTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/copy/PhantasmalImageTest.java
@@ -138,7 +138,6 @@ public class PhantasmalImageTest extends CardTestPlayerBase {
* this creature becomes the target of a spell or ability, sacrifice it"
*/
@Test
- @Ignore
public void testCopyAlreadyTransformed() {
addCard(Zone.BATTLEFIELD, playerA, "Forest", 5);
addCard(Zone.BATTLEFIELD, playerB, "Island", 2);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/copy/VesuvaTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/copy/VesuvaTest.java
index 7ac84a509ab..b3f29ee8cf1 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/copy/VesuvaTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/copy/VesuvaTest.java
@@ -53,7 +53,7 @@ public class VesuvaTest extends CardTestPlayerBase {
@Test
public void testGlimmerpost() {
// When Glimmerpost enters the battlefield, you gain 1 life for each Locus on the battlefield.
- // {T}: {1} Add to your mana pool.
+ // {T}: {1} Add.
addCard(Zone.HAND, playerA, "Glimmerpost", 1);
// You may have Vesuva enter the battlefield tapped as a copy of any land on the battlefield.
addCard(Zone.HAND, playerA, "Vesuva", 1);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/cost/modification/BattlefieldThaumaturgeTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/cost/modification/BattlefieldThaumaturgeTest.java
index 9b446aee8cb..29e983685ff 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/cost/modification/BattlefieldThaumaturgeTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/cost/modification/BattlefieldThaumaturgeTest.java
@@ -28,7 +28,7 @@ public class BattlefieldThaumaturgeTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerB, "Akroan Skyguard");
- // Lightning Strike - {1}{R} - Lightning Strike deals 3 damage to target creature or player.
+ // Lightning Strike - {1}{R} - Lightning Strike deals 3 damage to any target.
// Because Battlefield Thaumaturge is on the battlefield, and the creature is targeted by the
// Lightning Strike it will be payable with {R}.
castSpell(2, PhaseStep.POSTCOMBAT_MAIN, playerA, "Lightning Strike", "Akroan Skyguard");
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/cost/modification/MizzixOfTheIzmagnusTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/cost/modification/MizzixOfTheIzmagnusTest.java
index 4aa99bbe7f6..0837164786d 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/cost/modification/MizzixOfTheIzmagnusTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/cost/modification/MizzixOfTheIzmagnusTest.java
@@ -46,7 +46,7 @@ public class MizzixOfTheIzmagnusTest extends CardTestPlayerBase {
// Instant and sorcery spells you cast cost {1} less to cast for each experience counter you have.
addCard(Zone.BATTLEFIELD, playerA, "Mizzix of the Izmagnus");
addCard(Zone.HAND, playerA, "Lightning Bolt"); // {R}
- // Incinerate deals 3 damage to target creature or player. A creature dealt damage this way can't be regenerated this turn.
+ // Incinerate deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.
addCard(Zone.HAND, playerA, "Incinerate"); // {1}{R}
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Lightning Bolt", playerB);
@@ -72,7 +72,7 @@ public class MizzixOfTheIzmagnusTest extends CardTestPlayerBase {
// Whenever you cast an instant or sorcery spell with converted mana cost greater than the number of experience counters you have, you get an experience counter.
// Instant and sorcery spells you cast cost {1} less to cast for each experience counter you have.
addCard(Zone.BATTLEFIELD, playerA, "Mizzix of the Izmagnus");
- // Blaze deals X damage to target creature or player.
+ // Blaze deals X damage to any target.
addCard(Zone.HAND, playerA, "Blaze", 2); // Sorcery - {X}{R}
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Blaze", playerB);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/enchantments/EnchantingGraveyardCardsTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/enchantments/EnchantingGraveyardCardsTest.java
index 13bf22dd561..a28c84fd416 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/enchantments/EnchantingGraveyardCardsTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/enchantments/EnchantingGraveyardCardsTest.java
@@ -56,7 +56,7 @@ public class EnchantingGraveyardCardsTest extends CardTestPlayerBase {
addCard(Zone.HAND, playerA, SPELLWEAVER_VOLUTE, 1); // Enchantment Aura {3}{U}{U}
addCard(Zone.BATTLEFIELD, playerA, "Island", 5);
- // Lightning Bolt deals 3 damage to target creature or player.
+ // Lightning Bolt deals 3 damage to any target.
addCard(Zone.GRAVEYARD, playerB, "Lightning Bolt", 1); // Instant {R}
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, SPELLWEAVER_VOLUTE, LIGHTNING_BOLT);
@@ -95,7 +95,7 @@ public class EnchantingGraveyardCardsTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerA, "Island", 6);
addCard(Zone.GRAVEYARD, playerA, "Aerial Volley", 1); // Instant {G}
- // Lightning Bolt deals 3 damage to target creature or player.
+ // Lightning Bolt deals 3 damage to any target.
addCard(Zone.GRAVEYARD, playerB, "Lightning Bolt", 1); // Instant {R}
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, SPELLWEAVER_VOLUTE, LIGHTNING_BOLT);
@@ -141,7 +141,7 @@ public class EnchantingGraveyardCardsTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerA, "Silvercoat Lion");
addCard(Zone.BATTLEFIELD, playerA, "Island", 6);
- // Lightning Bolt deals 3 damage to target creature or player.
+ // Lightning Bolt deals 3 damage to any target.
addCard(Zone.GRAVEYARD, playerB, "Lightning Bolt", 1); // Instant {R}
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, SPELLWEAVER_VOLUTE, LIGHTNING_BOLT);
@@ -187,7 +187,7 @@ public class EnchantingGraveyardCardsTest extends CardTestPlayerBase {
addCard(Zone.HAND, playerA, SPELLWEAVER_VOLUTE, 1); // Enchantment Aura {3}{U}{U}
addCard(Zone.BATTLEFIELD, playerA, "Island", 5);
- // Lightning Bolt deals 3 damage to target creature or player.
+ // Lightning Bolt deals 3 damage to any target.
addCard(Zone.GRAVEYARD, playerB, "Lightning Bolt", 1); // Instant {R}
// Return target permanent to its owner's hand.
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/enchantments/SpreadingSeasTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/enchantments/SpreadingSeasTest.java
index e3064ac1c4f..0381e914188 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/enchantments/SpreadingSeasTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/enchantments/SpreadingSeasTest.java
@@ -65,7 +65,7 @@ public class SpreadingSeasTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerA, "Island", 2);
addCard(Zone.BATTLEFIELD, playerB, "Island", 1);
- // Tap: Add 1 to your mana pool.
+ // Tap: Add 1.
// {1}: Blinkmoth Nexus becomes a 1/1 Blinkmoth artifact creature with flying until end of turn. It's still a land.
// {1}, {T}: Target Blinkmoth gets +1/+1 until end of turn.
addCard(Zone.BATTLEFIELD, playerB, "Blinkmoth Nexus");
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/mana/ConditionalManaTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/mana/ConditionalManaTest.java
index 460873e1152..3a76a003f31 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/mana/ConditionalManaTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/mana/ConditionalManaTest.java
@@ -42,7 +42,7 @@ public class ConditionalManaTest extends CardTestPlayerBase {
@Test
public void testNormalUse() {
- // {T}: Add one mana of any color to your mana pool. Spend this mana only to cast a multicolored spell.
+ // {T}: Add one mana of any color. Spend this mana only to cast a multicolored spell.
addCard(Zone.BATTLEFIELD, playerA, "Pillar of the Paruns", 2);
// Instant {G}{W}
// Target player gains 7 life.
@@ -60,7 +60,7 @@ public class ConditionalManaTest extends CardTestPlayerBase {
@Test
public void testNotAllowedUse() {
- // {T}: Add one mana of any color to your mana pool. Spend this mana only to cast a multicolored spell.
+ // {T}: Add one mana of any color. Spend this mana only to cast a multicolored spell.
addCard(Zone.BATTLEFIELD, playerA, "Pillar of the Paruns", 2);
addCard(Zone.HAND, playerA, "Silvercoat Lion", 1);
@@ -93,13 +93,13 @@ public class ConditionalManaTest extends CardTestPlayerBase {
public void testWorkingWithReflectingPool2() {
addCard(Zone.BATTLEFIELD, playerA, "Reflecting Pool", 1); // can create white mana without restriction from the Hive
// {T}: Add {C}.
- // {T}: Add one mana of any color to your mana pool. Spend this mana only to cast a Sliver spell.
+ // {T}: Add one mana of any color. Spend this mana only to cast a Sliver spell.
// {5}, {T}: Create a 1/1 colorless Sliver creature token. Activate this ability only if you control a Sliver.
addCard(Zone.BATTLEFIELD, playerA, "Sliver Hive", 1);
addCard(Zone.HAND, playerA, "Silvercoat Lion", 1);
activateManaAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{T}: Add {C}");
- activateManaAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{T}: Add to your mana pool one mana of any type");
+ activateManaAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{T}: Add one mana of any type");
setChoice(playerA, "White");
@@ -202,7 +202,7 @@ public class ConditionalManaTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerA, "Cultivator Drone", 1);
addCard(Zone.BATTLEFIELD, playerA, "Wastes", 1);
// Untap Endbringer during each other player's untap step.
- // {T}: Endbringer deals 1 damage to target creature or player.
+ // {T}: Endbringer deals 1 damage to any target.
// {C}, {T}: Target creature can't attack or block this turn.
// {C}{C}, {T}: Draw a card.
addCard(Zone.BATTLEFIELD, playerA, "Endbringer", 1); // {1}{C}
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/mana/HarvesterDruidTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/mana/HarvesterDruidTest.java
index c8bcc3b548d..e90e4323c5d 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/mana/HarvesterDruidTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/mana/HarvesterDruidTest.java
@@ -46,7 +46,7 @@ public class HarvesterDruidTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerA, "Island", 1);
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 1);
- // {T}: Add to your mana pool one mana of any color that a land you control could produce.
+ // {T}: Add one mana of any color that a land you control could produce.
addCard(Zone.BATTLEFIELD, playerA, "Harvester Druid", 1);
setStopAt(1, PhaseStep.PRECOMBAT_MAIN);
@@ -64,7 +64,7 @@ public class HarvesterDruidTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerA, "Island", 1);
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 1);
- // {T}: Add to your mana pool one mana of any color that a land you control could produce.
+ // {T}: Add one mana of any color that a land you control could produce.
addCard(Zone.BATTLEFIELD, playerA, "Harvester Druid", 2);
setStopAt(1, PhaseStep.PRECOMBAT_MAIN);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/mana/ManaFlareTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/mana/ManaFlareTest.java
index 31660bb3359..f8d954ed361 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/mana/ManaFlareTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/mana/ManaFlareTest.java
@@ -66,7 +66,7 @@ public class ManaFlareTest extends CardTestPlayerBase {
*/
@Test
public void testWateryGrave() {
- // {T}: Add one mana of any color to your mana pool. Spend this mana only to cast a multicolored spell.
+ // {T}: Add one mana of any color. Spend this mana only to cast a multicolored spell.
addCard(Zone.BATTLEFIELD, playerB, "Mana Flare", 1);
addCard(Zone.BATTLEFIELD, playerB, "Watery Grave", 1);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/mana/MycosynthLatticeTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/mana/MycosynthLatticeTest.java
index 629190c7469..4b86b4a810c 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/mana/MycosynthLatticeTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/mana/MycosynthLatticeTest.java
@@ -11,7 +11,7 @@ public class MycosynthLatticeTest extends CardTestPlayerBase {
@Test
public void testMycoSynthLatticeNormal() {
// Converge - Crystalline Crawler enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.
- // Remove a +1/+1 counter from Crystalline Crawler: Add one mana of any color to your mana pool.
+ // Remove a +1/+1 counter from Crystalline Crawler: Add one mana of any color.
// {T}: Put a +1/+1 counter on Crystalline Crawler.
String crawler = "Crystalline Crawler";
@@ -33,7 +33,7 @@ public class MycosynthLatticeTest extends CardTestPlayerBase {
@Test
public void testMycoSynthLatticeWithCrystallineCrawler() {
// Converge - Crystalline Crawler enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.
- // Remove a +1/+1 counter from Crystalline Crawler: Add one mana of any color to your mana pool.
+ // Remove a +1/+1 counter from Crystalline Crawler: Add one mana of any color.
// {T}: Put a +1/+1 counter on Crystalline Crawler.
String crawler = "Crystalline Crawler";
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/mana/NagaVitalistTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/mana/NagaVitalistTest.java
index 353b80bb1c9..a16e293090e 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/mana/NagaVitalistTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/mana/NagaVitalistTest.java
@@ -17,7 +17,7 @@ public class NagaVitalistTest extends CardTestPlayerBase {
/*
Naga Vitalist 1G
Creature - Naga Druid 1/2
- T: Add to your mana pool one mana of any type that a land you control could produce.
+ T: Add one mana of any type that a land you control could produce.
*/
private final String nagaVitalist = "Naga Vitalist";
@@ -26,7 +26,7 @@ public class NagaVitalistTest extends CardTestPlayerBase {
Enchantment - Aura
Enchant - Land
When Gift of Paradise enters the battlefield, you gain 3 life.
- Enchanted land has "T: Add two mana of any one color to your mana pool."
+ Enchanted land has "T: Add two mana of any one color."
*/
private final String giftParadise = "Gift of Paradise";
@@ -66,7 +66,7 @@ public class NagaVitalistTest extends CardTestPlayerBase {
castSpell(giftCastTurn, PhaseStep.PRECOMBAT_MAIN, playerA, giftParadise, "Swamp");
// activate red mana (by any from enchanted land)
- activateManaAbility(nagaManaTapTurn, PhaseStep.POSTCOMBAT_MAIN, playerA, "{T}: Add to your mana pool one mana of any");
+ activateManaAbility(nagaManaTapTurn, PhaseStep.POSTCOMBAT_MAIN, playerA, "{T}: Add one mana of any");
setChoice(playerA, nagaManaTapColor);
setStopAt(nagaManaTapTurn, PhaseStep.POSTCOMBAT_MAIN);
@@ -135,7 +135,7 @@ public class NagaVitalistTest extends CardTestPlayerBase {
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, giftParadise, "Forest");
- activateManaAbility(3, PhaseStep.PRECOMBAT_MAIN, playerA, "{T}: Add to your mana pool one mana of any");
+ activateManaAbility(3, PhaseStep.PRECOMBAT_MAIN, playerA, "{T}: Add one mana of any");
setChoice(playerA, "Red");
setStopAt(3, PhaseStep.PRECOMBAT_MAIN);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/mana/NykthosShrineToNyxTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/mana/NykthosShrineToNyxTest.java
index bba966197a4..0913ee9e024 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/mana/NykthosShrineToNyxTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/mana/NykthosShrineToNyxTest.java
@@ -52,7 +52,7 @@ public class NykthosShrineToNyxTest extends CardTestPlayerBase {
// Omnath, Locus of Mana gets +1/+1 for each green mana in your mana pool.
addCard(Zone.BATTLEFIELD, playerA, "Omnath, Locus of Mana", 1);
- activateManaAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{2}, {T}: Choose a color. Add to your mana pool an amount of mana of that color equal to your devotion to that color.");
+ activateManaAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{2}, {T}: Choose a color. Add an amount of mana of that color equal to your devotion to that color.");
setChoice(playerA, "Green");
setStopAt(1, PhaseStep.PRECOMBAT_MAIN);
@@ -75,12 +75,12 @@ public class NykthosShrineToNyxTest extends CardTestPlayerBase {
// Omnath, Locus of Mana gets +1/+1 for each green mana in your mana pool.
addCard(Zone.BATTLEFIELD, playerA, "Omnath, Locus of Mana", 1);
- activateManaAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{2}, {T}: Choose a color. Add to your mana pool an amount of mana of that color equal to your devotion to that color.");
+ activateManaAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{2}, {T}: Choose a color. Add an amount of mana of that color equal to your devotion to that color.");
setChoice(playerA, "Green");
activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{T}: Untap another target permanent.", "Nykthos, Shrine to Nyx");
- activateManaAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{2}, {T}: Choose a color. Add to your mana pool an amount of mana of that color equal to your devotion to that color.");
+ activateManaAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{2}, {T}: Choose a color. Add an amount of mana of that color equal to your devotion to that color.");
setChoice(playerA, "Green");
setStopAt(1, PhaseStep.PRECOMBAT_MAIN);
@@ -106,12 +106,12 @@ public class NykthosShrineToNyxTest extends CardTestPlayerBase {
// If unused mana would empty from your mana pool, that mana becomes colorless instead.
addCard(Zone.BATTLEFIELD, playerA, "Kruphix, God of Horizons", 1); // 1 G devotion
- activateManaAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{2}, {T}: Choose a color. Add to your mana pool an amount of mana of that color equal to your devotion to that color.");
+ activateManaAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{2}, {T}: Choose a color. Add an amount of mana of that color equal to your devotion to that color.");
setChoice(playerA, "Green");
activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{T}: Untap another target permanent.", "Nykthos, Shrine to Nyx");
- activateManaAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{2}, {T}: Choose a color. Add to your mana pool an amount of mana of that color equal to your devotion to that color.");
+ activateManaAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{2}, {T}: Choose a color. Add an amount of mana of that color equal to your devotion to that color.");
setChoice(playerA, "Green");
setStopAt(1, PhaseStep.BEGIN_COMBAT);
@@ -143,7 +143,7 @@ public class NykthosShrineToNyxTest extends CardTestPlayerBase {
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Cackling Counterpart");
addTarget(playerA, "Simic Guildmage");
- activateManaAbility(1, PhaseStep.BEGIN_COMBAT, playerA, "{2}, {T}: Choose a color. Add to your mana pool an amount of mana of that color equal to your devotion to that color.");
+ activateManaAbility(1, PhaseStep.BEGIN_COMBAT, playerA, "{2}, {T}: Choose a color. Add an amount of mana of that color equal to your devotion to that color.");
setChoice(playerA, "Green");
setStopAt(1, PhaseStep.BEGIN_COMBAT);
@@ -161,7 +161,7 @@ public class NykthosShrineToNyxTest extends CardTestPlayerBase {
Nykthos, Shrine to Nyx
Legendary Land
{T}: Add {1}.
- {2}, {T}: Choose a color. Add to your mana pool an amount of mana of that color equal to your devotion to that color.
+ {2}, {T}: Choose a color. Add an amount of mana of that color equal to your devotion to that color.
*/
String nykthos = "Nykthos, Shrine to Nyx";
@@ -205,7 +205,7 @@ public class NykthosShrineToNyxTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerA, "Wastes", 2); // two colorless to pay for nykthos
addCard(Zone.HAND, playerA, pObliterator); // just for something to cast for 4 black mana
- activateManaAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{2}, {T}: Choose a color. Add to your mana pool an amount of mana of that color equal to your devotion to that color.");
+ activateManaAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{2}, {T}: Choose a color. Add an amount of mana of that color equal to your devotion to that color.");
setChoice(playerA, "Black"); // should produce 4 black mana
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, pObliterator); // costs exactly 4 black mana should be castable
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/mana/ReflectingPoolTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/mana/ReflectingPoolTest.java
index 527c0f70933..ab570932334 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/mana/ReflectingPoolTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/mana/ReflectingPoolTest.java
@@ -51,10 +51,10 @@ public class ReflectingPoolTest extends CardTestPlayerBase {
public void testTriggeredManaAbility() {
addCard(Zone.HAND, playerA, "Lightning Bolt", 1); // {R}
- // {T}: Add to your mana pool one mana of any type that a land you control could produce.
+ // {T}: Add one mana of any type that a land you control could produce.
addCard(Zone.BATTLEFIELD, playerA, "Reflecting Pool", 1);
// Crumbling Vestige enters the battlefield tapped.
- // When Crumbling Vestige enters the battlefield, add one mana of any color to your mana pool.
+ // When Crumbling Vestige enters the battlefield, add one mana of any color.
// {T}: Add {C} to you mana pool.
addCard(Zone.HAND, playerA, "Crumbling Vestige", 1);
@@ -80,9 +80,9 @@ public class ReflectingPoolTest extends CardTestPlayerBase {
public void testWithExoticOrchard() {
addCard(Zone.BATTLEFIELD, playerB, "Mountain", 1);
- // {T}: Add to your mana pool one mana of any type that a land you control could produce.
+ // {T}: Add one mana of any type that a land you control could produce.
addCard(Zone.BATTLEFIELD, playerA, "Reflecting Pool", 1);
- // {T}: Add to your mana pool one mana of any color that a land an opponent controls could produce.
+ // {T}: Add one mana of any color that a land an opponent controls could produce.
addCard(Zone.BATTLEFIELD, playerA, "Exotic Orchard", 1);
setStopAt(1, PhaseStep.PRECOMBAT_MAIN);
@@ -100,9 +100,9 @@ public class ReflectingPoolTest extends CardTestPlayerBase {
public void test2WithExoticOrchard() {
addCard(Zone.BATTLEFIELD, playerB, "Mountain", 1);
- // {T}: Add to your mana pool one mana of any type that a land you control could produce.
+ // {T}: Add one mana of any type that a land you control could produce.
addCard(Zone.BATTLEFIELD, playerA, "Reflecting Pool", 2);
- // {T}: Add to your mana pool one mana of any color that a land an opponent controls could produce.
+ // {T}: Add one mana of any color that a land an opponent controls could produce.
addCard(Zone.BATTLEFIELD, playerA, "Exotic Orchard", 1);
setStopAt(1, PhaseStep.PRECOMBAT_MAIN);
@@ -120,9 +120,9 @@ public class ReflectingPoolTest extends CardTestPlayerBase {
public void testWith2ExoticOrchard() {
addCard(Zone.BATTLEFIELD, playerB, "Mountain", 1);
- // {T}: Add to your mana pool one mana of any type that a land you control could produce.
+ // {T}: Add one mana of any type that a land you control could produce.
addCard(Zone.BATTLEFIELD, playerA, "Reflecting Pool", 1);
- // {T}: Add to your mana pool one mana of any color that a land an opponent controls could produce.
+ // {T}: Add one mana of any color that a land an opponent controls could produce.
addCard(Zone.BATTLEFIELD, playerA, "Exotic Orchard", 2);
setStopAt(1, PhaseStep.PRECOMBAT_MAIN);
@@ -141,7 +141,7 @@ public class ReflectingPoolTest extends CardTestPlayerBase {
public void testWithGaeasCradle() {
addCard(Zone.BATTLEFIELD, playerA, "Silvercoat Lion", 1);
- // {T}: Add to your mana pool one mana of any type that a land you control could produce.
+ // {T}: Add one mana of any type that a land you control could produce.
addCard(Zone.BATTLEFIELD, playerA, "Reflecting Pool", 1);
// {T}: Add {G} for each creature you control.
addCard(Zone.BATTLEFIELD, playerA, "Gaea's Cradle", 1);
@@ -162,13 +162,13 @@ public class ReflectingPoolTest extends CardTestPlayerBase {
public void testWithDifferentLands() {
addCard(Zone.BATTLEFIELD, playerA, "Silvercoat Lion", 1);
- // {T}: Add to your mana pool one mana of any type that a land you control could produce.
+ // {T}: Add one mana of any type that a land you control could produce.
addCard(Zone.BATTLEFIELD, playerA, "Reflecting Pool", 1);
- // {T}: Add to your mana pool one mana of any color that a land an opponent controls could produce.
+ // {T}: Add one mana of any color that a land an opponent controls could produce.
addCard(Zone.BATTLEFIELD, playerA, "Exotic Orchard", 1);
addCard(Zone.BATTLEFIELD, playerA, "Forest", 1);
- // {T}: Add to your mana pool one mana of any color that a land an opponent controls could produce.
+ // {T}: Add one mana of any color that a land an opponent controls could produce.
addCard(Zone.BATTLEFIELD, playerB, "Exotic Orchard", 1);
addCard(Zone.BATTLEFIELD, playerB, "Plains", 1);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/mana/SylvokExplorerTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/mana/SylvokExplorerTest.java
index 3c6fce6f11d..ccf618e9671 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/mana/SylvokExplorerTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/mana/SylvokExplorerTest.java
@@ -62,7 +62,7 @@ public class SylvokExplorerTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerB, "Island", 1);
addCard(Zone.BATTLEFIELD, playerB, "Mountain", 1);
- // {T}: Add to your mana pool one mana of any color that a land an opponent controls could produce.
+ // {T}: Add one mana of any color that a land an opponent controls could produce.
addCard(Zone.BATTLEFIELD, playerA, "Sylvok Explorer", 1);
addCard(Zone.BATTLEFIELD, playerA, "Plains", 1);
@@ -78,7 +78,7 @@ public class SylvokExplorerTest extends CardTestPlayerBase {
public void testTwoInstances() {
addCard(Zone.BATTLEFIELD, playerB, "Exotic Orchard", 2);
- // {T}: Add to your mana pool one mana of any color that a land an opponent controls could produce.
+ // {T}: Add one mana of any color that a land an opponent controls could produce.
addCard(Zone.BATTLEFIELD, playerA, "Sylvok Explorer", 2);
addCard(Zone.BATTLEFIELD, playerA, "Plains", 1);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/mana/VorinclexVoiceOfHungerTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/mana/VorinclexVoiceOfHungerTest.java
index f2e83936a99..91af35eb82d 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/mana/VorinclexVoiceOfHungerTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/mana/VorinclexVoiceOfHungerTest.java
@@ -46,7 +46,7 @@ public class VorinclexVoiceOfHungerTest extends CardTestPlayerBase {
@Test
public void testRiverOfTears() {
// Trample
- // Whenever you tap a land for mana, add one mana to your mana pool of any type that land produced.
+ // Whenever you tap a land for mana, add one mana of any type that land produced.
// Whenever an opponent taps a land for mana, that land doesn't untap during its controller's next untap step.
addCard(Zone.BATTLEFIELD, playerA, "Vorinclex, Voice of Hunger", 1);
// {T}: Add {U}. If you played a land this turn, add {B} instead.
@@ -72,7 +72,7 @@ public class VorinclexVoiceOfHungerTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerA, "Upwelling", 1);
addCard(Zone.HAND, playerA, "River of Tears", 1);
// Trample
- // Whenever you tap a land for mana, add one mana to your mana pool of any type that land produced.
+ // Whenever you tap a land for mana, add one mana of any type that land produced.
// Whenever an opponent taps a land for mana, that land doesn't untap during its controller's next untap step.
addCard(Zone.BATTLEFIELD, playerA, "Vorinclex, Voice of Hunger", 1);
// {T}: Add {U}. If you played a land this turn, add {B} instead.
@@ -92,12 +92,12 @@ public class VorinclexVoiceOfHungerTest extends CardTestPlayerBase {
@Test
public void testGemstoneCavern() {
// Trample
- // Whenever you tap a land for mana, add one mana to your mana pool of any type that land produced.
+ // Whenever you tap a land for mana, add one mana of any type that land produced.
// Whenever an opponent taps a land for mana, that land doesn't untap during its controller's next untap step.
addCard(Zone.BATTLEFIELD, playerB, "Vorinclex, Voice of Hunger", 1); // {6}{G}{G}
// If Gemstone Caverns is in your opening hand and you're not playing first, you may begin the game with Gemstone Caverns on the battlefield with a luck counter on it. If you do, exile a card from your hand.
- // {T}: Add {C}. If Gemstone Caverns has a luck counter on it, instead add one mana of any color to your mana pool.
+ // {T}: Add {C}. If Gemstone Caverns has a luck counter on it, instead add one mana of any color.
addCard(Zone.HAND, playerB, "Gemstone Caverns", 1);
addCard(Zone.HAND, playerB, "Silvercoat Lion", 2);
@@ -118,13 +118,13 @@ public class VorinclexVoiceOfHungerTest extends CardTestPlayerBase {
@Test
public void testCastWithGemstoneCavern() {
// Trample
- // Whenever you tap a land for mana, add one mana to your mana pool of any type that land produced.
+ // Whenever you tap a land for mana, add one mana of any type that land produced.
// Whenever an opponent taps a land for mana, that land doesn't untap during its controller's next untap step.
addCard(Zone.HAND, playerB, "Vorinclex, Voice of Hunger", 1); // {6}{G}{G}
addCard(Zone.BATTLEFIELD, playerB, "Forest", 7);
// If Gemstone Caverns is in your opening hand and you're not playing first, you may begin the game with Gemstone Caverns on the battlefield with a luck counter on it. If you do, exile a card from your hand.
- // {T}: Add {C}. If Gemstone Caverns has a luck counter on it, instead add one mana of any color to your mana pool.
+ // {T}: Add {C}. If Gemstone Caverns has a luck counter on it, instead add one mana of any color.
addCard(Zone.HAND, playerB, "Gemstone Caverns", 1);
addCard(Zone.HAND, playerB, "Silvercoat Lion", 2);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/planeswalker/RalZarekTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/planeswalker/RalZarekTest.java
index 8da714e4de3..e334b2fe5a3 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/planeswalker/RalZarekTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/planeswalker/RalZarekTest.java
@@ -42,7 +42,7 @@ public class RalZarekTest extends CardTestPlayerBase {
@Test
public void testFirstAbility() {
// +1: Tap target permanent, then untap another target permanent.
- // -2: Ral Zarek deals 3 damage to target creature or player.
+ // -2: Ral Zarek deals 3 damage to any target.
// -7: Flip five coins. Take an extra turn after this one for each coin that comes up heads.
String ralZarek = "Ral Zarek"; // {2}{U}{R}
addCard(Zone.HAND, playerA, ralZarek);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/planeswalker/UginTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/planeswalker/UginTest.java
index a9b3b74c143..158e5018ffe 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/planeswalker/UginTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/planeswalker/UginTest.java
@@ -41,7 +41,7 @@ public class UginTest extends CardTestPlayerBase {
@Test
public void testCard() {
- // +2: Ugin, the Spirit Dragon deals 3 damage to target creature or player.
+ // +2: Ugin, the Spirit Dragon deals 3 damage to any target.
// -X: Exile each permanent with converted mana cost X or less that's one or more colors.
// -10: You gain 7 life, draw 7 cards, then put up to seven permanent cards from your hand onto the battlefield.
addCard(Zone.BATTLEFIELD, playerA, "Ugin, the Spirit Dragon"); // starts with 7 Loyality counters
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/prevention/PreventAttachedEffectTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/prevention/PreventAttachedEffectTest.java
index 2e41e673baf..d1fd1b3c84e 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/prevention/PreventAttachedEffectTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/prevention/PreventAttachedEffectTest.java
@@ -44,7 +44,7 @@ public class PreventAttachedEffectTest extends CardTestPlayerBase {
*/
@Test
public void testDamageToPlayerPrevented() {
- // Whenever an opponent casts a spell, Kaervek the Merciless deals damage to target creature or player equal to that spell's converted mana cost.
+ // Whenever an opponent casts a spell, Kaervek the Merciless deals damage to any target equal to that spell's converted mana cost.
addCard(Zone.BATTLEFIELD, playerA, "Kaervek the Merciless");
// Flash
// Enchant creature
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/prevention/SwansOfBrynArgollTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/prevention/SwansOfBrynArgollTest.java
index f8a366a861e..2f14258f671 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/prevention/SwansOfBrynArgollTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/prevention/SwansOfBrynArgollTest.java
@@ -73,7 +73,7 @@ public class SwansOfBrynArgollTest extends CardTestPlayerBase{
// 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.
addCard(Zone.BATTLEFIELD, playerA, "Swans of Bryn Argoll");
- // Banefire deals X damage to target creature or player.
+ // Banefire deals X damage to any target.
// If X is 5 or more, Banefire can't be countered by spells or abilities and the damage can't be prevented.
addCard(Zone.HAND, playerB, "Banefire", 1);
addCard(Zone.BATTLEFIELD, playerB, "Mountain", 8);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/LeylineOfTheVoidTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/LeylineOfTheVoidTest.java
index 22e93b3edd5..d2eefe4bb23 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/LeylineOfTheVoidTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/LeylineOfTheVoidTest.java
@@ -134,7 +134,7 @@ public class LeylineOfTheVoidTest extends CardTestPlayerBase {
@Test
public void testMorbidAbilityWithAwakeningZoneTokens() {
// At the beginning of your upkeep, you may put a 0/1 colorless Eldrazi Spawn creature token onto the battlefield.
- // It has "Sacrifice this creature: Add mana symbol 1 to your mana pool."
+ // It has "Sacrifice this creature: Add mana symbol 1."
addCard(Zone.BATTLEFIELD, playerA, "Awakening Zone");
// If Leyline of the Void is in your opening hand, you may begin the game with it on the battlefield.
// If a card would be put into an opponent's graveyard from anywhere, exile it instead.
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/MistcutterHydraTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/MistcutterHydraTest.java
index 2339c187b0a..bb424834963 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/MistcutterHydraTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/MistcutterHydraTest.java
@@ -105,7 +105,7 @@ public class MistcutterHydraTest extends CardTestPlayerBase {
// Apocalypse {X}{R}{G}
// Apocalypse Hydra enters the battlefield with X +1/+1 counters on it.
// If X is 5 or more, it enters the battlefield with an additional X +1/+1 counters on it.
- // {1}{R}, Remove a +1/+1 counter from Apocalypse Hydra: Apocalypse Hydra deals 1 damage to target creature or player.
+ // {1}{R}, Remove a +1/+1 counter from Apocalypse Hydra: Apocalypse Hydra deals 1 damage to any target.
// Mistcutter Hydra enters the battlefield with X +1/+1 counters on it.
addCard(Zone.HAND, playerA, "Apocalypse Hydra");
addCard(Zone.BATTLEFIELD, playerA, "Forest", 1);
@@ -129,7 +129,7 @@ public class MistcutterHydraTest extends CardTestPlayerBase {
// Apocalypse {X}{R}{G}
// Apocalypse Hydra enters the battlefield with X +1/+1 counters on it.
// If X is 5 or more, it enters the battlefield with an additional X +1/+1 counters on it.
- // {1}{R}, Remove a +1/+1 counter from Apocalypse Hydra: Apocalypse Hydra deals 1 damage to target creature or player.
+ // {1}{R}, Remove a +1/+1 counter from Apocalypse Hydra: Apocalypse Hydra deals 1 damage to any target.
// Mistcutter Hydra enters the battlefield with X +1/+1 counters on it.
addCard(Zone.HAND, playerA, "Apocalypse Hydra");
addCard(Zone.BATTLEFIELD, playerA, "Forest", 1);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/PillarOfFlameTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/PillarOfFlameTest.java
index f306f17b533..fa6e44510af 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/PillarOfFlameTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/PillarOfFlameTest.java
@@ -6,7 +6,7 @@ import org.junit.Test;
import org.mage.test.serverside.base.CardTestPlayerBase;
/**
- * Pillar of Flame: Pillar of Flame deals 2 damage to target creature or player.
+ * Pillar of Flame: Pillar of Flame deals 2 damage to any target.
* If a creature dealt damage this way would die this turn, exile it instead.
*
* @author LevelX2
@@ -25,7 +25,7 @@ public class PillarOfFlameTest extends CardTestPlayerBase {
// Unleash (You may have this creature enter the battlefield with a +1/+1 counter on it. It can't block as long as it has a +1/+1 counter on it.)
addCard(Zone.BATTLEFIELD, playerA, "Rakdos Cackler"); // 1/1
- // Pillar of Flame deals 2 damage to target creature or player.
+ // Pillar of Flame deals 2 damage to any target.
// If a creature dealt damage this way would die this turn, exile it instead.
addCard(Zone.HAND, playerA, "Pillar of Flame");
// Soulbond
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/ScorchingLavaTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/ScorchingLavaTest.java
index b4322443fa5..559c8f5bd7f 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/ScorchingLavaTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/ScorchingLavaTest.java
@@ -45,7 +45,7 @@ public class ScorchingLavaTest extends CardTestPlayerBase {
public void testTargetGetExiled() {
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 3);
// Kicker {R}
- // Scorching Lava deals 2 damage to target creature or player. If Scorching Lava was kicked, that creature can't be regenerated this turn and if it would die this turn, exile it instead.
+ // Scorching Lava deals 2 damage to any target. If Scorching Lava was kicked, that creature can't be regenerated this turn and if it would die this turn, exile it instead.
addCard(Zone.HAND, playerA, "Scorching Lava"); // Instant {1}{R}
addCard(Zone.BATTLEFIELD, playerB, "Silvercoat Lion", 1);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/WinLoseEffectsTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/WinLoseEffectsTest.java
index fab4f28f896..6f3d29dd1bf 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/WinLoseEffectsTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/WinLoseEffectsTest.java
@@ -103,7 +103,7 @@ public class WinLoseEffectsTest extends CardTestPlayerBase {
@Test
public void testAngelsGrace() {
addCard(Zone.HAND, playerA, "Angel's Grace");
- // Prevent the next 1 damage that would be dealt to target creature or player this turn.
+ // Prevent the next 1 damage that would be dealt to any target this turn.
// Draw a card.
addCard(Zone.HAND, playerA, "Bandage");
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/WouldDieExileInsteadTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/WouldDieExileInsteadTest.java
index 396ba0c7f1b..a8bc214192c 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/WouldDieExileInsteadTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/WouldDieExileInsteadTest.java
@@ -105,7 +105,7 @@ public class WouldDieExileInsteadTest extends CardTestPlayerBase {
/*
Incendiary Flow {1}{R}
Sorcery
- Incendiary Flow deals 3 damage to target creature or player. If a creature dealt damage this way would die this turn, exile it instead.
+ Incendiary Flow deals 3 damage to any target. If a creature dealt damage this way would die this turn, exile it instead.
*/
String iFlow = "Incendiary Flow";
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/canttarget/DenseFoliageTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/canttarget/DenseFoliageTest.java
index 2cbe32d2403..bc8eae01410 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/canttarget/DenseFoliageTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/canttarget/DenseFoliageTest.java
@@ -37,7 +37,7 @@ public class DenseFoliageTest extends CardTestPlayerBase {
public void testAbilityCanTarget() {
// Creatures can't be the targets of spells
addCard(Zone.BATTLEFIELD, playerA, "Dense Foliage");
- //{T}: Prodigal Sorcerer deals 1 damage to target creature or player.
+ //{T}: Prodigal Sorcerer deals 1 damage to any target.
addCard(Zone.BATTLEFIELD, playerA, "Prodigal Sorcerer");
addCard(Zone.BATTLEFIELD, playerB, "Eager Cadet");
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/prevent/RefractionTrapTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/prevent/RefractionTrapTest.java
index 048dc71c72e..0ab6d609e9f 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/prevent/RefractionTrapTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/prevent/RefractionTrapTest.java
@@ -53,7 +53,7 @@ public class RefractionTrapTest extends CardTestPlayerBase {
// rather than pay Refraction Trap's mana cost.
// Prevent the next 3 damage that a source of your choice would deal to you and/or
// permanents you control this turn. If damage is prevented this way, Refraction Trap
- // deals that much damage to target creature or player.
+ // deals that much damage to any target.
addCard(Zone.HAND, playerB, "Refraction Trap");
addCard(Zone.BATTLEFIELD, playerB, "Plains");
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/redirect/HarmsWayRedirectDamageTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/redirect/HarmsWayRedirectDamageTest.java
index 7f7508a5ab6..d7cd0eab5b9 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/redirect/HarmsWayRedirectDamageTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/redirect/HarmsWayRedirectDamageTest.java
@@ -7,7 +7,7 @@ import org.mage.test.serverside.base.CardTestPlayerBase;
/**
* Harm's Way: The next 2 damage that a source of your choice would deal to you
- * and/or permanents you control this turn is dealt to target creature or player
+ * and/or permanents you control this turn is dealt to any target
* instead.
*
* @author noxx
@@ -71,7 +71,7 @@ public class HarmsWayRedirectDamageTest extends CardTestPlayerBase {
public void testRedirectTriggeredAbilityDamage() {
addCard(Zone.HAND, playerA, "Lightning Bolt");
// The next 2 damage that a source of your choice would deal to you and/or permanents
- // you control this turn is dealt to target creature or player instead.
+ // you control this turn is dealt to any target instead.
addCard(Zone.HAND, playerA, "Harm's Way");
addCard(Zone.BATTLEFIELD, playerA, "Mountain");
addCard(Zone.BATTLEFIELD, playerA, "Plains");
@@ -103,13 +103,13 @@ public class HarmsWayRedirectDamageTest extends CardTestPlayerBase {
public void testRedirectNotPreventableDamage() {
addCard(Zone.BATTLEFIELD, playerA, "Mountain");
// Ferocious If you control a creature with power 4 or greater, damage can't be prevented this turn.
- // Wild Slash deals 2 damage to target creature or player.
+ // Wild Slash deals 2 damage to any target.
addCard(Zone.HAND, playerA, "Wild Slash"); // {R}
addCard(Zone.BATTLEFIELD, playerA, "Serra Angel");
addCard(Zone.BATTLEFIELD, playerA, "Silvercoat Lion");
// The next 2 damage that a source of your choice would deal to you and/or permanents
- // you control this turn is dealt to target creature or player instead.
+ // you control this turn is dealt to any target instead.
addCard(Zone.HAND, playerB, "Harm's Way"); // {W}
addCard(Zone.BATTLEFIELD, playerB, "Plains");
addCard(Zone.BATTLEFIELD, playerB, "Birds of Paradise");
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/redirect/WardOfPietyTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/redirect/WardOfPietyTest.java
index ea5e06346ae..89acf8cd244 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/replacement/redirect/WardOfPietyTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/replacement/redirect/WardOfPietyTest.java
@@ -44,7 +44,7 @@ public class WardOfPietyTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerB, "Mountain");
// Enchant creature
- // {1}{W}: The next 1 damage that would be dealt to enchanted creature this turn is dealt to target creature or player instead.
+ // {1}{W}: The next 1 damage that would be dealt to enchanted creature this turn is dealt to any target instead.
addCard(Zone.HAND, playerA, "Ward of Piety"); // {1}{W}
addCard(Zone.BATTLEFIELD, playerA, "Silvercoat Lion"); // 2/2
addCard(Zone.BATTLEFIELD, playerA, "Plains", 6);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/restriction/CantAttackTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/restriction/CantAttackTest.java
index f3a8cd4a9a7..fe81c74f8cf 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/restriction/CantAttackTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/restriction/CantAttackTest.java
@@ -230,7 +230,7 @@ public class CantAttackTest extends CardTestPlayerBase {
/*
Exquisite Firecraft {1}{R}{R}
Sorcery
- Exquisite Firecraft deals 4 damage to target creature or player.
+ Exquisite Firecraft deals 4 damage to any target.
*/
String eFirecraft = "Exquisite Firecraft";
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/rules/CantCastTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/rules/CantCastTest.java
index fe165b4c656..f18b8e3d1ba 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/rules/CantCastTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/rules/CantCastTest.java
@@ -76,7 +76,7 @@ public class CantCastTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 4);
- // Blaze deals X damage to target creature or player.
+ // Blaze deals X damage to any target.
addCard(Zone.HAND, playerA, "Blaze", 1);
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Blaze", playerA);
@@ -102,7 +102,7 @@ public class CantCastTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 5);
- // Blaze deals X damage to target creature or player.
+ // Blaze deals X damage to any target.
addCard(Zone.HAND, playerA, "Blaze", 1);
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Blaze", playerB);
@@ -153,7 +153,7 @@ public class CantCastTest extends CardTestPlayerBase {
// Your opponents can't block with creatures with even converted mana costs.
addCard(Zone.BATTLEFIELD, playerB, "Void Winnower");
- // Metalcraft - {T}: Add one mana of any color to your mana pool. Activate this ability only if you control three or more artifacts.
+ // Metalcraft - {T}: Add one mana of any color. Activate this ability only if you control three or more artifacts.
addCard(Zone.HAND, playerA, "Mox Opal", 1); // {0}
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Mox Opal");
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/single/AltarOfTheLostTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/single/AltarOfTheLostTest.java
index b130ef77e51..7632c689359 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/single/AltarOfTheLostTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/single/AltarOfTheLostTest.java
@@ -14,7 +14,7 @@ public class AltarOfTheLostTest extends CardTestPlayerBase {
@Test
public void testCard() {
// Altar of the Lost enters the battlefield tapped.
- // {tap}: Add two mana in any combination of colors to your mana pool. Spend this mana only to cast spells with flashback from a graveyard.
+ // {tap}: Add two mana in any combination of colors. Spend this mana only to cast spells with flashback from a graveyard.
addCard(Zone.BATTLEFIELD, playerA, "Altar of the Lost");
// Put two 1/1 white Spirit creature tokens with flying onto the battlefield.
// Flashback {1}{B}
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/single/GratuitousViolenceTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/single/GratuitousViolenceTest.java
index e6f75563c89..8d0994f42f5 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/single/GratuitousViolenceTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/single/GratuitousViolenceTest.java
@@ -27,7 +27,7 @@ public class GratuitousViolenceTest extends CardTestPlayerBase {
@Test
public void testIgnoresNonCreatures() {
// Legendary Enchantment - Shrine: At the beginning of your upkeep, Honden of Infinite
- // Rage deals damage to target creature or player equal to the number of Shrines you control.
+ // Rage deals damage to any target equal to the number of Shrines you control.
addCard(Zone.BATTLEFIELD, playerA, "Honden of Infinite Rage");
addCard(Zone.BATTLEFIELD, playerA, "Gratuitous Violence");
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/single/HavengulLichTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/single/HavengulLichTest.java
index 59d2fe6b822..ec685693e6d 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/single/HavengulLichTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/single/HavengulLichTest.java
@@ -56,7 +56,7 @@ public class HavengulLichTest extends CardTestPlayerBase {
// {1}: You may cast target creature card in a graveyard this turn. When you cast that card this turn, Havengul Lich
// gains all activated abilities of that card until end of turn.
addCard(Zone.BATTLEFIELD, playerA, "Havengul Lich");
- // {T}: Prodigal Pyromancer deals 1 damage to target creature or player.
+ // {T}: Prodigal Pyromancer deals 1 damage to any target.
addCard(Zone.GRAVEYARD, playerA, "Prodigal Pyromancer");
activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{1}: You may", "Prodigal Pyromancer");
@@ -97,7 +97,7 @@ public class HavengulLichTest extends CardTestPlayerBase {
// Creature spells you cast cost {2} less to cast.
// Creatures you control get -1/-1.
addCard(Zone.BATTLEFIELD, playerA, "Heartless Summoning"); // Enchantment
- // When Perilous Myr dies, it deals 2 damage to target creature or player.
+ // When Perilous Myr dies, it deals 2 damage to any target.
addCard(Zone.GRAVEYARD, playerA, "Perilous Myr");
activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{1}: You may", "Perilous Myr");
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/single/HuntmasterOfTheFellsTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/single/HuntmasterOfTheFellsTest.java
index f204c8f50fd..c0287193a76 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/single/HuntmasterOfTheFellsTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/single/HuntmasterOfTheFellsTest.java
@@ -27,48 +27,95 @@ public class HuntmasterOfTheFellsTest extends CardTestPlayerBase {
* controls. At the beginning of each upkeep, if a player cast two or more
* spells last turn, transform Ravager of the Fells.
*/
- @Ignore
+
@Test
- public void testCard() {
+ public void test_CantTransformOnSecondTurn() {
addCard(Zone.BATTLEFIELD, playerA, "Forest", 3);
addCard(Zone.BATTLEFIELD, playerA, "Mountain");
addCard(Zone.HAND, playerA, "Huntmaster of the Fells");
+ // need one turn to transform, but create token and gain 2 life
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Huntmaster of the Fells");
- setStopAt(3, PhaseStep.DRAW);
+ setStopAt(2, PhaseStep.PRECOMBAT_MAIN);
execute();
- assertLife(playerA, 22);
- assertLife(playerB, 18);
+ assertLife(playerA, 20 + 2);
+ assertLife(playerB, 20);
+ assertPermanentCount(playerA, "Huntmaster of the Fells", 1);
assertPermanentCount(playerA, "Wolf", 1);
+ assertPermanentCount(playerA, "Ravager of the Fells", 0);
+ }
+
+ @Test
+ public void test_TransformOneTime() {
+ addCard(Zone.BATTLEFIELD, playerA, "Forest", 3);
+ addCard(Zone.BATTLEFIELD, playerA, "Mountain");
+ addCard(Zone.HAND, playerA, "Huntmaster of the Fells");
+
+ // transform, create token and gain 2 life, make 2 damage to other player
+ castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Huntmaster of the Fells");
+ setStopAt(3, PhaseStep.PRECOMBAT_MAIN);
+ execute();
+
+ assertLife(playerA, 20 + 2);
+ assertLife(playerB, 20 - 2);
assertPermanentCount(playerA, "Huntmaster of the Fells", 0);
+ assertPermanentCount(playerA, "Wolf", 1);
assertPermanentCount(playerA, "Ravager of the Fells", 1);
}
- /**
- * Tests first trigger happens both on enter battlefield and transform
- * events
- */
- @Ignore
@Test
- public void testCard2() {
+ public void test_TransformTwoTimes() {
addCard(Zone.BATTLEFIELD, playerA, "Forest", 3);
addCard(Zone.BATTLEFIELD, playerA, "Mountain");
addCard(Zone.HAND, playerA, "Huntmaster of the Fells");
- addCard(Zone.BATTLEFIELD, playerB, "Mountain", 2);
- addCard(Zone.HAND, playerB, "Lightning Bolt", 2);
+ addCard(Zone.BATTLEFIELD, playerA, "Mountain", 2);
+ addCard(Zone.HAND, playerA, "Lightning Bolt", 2);
+ // etb: new token, gain 2 life
+ // first transform: make 2 damage to player
+ // second transform: new token, gain 2 life
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Huntmaster of the Fells");
- castSpell(3, PhaseStep.PRECOMBAT_MAIN, playerB, "Lightning Bolt", playerA);
- castSpell(3, PhaseStep.PRECOMBAT_MAIN, playerB, "Lightning Bolt", playerA);
- setStopAt(4, PhaseStep.DRAW);
+ castSpell(3, PhaseStep.PRECOMBAT_MAIN, playerA, "Lightning Bolt", playerB);
+ castSpell(3, PhaseStep.PRECOMBAT_MAIN, playerA, "Lightning Bolt", playerB);
+ setStopAt(4, PhaseStep.PRECOMBAT_MAIN);
execute();
- assertLife(playerA, 18); // -6 damage, +4 life
- assertLife(playerB, 18);
- assertPermanentCount(playerA, "Wolf", 2);
- assertPermanentCount(playerA, "Ravager of the Fells", 0); // transformed back
+ assertLife(playerA, 20 + 2 + 2);
+ assertLife(playerB, 20 - 2 - 3 * 2);
assertPermanentCount(playerA, "Huntmaster of the Fells", 1);
+ assertPermanentCount(playerA, "Wolf", 2);
+ assertPermanentCount(playerA, "Ravager of the Fells", 0);
+ assertPermanentCount(playerA, "Lightning Bolt", 0);
+ }
+
+ @Test
+ public void test_TransformTwoTimesWithCreatureDamage() {
+ addCard(Zone.BATTLEFIELD, playerA, "Forest", 3);
+ addCard(Zone.BATTLEFIELD, playerA, "Mountain");
+ addCard(Zone.HAND, playerA, "Huntmaster of the Fells");
+
+ addCard(Zone.BATTLEFIELD, playerA, "Mountain", 2);
+ addCard(Zone.HAND, playerA, "Lightning Bolt", 2);
+
+ addCard(Zone.BATTLEFIELD, playerB, "Balduvian Bears", 1);
+
+ // etb: new token, gain 2 life
+ // first transform: make 2 damage to player and 2 damage to bear
+ // second transform: new token, gain 2 life
+ castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Huntmaster of the Fells");
+ castSpell(3, PhaseStep.PRECOMBAT_MAIN, playerA, "Lightning Bolt", playerB);
+ castSpell(3, PhaseStep.PRECOMBAT_MAIN, playerA, "Lightning Bolt", playerB);
+ setStopAt(4, PhaseStep.PRECOMBAT_MAIN);
+ execute();
+
+ assertLife(playerA, 20 + 2 + 2);
+ assertLife(playerB, 20 - 2 - 3 * 2);
+ assertPermanentCount(playerA, "Huntmaster of the Fells", 1);
+ assertPermanentCount(playerA, "Wolf", 2);
+ assertPermanentCount(playerA, "Ravager of the Fells", 0);
+ assertPermanentCount(playerA, "Lightning Bolt", 0);
+ assertPermanentCount(playerB, "Balduvian Bears", 0);
}
}
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/single/MorgueBurstTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/single/MorgueBurstTest.java
index ca028a11817..7c19a0f7632 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/single/MorgueBurstTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/single/MorgueBurstTest.java
@@ -19,7 +19,7 @@ import org.mage.test.serverside.base.CardTestPlayerBase;
/*
Morgue Burst {4}{B}{R}
Sorcery
-Return target creature card from your graveyard to your hand. Morgue Burst deals damage to target creature or player equal to the power of the card returned this way.
+Return target creature card from your graveyard to your hand. Morgue Burst deals damage to any target equal to the power of the card returned this way.
*/
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/single/akh/HapatraVizierOfPoisonsTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/single/akh/HapatraVizierOfPoisonsTest.java
index 21c6fc1525b..33f3d20b5b0 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/single/akh/HapatraVizierOfPoisonsTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/single/akh/HapatraVizierOfPoisonsTest.java
@@ -80,7 +80,7 @@ public class HapatraVizierOfPoisonsTest extends CardTestPlayerBase {
/*
Devoted Druid {1}{G}
Creature - Elf Druid 0/2
- {T}: Add Green to your mana pool.
+ {T}: Add Green.
Put a -1/-1 counter on Devoted Druid: Untap Devoted Druid.
*/
String dDruid = "Devoted Druid";
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/single/avr/CavernOfSoulsTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/single/avr/CavernOfSoulsTest.java
index 438b3540a68..7421496e7d8 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/single/avr/CavernOfSoulsTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/single/avr/CavernOfSoulsTest.java
@@ -90,7 +90,7 @@ public class CavernOfSoulsTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 3);
// As Cavern of Souls enters the battlefield, choose a creature type.
// {T}: Add {C}.
- // {T}: Add one mana of any color to your mana pool. Spend this mana only to cast a creature spell of the chosen type, and that spell can't be countered.
+ // {T}: Add one mana of any color. Spend this mana only to cast a creature spell of the chosen type, and that spell can't be countered.
addCard(Zone.HAND, playerA, "Cavern of Souls");
addCard(Zone.HAND, playerA, "Azure Drake");
@@ -160,7 +160,7 @@ public class CavernOfSoulsTest extends CardTestPlayerBase {
setChoice(playerA, "Elf");
// getting green mana for Elf into pool
- activateManaAbility(3, PhaseStep.PRECOMBAT_MAIN, playerA, "{T}: Add 1 mana of any one color to your mana pool. Spend this mana only to cast a creature spell of the chosen type, and that spell can't be countered.");
+ activateManaAbility(3, PhaseStep.PRECOMBAT_MAIN, playerA, "{T}: Add 1 mana of any one color. Spend this mana only to cast a creature spell of the chosen type, and that spell can't be countered.");
setChoice(playerA, "Green");
// return cavern to hand
@@ -173,7 +173,7 @@ public class CavernOfSoulsTest extends CardTestPlayerBase {
// the green mana usable for Elf should be in the mana pool
castSpell(3, PhaseStep.PRECOMBAT_MAIN, playerA, "Gladecover Scout");
- activateManaAbility(3, PhaseStep.PRECOMBAT_MAIN, playerA, "{T}: Add 1 mana of any one color to your mana pool. Spend this mana only to cast a creature spell of the chosen type, and that spell can't be countered.");
+ activateManaAbility(3, PhaseStep.PRECOMBAT_MAIN, playerA, "{T}: Add 1 mana of any one color. Spend this mana only to cast a creature spell of the chosen type, and that spell can't be countered.");
setChoice(playerA, "Black");
// the black mana usable for Horror should be in the mana pool
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/single/bfz/BrutalExpulsionTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/single/bfz/BrutalExpulsionTest.java
index b653134927f..1fa4024618e 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/single/bfz/BrutalExpulsionTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/single/bfz/BrutalExpulsionTest.java
@@ -35,10 +35,90 @@ import org.mage.test.serverside.base.CardTestPlayerBase;
/**
*
- * @author Quercitron
+ * @author JayDi85
*/
public class BrutalExpulsionTest extends CardTestPlayerBase {
+ @Test
+ public void test_useSecondModeOnCreature() {
+ // Choose one or both
+ // - Return target spell or creature to its owner's hand.
+ // - Brutal Expulsion deals 2 damage to target creature or planeswalker. If that permanent would be put into a graveyard this turn, exile it instead.
+ addCard(Zone.HAND, playerA, "Brutal Expulsion"); // {2}{U}{R}
+ addCard(Zone.BATTLEFIELD, playerA, "Island", 1);
+ addCard(Zone.BATTLEFIELD, playerA, "Mountain", 3);
+
+ addCard(Zone.BATTLEFIELD, playerB, "Augmenting Automaton", 1); // 1 life
+ addCard(Zone.BATTLEFIELD, playerB, "Balduvian Bears", 1); // 2 life
+ addCard(Zone.BATTLEFIELD, playerB, "Razorclaw Bear", 1); // 3 life
+
+ castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Brutal Expulsion", "mode=2Augmenting Automaton");
+ setModeChoice(playerA, "2");
+ setModeChoice(playerA, null); // ignore last one mode
+ //addTarget(playerA, "mode=2Augmenting Automaton"); // doesn't work with mode
+
+ setStopAt(1, PhaseStep.END_COMBAT);
+ execute();
+
+ assertHandCount(playerA, 0);
+ assertPermanentCount(playerA, "Brutal Expulsion", 0);
+ assertPermanentCount(playerB, "Augmenting Automaton", 0);
+ assertPermanentCount(playerB, "Balduvian Bears", 1);
+ assertPermanentCount(playerB, "Razorclaw Bear", 1);
+ }
+
+ @Test
+ public void test_useSecondModeOnPlaneswalker() {
+ // Choose one or both
+ // - Return target spell or creature to its owner's hand.
+ // - Brutal Expulsion deals 2 damage to target creature or planeswalker. If that permanent would be put into a graveyard this turn, exile it instead.
+ addCard(Zone.HAND, playerA, "Brutal Expulsion"); // {2}{U}{R}
+ addCard(Zone.BATTLEFIELD, playerA, "Island", 1);
+ addCard(Zone.BATTLEFIELD, playerA, "Mountain", 3);
+
+ addCard(Zone.BATTLEFIELD, playerB, "Augmenting Automaton", 1); // 1 life
+ addCard(Zone.BATTLEFIELD, playerB, "Balduvian Bears", 1); // 2 life
+ addCard(Zone.BATTLEFIELD, playerB, "Razorclaw Bear", 1); // 3 life
+ addCard(Zone.BATTLEFIELD, playerB, "Kiora, the Crashing Wave"); // 2 life
+
+ castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Brutal Expulsion", "mode=2Kiora, the Crashing Wave");
+ setModeChoice(playerA, "2");
+ setModeChoice(playerA, null); // ignore last one mode
+
+ setStopAt(1, PhaseStep.END_COMBAT);
+ execute();
+
+ assertHandCount(playerA, 0);
+ assertPermanentCount(playerA, "Brutal Expulsion", 0);
+ assertPermanentCount(playerB, "Augmenting Automaton", 1);
+ assertPermanentCount(playerB, "Balduvian Bears", 1);
+ assertPermanentCount(playerB, "Razorclaw Bear", 1);
+ assertPermanentCount(playerB, "Kiora, the Crashing Wave", 0);
+ }
+
+ @Test
+ public void test_useSpellOnPlaneswalker() {
+ addCard(Zone.HAND, playerA, "Shock"); // {R}
+ addCard(Zone.BATTLEFIELD, playerA, "Mountain", 1);
+
+ addCard(Zone.BATTLEFIELD, playerB, "Augmenting Automaton", 1); // 1 life
+ addCard(Zone.BATTLEFIELD, playerB, "Balduvian Bears", 1); // 2 life
+ addCard(Zone.BATTLEFIELD, playerB, "Razorclaw Bear", 1); // 3 life
+ addCard(Zone.BATTLEFIELD, playerB, "Kiora, the Crashing Wave"); // 2 life
+
+ castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Shock", "Kiora, the Crashing Wave");
+
+ setStopAt(1, PhaseStep.END_COMBAT);
+ execute();
+
+ assertHandCount(playerA, 0);
+ assertPermanentCount(playerA, "Shock", 0);
+ assertPermanentCount(playerB, "Augmenting Automaton", 1);
+ assertPermanentCount(playerB, "Balduvian Bears", 1);
+ assertPermanentCount(playerB, "Razorclaw Bear", 1);
+ assertPermanentCount(playerB, "Kiora, the Crashing Wave", 0);
+ }
+
/**
* Brutal Expulsion targeting Gideon, Ally of Zendikar. Gideon has 3
* loyalty. Brutal Expulsion resolves, leaves 1 loyalty. I attack Gideon for
@@ -46,33 +126,32 @@ public class BrutalExpulsionTest extends CardTestPlayerBase {
* Expulsion sends Gideon to exile. However, in game Gideon went to
* graveyard.
*/
- @Ignore
@Test
public void testPlaneswalkerExile() {
// Choose one or both
- // - Return target spell or creature to its owner's hand;
- // or Brutal Expulsion deals 2 damage to target creature or planeswalker. If that permanent would be put into a graveyard this turn, exile it instead.
+ // - Return target spell or creature to its owner's hand.
+ // - Brutal Expulsion deals 2 damage to target creature or planeswalker. If that permanent would be put into a graveyard this turn, exile it instead.
addCard(Zone.HAND, playerA, "Brutal Expulsion"); // {2}{U}{R}
- // Shock deals 2 damage to target creature or player.
- addCard(Zone.HAND, playerA, "Shock"); // {R}
addCard(Zone.BATTLEFIELD, playerA, "Island", 1);
- addCard(Zone.BATTLEFIELD, playerA, "Mountain", 4);
+ addCard(Zone.BATTLEFIELD, playerA, "Mountain", 3);
+ // Shock deals 2 damage to any target.
+ addCard(Zone.HAND, playerA, "Shock"); // {R}
+ addCard(Zone.BATTLEFIELD, playerA, "Mountain", 1);
// Planeswalker with 4 loyalty.
addCard(Zone.BATTLEFIELD, playerB, "Gideon, Ally of Zendikar");
- castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Brutal Expulsion");
+ castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Brutal Expulsion", "mode=2Gideon, Ally of Zendikar");
setModeChoice(playerA, "2");
- setModeChoice(playerA, null);
- addTarget(playerA, "Gideon, Ally of Zendikar");
-
- castSpell(1, PhaseStep.BEGIN_COMBAT, playerA, "Shock", "Gideon, Ally of Zendikar");
+ setModeChoice(playerA, null); // ignore last one mode
+ castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Shock", "Gideon, Ally of Zendikar");
setStopAt(1, PhaseStep.END_COMBAT);
execute();
+ assertHandCount(playerA, 0);
+ assertPermanentCount(playerA, "Shock", 0);
assertPermanentCount(playerB, "Gideon, Ally of Zendikar", 0);
- assertGraveyardCount(playerB, "Gideon, Ally of Zendikar", 0);
assertExileCount("Gideon, Ally of Zendikar", 1);
}
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/single/bfz/HalimarTidecallerTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/single/bfz/HalimarTidecallerTest.java
index 2180d97fa7c..9f5f32cff98 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/single/bfz/HalimarTidecallerTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/single/bfz/HalimarTidecallerTest.java
@@ -28,7 +28,7 @@ public class HalimarTidecallerTest extends CardTestPlayerBase {
Treetop Village
Land
Treetop Village enters the battlefield tapped.
- {T}: Add Green to your mana pool.
+ {T}: Add Green.
{1}{G}: Treetop Village becomes a 3/3 green Ape creature with trample until end of turn. It's still a land.
*/
String tVillage = "Treetop Village";
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/single/lrw/BurrentonForgeTenderTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/single/lrw/BurrentonForgeTenderTest.java
index c8c18b8c839..ffb14d06964 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/single/lrw/BurrentonForgeTenderTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/single/lrw/BurrentonForgeTenderTest.java
@@ -121,7 +121,7 @@ public class BurrentonForgeTenderTest extends CardTestPlayerBase {
public void testPreventDamageFromToken() {
addCard(Zone.BATTLEFIELD, playerA, "Burrenton Forge-Tender");
addCard(Zone.BATTLEFIELD, playerA, "Soldier of the Pantheon");
- // Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to target creature or player.
+ // Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to any target.
addCard(Zone.BATTLEFIELD, playerA, "Mogg Fanatic");
addCard(Zone.BATTLEFIELD, playerA, "Swamp", 1);
addCard(Zone.BATTLEFIELD, playerA, "Plains", 1);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/single/lrw/NeedleDropTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/single/lrw/NeedleDropTest.java
index 9edf3387ddf..aef4adf5c6b 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/single/lrw/NeedleDropTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/single/lrw/NeedleDropTest.java
@@ -40,7 +40,7 @@ public class NeedleDropTest extends CardTestPlayerBase {
@Test
public void testTargetShouldBeDamaged() {
- // Needle Drop deals 1 damage to target creature or player that was dealt damage this turn.
+ // Needle Drop deals 1 damage to any target that was dealt damage this turn.
addCard(Zone.HAND, playerA, "Needle Drop", 4);
addCard(Zone.HAND, playerA, "Shock", 4);
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 8);
@@ -67,7 +67,7 @@ public class NeedleDropTest extends CardTestPlayerBase {
@Test
public void testTargetIsNotConsideredDamagedNextTurn() {
- // Needle Drop deals 1 damage to target creature or player that was dealt damage this turn.
+ // Needle Drop deals 1 damage to any target that was dealt damage this turn.
addCard(Zone.HAND, playerA, "Needle Drop", 2);
addCard(Zone.HAND, playerA, "Shock", 2);
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 4);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/single/ogw/RealitySmasherTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/single/ogw/RealitySmasherTest.java
index 799db4dfd5e..835b644f1ff 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/single/ogw/RealitySmasherTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/single/ogw/RealitySmasherTest.java
@@ -73,7 +73,7 @@ public class RealitySmasherTest extends CardTestPlayerBase {
// Whenever Reality Smasher becomes the target of a spell an opponent controls, counter that spell unless its controller discards a card.
addCard(Zone.BATTLEFIELD, playerB, "Reality Smasher");
- // {T}: Add Red to your mana pool. When that mana is spent to cast a red instant or sorcery spell, copy that spell and you may choose new targets for the copy.
+ // {T}: Add Red. When that mana is spent to cast a red instant or sorcery spell, copy that spell and you may choose new targets for the copy.
addCard(Zone.BATTLEFIELD, playerA, "Pyromancer's Goggles"); // {5} Legendary artifact
addCard(Zone.HAND, playerA, "Lightning Bolt");
addCard(Zone.HAND, playerA, "Swamp", 2); // discard fodder
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/single/ths/KeranosGodOfStormsTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/single/ths/KeranosGodOfStormsTest.java
index 9b6cd12b7e5..274706e21c9 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/single/ths/KeranosGodOfStormsTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/single/ths/KeranosGodOfStormsTest.java
@@ -42,7 +42,7 @@ public class KeranosGodOfStormsTest extends CardTestPlayerBase {
public void testKeranosNormal() {
// Reveal the first card you draw on each of your turns.
// Whenever you reveal a land card this way, draw a card.
- // Whenever you reveal a nonland card this way, Keranos deals 3 damage to target creature or player.
+ // Whenever you reveal a nonland card this way, Keranos deals 3 damage to any target.
addCard(Zone.BATTLEFIELD, playerB, "Keranos, God of Storms"); // {3}{U}{R}
// Look at target player's hand.
// Draw a card.
@@ -76,7 +76,7 @@ public class KeranosGodOfStormsTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerB, "Island", 5);
// Reveal the first card you draw on each of your turns.
// Whenever you reveal a land card this way, draw a card.
- // Whenever you reveal a nonland card this way, Keranos deals 3 damage to target creature or player.
+ // Whenever you reveal a nonland card this way, Keranos deals 3 damage to any target.
addCard(Zone.HAND, playerB, "Keranos, God of Storms"); // {3}{U}{R}
// Look at target player's hand.
// Draw a card.
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/BorosReckonerTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/BorosReckonerTest.java
index 48ba9d94eed..18d194b1f9d 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/BorosReckonerTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/BorosReckonerTest.java
@@ -43,13 +43,13 @@ public class BorosReckonerTest extends CardTestPlayerBase {
* Boros Reckoner
* {R/W}{R/W}{R/W}
* Creature — Minotaur Wizard
- * Whenever Boros Reckoner is dealt damage, it deals that much damage to target creature or player.
+ * Whenever Boros Reckoner is dealt damage, it deals that much damage to any target.
* {R/W}: Boros Reckoner gains first strike until end of turn..
*/
/**
* If damage is dealt to Boros Reckoner - Exactly the same amount of damage
- * can be dealt to target creature or player.
+ * can be dealt to any target.
*
*/
@Test
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/ColorCausedTriggerTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/ColorCausedTriggerTest.java
index 6e79d0f82e5..16ad5c9c41a 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/ColorCausedTriggerTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/ColorCausedTriggerTest.java
@@ -43,7 +43,7 @@ public class ColorCausedTriggerTest extends CardTestPlayerBase {
// Whenever a player casts a red spell, you may gain 1 life.
addCard(Zone.BATTLEFIELD, playerA, "Dragon's Claw", 1);
- // Ghostfire deals 3 damage to target creature or player.
+ // Ghostfire deals 3 damage to any target.
addCard(Zone.HAND, playerA, "Ghostfire", 1); // {2}{R}
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 3);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/MelekIzzetParagonTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/MelekIzzetParagonTest.java
index 0a3952c585f..cc07b91d935 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/MelekIzzetParagonTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/MelekIzzetParagonTest.java
@@ -56,7 +56,7 @@ public class MelekIzzetParagonTest extends CardTestPlayerBase {
// Whenever you cast an instant or sorcery spell from your library, copy it. You may choose new targets for the copy.
addCard(Zone.BATTLEFIELD, playerA, "Melek, Izzet Paragon");
- // Red Sun's Zenith deals X damage to target creature or player.
+ // Red Sun's Zenith deals X damage to any target.
// If a creature dealt damage this way would die this turn, exile it instead.
// Shuffle Red Sun's Zenith into its owner's library.
addCard(Zone.LIBRARY, playerA, "Red Sun's Zenith"); // {X}{R}
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/SpellCastTriggerTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/SpellCastTriggerTest.java
index 3949beb3afa..362d4c63c8d 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/SpellCastTriggerTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/SpellCastTriggerTest.java
@@ -98,7 +98,7 @@ public class SpellCastTriggerTest extends CardTestPlayerBase {
// Whenever you cast an instant or sorcery spell from your hand, you may cast target card with the same name as that spell from your graveyard.
addCard(Zone.BATTLEFIELD, playerA, "Harness the Storm", 1);
- // Put two 1/1 red Devil creature tokens onto the battlefield. They have "When this creature dies, it deals 1 damage to target creature or player."
+ // Put two 1/1 red Devil creature tokens onto the battlefield. They have "When this creature dies, it deals 1 damage to any target."
addCard(Zone.HAND, playerA, "Dance with Devils", 1); // {3}{R}
addCard(Zone.GRAVEYARD, playerA, "Dance with Devils", 1); // {3}{R}
@@ -123,7 +123,7 @@ public class SpellCastTriggerTest extends CardTestPlayerBase {
// Whenever you cast an instant or sorcery spell from your hand, you may cast target card with the same name as that spell from your graveyard.
addCard(Zone.BATTLEFIELD, playerA, "Harness the Storm", 1);
- // Put two 1/1 red Devil creature tokens onto the battlefield. They have "When this creature dies, it deals 1 damage to target creature or player."
+ // Put two 1/1 red Devil creature tokens onto the battlefield. They have "When this creature dies, it deals 1 damage to any target."
addCard(Zone.HAND, playerA, "Dance with Devils", 1); // {3}{R}
// Scry 2, then draw two cards. You lose 2 life.
addCard(Zone.HAND, playerA, "Read the Bones", 1); // {2}{B}
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/SpellskiteTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/SpellskiteTest.java
index 28ca2c83e01..688be2a7167 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/SpellskiteTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/SpellskiteTest.java
@@ -83,7 +83,7 @@ public class SpellskiteTest extends CardTestPlayerBase {
*/
@Test
public void testAfterChangeOfController() {
- // {T}: Add one mana of any color to your mana pool. Spend this mana only to cast a multicolored spell.
+ // {T}: Add one mana of any color. Spend this mana only to cast a multicolored spell.
addCard(Zone.BATTLEFIELD, playerA, "Silvercoat Lion", 1);
addCard(Zone.BATTLEFIELD, playerA, "Island", 3);
// {2}, {tap}: Gain control of target creature with power less than or equal to the number of Islands you control for as long as Vedalken Shackles remains tapped.
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/WorldgorgerDragonTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/WorldgorgerDragonTest.java
index 4e740d2bd94..798f0b88a69 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/WorldgorgerDragonTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/WorldgorgerDragonTest.java
@@ -80,7 +80,7 @@ public class WorldgorgerDragonTest extends CardTestPlayerBase {
addCard(Zone.HAND, playerA, "Animate Dead");
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 3);
// Instant {X}{R}{R}
- // Volcanic Geyser deals X damage to target creature or player.
+ // Volcanic Geyser deals X damage to any target.
addCard(Zone.HAND, playerA, "Volcanic Geyser", 1);
// When Staunch Defenders enters the battlefield, you gain 4 life.
addCard(Zone.BATTLEFIELD, playerA, "Staunch Defenders", 1);
@@ -162,7 +162,7 @@ public class WorldgorgerDragonTest extends CardTestPlayerBase {
addCard(Zone.HAND, playerA, "Animate Dead");
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 3);
// Instant {X}{R}{R}
- // Volcanic Geyser deals X damage to target creature or player.
+ // Volcanic Geyser deals X damage to any target.
addCard(Zone.HAND, playerA, "Volcanic Geyser", 1);
// When Staunch Defenders enters the battlefield, you gain 4 life.
addCard(Zone.BATTLEFIELD, playerA, "Staunch Defenders", 1);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/damage/SpitemareTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/damage/SpitemareTest.java
index 204852d87b2..a9f0cd90780 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/damage/SpitemareTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/damage/SpitemareTest.java
@@ -28,7 +28,7 @@ public class SpitemareTest extends CardTestPlayerBase {
/**
* {2}{R/W}{R/W}
* Creature - Elemental (3/3)
- * Whenever Spitemare is dealt damage, it deals that much damage to target creature or player.
+ * Whenever Spitemare is dealt damage, it deals that much damage to any target.
*/
addCard(Zone.BATTLEFIELD, playerB, "Spitemare", 1);
@@ -56,7 +56,7 @@ public class SpitemareTest extends CardTestPlayerBase {
/**
* {2}{R/W}{R/W}
* Creature - Elemental (3/3)
- * Whenever Spitemare is dealt damage, it deals that much damage to target creature or player.
+ * Whenever Spitemare is dealt damage, it deals that much damage to any target.
*/
addCard(Zone.BATTLEFIELD, playerB, "Spitemare", 1);
@@ -78,7 +78,7 @@ public class SpitemareTest extends CardTestPlayerBase {
/**
* {2}{R/W}{R/W}
* Creature - Elemental (3/3)
- * Whenever Spitemare is dealt damage, it deals that much damage to target creature or player.
+ * Whenever Spitemare is dealt damage, it deals that much damage to any target.
*/
addCard(Zone.BATTLEFIELD, playerB, "Spitemare", 1);
@@ -103,7 +103,7 @@ public class SpitemareTest extends CardTestPlayerBase {
/**
* {2}{R/W}{R/W}
* Creature - Elemental (3/3)
- * Whenever Spitemare is dealt damage, it deals that much damage to target creature or player.
+ * Whenever Spitemare is dealt damage, it deals that much damage to any target.
*/
addCard(Zone.BATTLEFIELD, playerB, "Spitemare", 1);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/delayed/ReturnToHandTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/delayed/ReturnToHandTest.java
index 3d749d8a509..c99e7eee50b 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/delayed/ReturnToHandTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/delayed/ReturnToHandTest.java
@@ -48,7 +48,7 @@ public class ReturnToHandTest extends CardTestPlayerBase {
// {W}: Honor Guard gets +0/+1 until end of turn.
addCard(Zone.HAND, playerA, "Honor Guard"); // Creature 1/1
- // {T}: Add one mana of any color to your mana pool. During your next untap step, as you untap your permanents, return Undiscovered Paradise to its owner's hand.
+ // {T}: Add one mana of any color. During your next untap step, as you untap your permanents, return Undiscovered Paradise to its owner's hand.
addCard(Zone.BATTLEFIELD, playerA, "Undiscovered Paradise", 1);
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Honor Guard");
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/dies/OmnathLocusOfRageTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/dies/OmnathLocusOfRageTest.java
index 4921dfc33cd..ad134443413 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/dies/OmnathLocusOfRageTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/dies/OmnathLocusOfRageTest.java
@@ -45,7 +45,7 @@ public class OmnathLocusOfRageTest extends CardTestPlayerBase {
@Test
public void testDiesTriggeredAbility() {
// Landfall - Whenever a land enters the battlefield under your control, put a 5/5 red and green Elemental creature token onto the battlefield.
- // Whenever Omnath, Locus of Rage or another Elemental you control dies, Omnath deals 3 damage to target creature or player.
+ // Whenever Omnath, Locus of Rage or another Elemental you control dies, Omnath deals 3 damage to any target.
addCard(Zone.BATTLEFIELD, playerA, "Omnath, Locus of Rage", 1);
// Target player sacrifices a creature.
@@ -69,7 +69,7 @@ public class OmnathLocusOfRageTest extends CardTestPlayerBase {
@Test
public void testDiesTriggeredAbilityOnlyIfPresent() {
// Landfall - Whenever a land enters the battlefield under your control, put a 5/5 red and green Elemental creature token onto the battlefield.
- // Whenever Omnath, Locus of Rage or another Elemental you control dies, Omnath deals 3 damage to target creature or player.
+ // Whenever Omnath, Locus of Rage or another Elemental you control dies, Omnath deals 3 damage to any target.
addCard(Zone.BATTLEFIELD, playerA, "Omnath, Locus of Rage", 1);
addCard(Zone.BATTLEFIELD, playerA, "Lightning Elemental", 1); // 4/1 Elemental - Haste
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/dies/PutIntoGraveTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/dies/PutIntoGraveTest.java
index 25da2cad738..e60f338192e 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/dies/PutIntoGraveTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/dies/PutIntoGraveTest.java
@@ -48,7 +48,7 @@ public class PutIntoGraveTest extends CardTestPlayerBase {
// Destroy target artifact or enchantment. Its controller gains 4 life.
addCard(Zone.HAND, playerA, "Nature's Claim", 1);
- // {1}, {T}, Sacrifice Chromatic Star: Add one mana of any color to your mana pool.
+ // {1}, {T}, Sacrifice Chromatic Star: Add one mana of any color.
// When Chromatic Star is put into a graveyard from the battlefield, draw a card.
addCard(Zone.BATTLEFIELD, playerA, "Chromatic Star", 1);
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/dies/SupernaturalStaminaTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/dies/SupernaturalStaminaTest.java
index b3bc733a6ff..f0f40132b69 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/dies/SupernaturalStaminaTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/dies/SupernaturalStaminaTest.java
@@ -49,12 +49,12 @@ public class SupernaturalStaminaTest extends CardTestPlayerBase {
addCard(Zone.BATTLEFIELD, playerA, "Swamp", 2);
// When Channeler Initiate enters the battlefield, put three -1/-1 counters on target creature you control.
- // {T}, Remove a -1/-1 counter from Channeler Initiate: Add one mana of any color to your mana pool.
+ // {T}, Remove a -1/-1 counter from Channeler Initiate: Add one mana of any color.
addCard(Zone.HAND, playerA, "Channeler Initiate"); // Creature 3/4 {1}{G}
// Until end of turn, target creature gets +2/+0 and gains "When this creature dies, return it to the battlefield tapped under its owner's control."
addCard(Zone.HAND, playerA, "Supernatural Stamina"); // Instant {B}
- // Shock deals 2 damage to target creature or player.
+ // Shock deals 2 damage to any target.
addCard(Zone.HAND, playerA, "Shock"); // Instant {R}
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Channeler Initiate");
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/watchers/ZuberasTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/watchers/ZuberasTest.java
index 6561393c922..aab8d0787df 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/watchers/ZuberasTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/watchers/ZuberasTest.java
@@ -23,7 +23,7 @@ public class ZuberasTest extends CardTestPlayerBase {
* Ember-Fist Zubera
* Creature — Zubera Spirit 1/2, 1R (2)
- * When Ember-Fist Zubera dies, it deals damage to target creature or player
+ * When Ember-Fist Zubera dies, it deals damage to any target
* equal to the number of Zubera that died this turn.
* Floating-Dream Zubera
diff --git a/Mage.Tests/src/test/java/org/mage/test/commander/duel/AnafenzaTest.java b/Mage.Tests/src/test/java/org/mage/test/commander/duel/AnafenzaTest.java
index 3a9f0b4a9f6..ef1441ce5cd 100644
--- a/Mage.Tests/src/test/java/org/mage/test/commander/duel/AnafenzaTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/commander/duel/AnafenzaTest.java
@@ -104,7 +104,7 @@ public class AnafenzaTest extends CardTestCommanderDuelBase {
addCard(Zone.HAND, playerB, "Forest", 2);
// Landfall - Whenever a land enters the battlefield under your control, put a 5/5 red and green Elemental creature token onto the battlefield.
- // Whenever Omnath, Locus of Rage or another Elemental you control dies, Omnath deals 3 damage to target creature or player.
+ // Whenever Omnath, Locus of Rage or another Elemental you control dies, Omnath deals 3 damage to any target.
addCard(Zone.BATTLEFIELD, playerB, "Omnath, Locus of Rage", 1);
// Whenever Anafenza, the Foremost attacks, put a +1/+1 counter on another target tapped creature you control.
diff --git a/Mage.Tests/src/test/java/org/mage/test/commander/duel/CommanderManaReplacmentTest.java b/Mage.Tests/src/test/java/org/mage/test/commander/duel/CommanderManaReplacmentTest.java
index 2b82ad6c1cb..9d22e906267 100644
--- a/Mage.Tests/src/test/java/org/mage/test/commander/duel/CommanderManaReplacmentTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/commander/duel/CommanderManaReplacmentTest.java
@@ -60,7 +60,7 @@ public class CommanderManaReplacmentTest extends CardTestCommanderDuelBase {
*
* For example, I am playing a mono red deck and control a Mana Flare. You
* are playing a mono green deck and you tap a Forest for mana. You should
- * add GG to your mana pool, but instead, Xmage shows you adding 1G to your
+ * add GG, but instead, Xmage shows you adding 1G to your
* mana pool.
*/
@Test
diff --git a/Mage.Tests/src/test/java/org/mage/test/commander/duel/KaradorGhostChieftainTest.java b/Mage.Tests/src/test/java/org/mage/test/commander/duel/KaradorGhostChieftainTest.java
index 2aadd18d328..a5aea806b89 100644
--- a/Mage.Tests/src/test/java/org/mage/test/commander/duel/KaradorGhostChieftainTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/commander/duel/KaradorGhostChieftainTest.java
@@ -75,7 +75,7 @@ public class KaradorGhostChieftainTest extends CardTestCommanderDuelBase {
addCard(Zone.GRAVEYARD, playerA, "Silvercoat Lion", 2);
addCard(Zone.BATTLEFIELD, playerB, "Mountain", 4);
- // Lightning Blast deals 4 damage to target creature or player.
+ // Lightning Blast deals 4 damage to any target.
addCard(Zone.HAND, playerB, "Lightning Blast", 1);
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Karador, Ghost Chieftain");
@@ -100,7 +100,7 @@ public class KaradorGhostChieftainTest extends CardTestCommanderDuelBase {
addCard(Zone.GRAVEYARD, playerA, "Silvercoat Lion", 2);
addCard(Zone.BATTLEFIELD, playerB, "Mountain", 4);
- // Lightning Blast deals 4 damage to target creature or player.
+ // Lightning Blast deals 4 damage to any target.
addCard(Zone.HAND, playerB, "Lightning Blast", 3);
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Karador, Ghost Chieftain");
@@ -131,7 +131,7 @@ public class KaradorGhostChieftainTest extends CardTestCommanderDuelBase {
addCard(Zone.GRAVEYARD, playerA, "Silvercoat Lion", 15);
addCard(Zone.BATTLEFIELD, playerB, "Mountain", 4);
- // Lightning Blast deals 4 damage to target creature or player.
+ // Lightning Blast deals 4 damage to any target.
addCard(Zone.HAND, playerB, "Lightning Blast", 3);
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Karador, Ghost Chieftain");
diff --git a/Mage.Tests/src/test/java/org/mage/test/commander/duel/OpalPalaceTest.java b/Mage.Tests/src/test/java/org/mage/test/commander/duel/OpalPalaceTest.java
index 32bb080b886..b468c5c1941 100644
--- a/Mage.Tests/src/test/java/org/mage/test/commander/duel/OpalPalaceTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/commander/duel/OpalPalaceTest.java
@@ -50,7 +50,7 @@ public class OpalPalaceTest extends CardTestCommanderDuelBase {
addCard(Zone.BATTLEFIELD, playerA, "Forest", 4);
// {T}: Add {C}.
- // {1}, {T}: Add to your mana pool one mana of any color in your commander's color identity.
+ // {1}, {T}: Add one mana of any color in your commander's color identity.
// If you spend this mana to cast your commander, it enters the battlefield with a number of +1/+1 counters on it
// equal to the number of times it's been cast from the command zone this game.
addCard(Zone.BATTLEFIELD, playerA, "Opal Palace", 1);
diff --git a/Mage.Tests/src/test/java/org/mage/test/multiplayer/PlayerDiedStackTargetHandlingTest.java b/Mage.Tests/src/test/java/org/mage/test/multiplayer/PlayerDiedStackTargetHandlingTest.java
index 00c796abcb0..808ce5c696a 100644
--- a/Mage.Tests/src/test/java/org/mage/test/multiplayer/PlayerDiedStackTargetHandlingTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/multiplayer/PlayerDiedStackTargetHandlingTest.java
@@ -48,7 +48,7 @@ public class PlayerDiedStackTargetHandlingTest extends CardTestMultiPlayerBase {
public void TestDeadPlayerIsNoLongerValidTarget() {
addCard(Zone.BATTLEFIELD, playerA, "Plains", 2);
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 2);
- // Lightning Helix deals 3 damage to target creature or player and you gain 3 life.
+ // Lightning Helix deals 3 damage to any target and you gain 3 life.
addCard(Zone.HAND, playerA, "Lightning Helix", 2); // Instant {R}{W}
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Lightning Helix", playerD);
diff --git a/Mage.Tests/src/test/java/org/mage/test/multiplayer/PlayerLeftGameRangeAllTest.java b/Mage.Tests/src/test/java/org/mage/test/multiplayer/PlayerLeftGameRangeAllTest.java
index 3954e058572..c017d3975da 100644
--- a/Mage.Tests/src/test/java/org/mage/test/multiplayer/PlayerLeftGameRangeAllTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/multiplayer/PlayerLeftGameRangeAllTest.java
@@ -307,4 +307,47 @@ public class PlayerLeftGameRangeAllTest extends CardTestMultiPlayerBase {
assertLife(playerA, 4);
}
+
+ /**
+ * * 11/4/2015: In a multiplayer game, if Grasp of Fate's owner leaves the
+ * game, the exiled cards will return to the battlefield. Because the
+ * one-shot effect that returns the cards isn't an ability that goes on the
+ * stack, it won't cease to exist along with the leaving player's spells and
+ * abilities on the stack.
+ */
+ @Test
+ public void TestGraspOfFateReturn() {
+ addCard(Zone.BATTLEFIELD, playerA, "Plains", 3);
+ // When Grasp of Fate enters the battlefield, for each opponent, exile up to one target nonland permanent that player
+ // controls until Grasp of Fate leaves the battlefield.
+ addCard(Zone.HAND, playerA, "Grasp of Fate"); // Enchantment {1}{W}{W}
+
+ addCard(Zone.BATTLEFIELD, playerB, "Pillarfield Ox", 1);
+
+ addCard(Zone.HAND, playerC, "Lightning Bolt");
+ addCard(Zone.BATTLEFIELD, playerC, "Mountain", 1);
+ addCard(Zone.BATTLEFIELD, playerC, "Juggernaut", 1);
+
+ addCard(Zone.BATTLEFIELD, playerD, "Silvercoat Lion", 1);
+
+ castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Grasp of Fate");
+ addTarget(playerA, "Pillarfield Ox");
+ addTarget(playerA, "Juggernaut");
+ addTarget(playerA, "Silvercoat Lion");
+
+ castSpell(2, PhaseStep.BEGIN_COMBAT, playerC, "Lightning Bolt", playerA);
+
+ setStopAt(2, PhaseStep.POSTCOMBAT_MAIN);
+ execute();
+
+ assertGraveyardCount(playerC, "Lightning Bolt", 1);
+
+ assertLife(playerA, -1);
+ Assert.assertFalse("Player D is no longer in the game", playerA.isInGame());
+
+ assertPermanentCount(playerB, "Pillarfield Ox", 1);
+ assertPermanentCount(playerC, "Juggernaut", 1);
+ assertPermanentCount(playerD, "Silvercoat Lion", 1);
+
+ }
}
diff --git a/Mage.Tests/src/test/java/org/mage/test/rollback/DemonicPactTest.java b/Mage.Tests/src/test/java/org/mage/test/rollback/DemonicPactTest.java
index c9b2d123a9f..5f5b9bfb4b0 100644
--- a/Mage.Tests/src/test/java/org/mage/test/rollback/DemonicPactTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/rollback/DemonicPactTest.java
@@ -42,7 +42,7 @@ public class DemonicPactTest extends CardTestPlayerBase {
public void testModes() {
addCard(Zone.BATTLEFIELD, playerA, "Swamp", 4);
// At the beginning of your upkeep, choose one that hasn't been chosen
- // (1) - Demonic Pact deals 4 damage to target creature or player and you gain 4 life;
+ // (1) - Demonic Pact deals 4 damage to any target and you gain 4 life;
// (2) - Target opponent discards two cards
// (3) - Draw two cards
// (4) - You lose the game.
@@ -77,7 +77,7 @@ public class DemonicPactTest extends CardTestPlayerBase {
public void testModeAfterRollback() {
addCard(Zone.BATTLEFIELD, playerA, "Swamp", 4);
// At the beginning of your upkeep, choose one that hasn't been chosen
- // (1) - Demonic Pact deals 4 damage to target creature or player and you gain 4 life;
+ // (1) - Demonic Pact deals 4 damage to any target and you gain 4 life;
// (2) - Target opponent discards two cards
// (3) - Draw two cards
// (4) - You lose the game.
diff --git a/Mage.Tests/src/test/java/org/mage/test/serverside/base/MageTestPlayerBase.java b/Mage.Tests/src/test/java/org/mage/test/serverside/base/MageTestPlayerBase.java
index 1b8b73da2b8..37da99ab428 100644
--- a/Mage.Tests/src/test/java/org/mage/test/serverside/base/MageTestPlayerBase.java
+++ b/Mage.Tests/src/test/java/org/mage/test/serverside/base/MageTestPlayerBase.java
@@ -1,5 +1,14 @@
package org.mage.test.serverside.base;
+import java.io.File;
+import java.io.FileNotFoundException;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.Scanner;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
import mage.cards.Card;
import mage.cards.repository.CardInfo;
import mage.cards.repository.CardRepository;
@@ -23,12 +32,6 @@ import org.apache.log4j.Logger;
import org.junit.BeforeClass;
import org.mage.test.player.TestPlayer;
-import java.io.File;
-import java.io.FileNotFoundException;
-import java.util.*;
-import java.util.regex.Matcher;
-import java.util.regex.Pattern;
-
/**
* Base class for all tests.
*
@@ -158,7 +161,7 @@ public abstract class MageTestPlayerBase {
protected void parseScenario(String filename) throws FileNotFoundException {
parserState = ParserState.INIT;
File f = new File(filename);
- try(Scanner scanner = new Scanner(f)) {
+ try (Scanner scanner = new Scanner(f)) {
while (scanner.hasNextLine()) {
String line = scanner.nextLine().trim();
if (line == null || line.isEmpty() || line.startsWith("#")) {
diff --git a/Mage.Tests/src/test/java/org/mage/test/serverside/base/impl/CardTestPlayerAPIImpl.java b/Mage.Tests/src/test/java/org/mage/test/serverside/base/impl/CardTestPlayerAPIImpl.java
index c5a01a37418..d405956f83b 100644
--- a/Mage.Tests/src/test/java/org/mage/test/serverside/base/impl/CardTestPlayerAPIImpl.java
+++ b/Mage.Tests/src/test/java/org/mage/test/serverside/base/impl/CardTestPlayerAPIImpl.java
@@ -1248,6 +1248,7 @@ public abstract class CardTestPlayerAPIImpl extends MageTestPlayerBase implement
* are copies. For modal spells use a prefix with the mode number:
* mode=1Lightning Bolt^mode=2Silvercoat Lion
*/
+ // TODO: mode options doesn't work here (see BrutalExpulsionTest)
public void addTarget(TestPlayer player, String target) {
player.addTarget(target);
}
diff --git a/Mage.Tests/src/test/java/org/mage/test/utils/ManaOptionsTest.java b/Mage.Tests/src/test/java/org/mage/test/utils/ManaOptionsTest.java
index e77c5b400aa..2cfb533c4ca 100644
--- a/Mage.Tests/src/test/java/org/mage/test/utils/ManaOptionsTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/utils/ManaOptionsTest.java
@@ -108,7 +108,7 @@ public class ManaOptionsTest extends CardTestPlayerBase {
}
// Chromatic Sphere
- // {1}, {T}, Sacrifice Chromatic Sphere: Add one mana of any color to your mana pool. Draw a card.
+ // {1}, {T}, Sacrifice Chromatic Sphere: Add one mana of any color. Draw a card.
@Test
public void testChromaticSphere() {
addCard(Zone.BATTLEFIELD, playerA, "Plains", 2);
@@ -125,7 +125,7 @@ public class ManaOptionsTest extends CardTestPlayerBase {
}
// Orochi Leafcaller
- // {G}: Add one mana of any color to your mana pool.
+ // {G}: Add one mana of any color.
@Test
public void testOrochiLeafcaller() {
addCard(Zone.BATTLEFIELD, playerA, "Plains", 2);
@@ -143,7 +143,7 @@ public class ManaOptionsTest extends CardTestPlayerBase {
}
// Crystal Quarry
- // {T}: {1} Add to your mana pool.
+ // {T}: {1} Add .
// {5}, {T}: Add {W}{U}{B}{R}{G}.
@Test
public void testCrystalQuarry() {
@@ -162,7 +162,7 @@ public class ManaOptionsTest extends CardTestPlayerBase {
}
// Crystal Quarry
- // {T}: {1} Add to your mana pool.
+ // {T}: {1} Add .
// {5}, {T}: Add {W}{U}{B}{R}{G}.
@Test
public void testCrystalQuarry2() {
@@ -183,7 +183,7 @@ public class ManaOptionsTest extends CardTestPlayerBase {
// Nykthos, Shrine to Nyx
// {T}: Add {C}.
- // {2}, {T}: Choose a color. Add to your mana pool an amount of mana of that color equal to your devotion to that color. (Your devotion to a color is the number of mana symbols of that color in the mana costs of permanents you control.)
+ // {2}, {T}: Choose a color. Add an amount of mana of that color equal to your devotion to that color. (Your devotion to a color is the number of mana symbols of that color in the mana costs of permanents you control.)
@Test
public void testNykthos1() {
addCard(Zone.BATTLEFIELD, playerA, "Sedge Scorpion", 4);
@@ -266,14 +266,14 @@ public class ManaOptionsTest extends CardTestPlayerBase {
// if mana ability cost another mana then if replaced in mana cost
// example:
// 1x forest
- // 1x Chromatic Star ({1}, {T}, Sacrifice Chromatic Star: Add one mana of any color to your mana pool.)
+ // 1x Chromatic Star ({1}, {T}, Sacrifice Chromatic Star: Add one mana of any color.)
// give {G}{Any}, but after pay it transform to {Any} (1 green will be pay)
// That's why there are can be duplicated records in getManaAvailable
- // {1}, {T}, Sacrifice Chromatic Star: Add one mana of any color to your mana pool.
+ // {1}, {T}, Sacrifice Chromatic Star: Add one mana of any color.
// When Chromatic Star is put into a graveyard from the battlefield, draw a card.
addCard(Zone.BATTLEFIELD, playerA, "Chromatic Star", 1);
- // {1}, {T}, Sacrifice Chromatic Sphere: Add one mana of any color to your mana pool. Draw a card.
+ // {1}, {T}, Sacrifice Chromatic Sphere: Add one mana of any color. Draw a card.
addCard(Zone.BATTLEFIELD, playerA, "Chromatic Sphere", 1);
// {T}: Add {C}. If you control an Urza's Mine and an Urza's Power-Plant, add {C}{C}{C} instead.
addCard(Zone.BATTLEFIELD, playerA, "Urza's Tower", 1);
diff --git a/Mage/src/main/java/mage/ManaSymbol.java b/Mage/src/main/java/mage/ManaSymbol.java
index 4e0c0fe32bc..35b692de7b7 100644
--- a/Mage/src/main/java/mage/ManaSymbol.java
+++ b/Mage/src/main/java/mage/ManaSymbol.java
@@ -23,7 +23,7 @@ package mage;
*
* 107.4c. Numeral symbols (such as {1}) and variable symbols (such as {X}) can
* also represent colorless mana if they appear in the effect of a spell or
- * ability that reads "add [mana symbol] to your mana pool" or something similar.
+ * ability that reads "add [mana symbol]" or something similar.
* (See rule 107.3e.)
*
* 107.4d. The symbol {0} represents zero mana and is used as a placeholder for a
diff --git a/Mage/src/main/java/mage/abilities/AbilitiesImpl.java b/Mage/src/main/java/mage/abilities/AbilitiesImpl.java
index a7a10a32365..4b99d2d8ed0 100644
--- a/Mage/src/main/java/mage/abilities/AbilitiesImpl.java
+++ b/Mage/src/main/java/mage/abilities/AbilitiesImpl.java
@@ -100,7 +100,7 @@ public class AbilitiesImpl extends ArrayList implements Ab
for (Cost cost : ability.getCosts()) {
if (cost.getText() != null && !cost.getText().isEmpty()) {
if (!cost.getText().startsWith("As an additional cost")) {
- sbRule.append("As an additional cost to cast {this}, ");
+ sbRule.append("As an additional cost to cast this spell, ");
}
sbRule.append(cost.getText()).append(". ");
}
diff --git a/Mage/src/main/java/mage/abilities/common/SagaAbility.java b/Mage/src/main/java/mage/abilities/common/SagaAbility.java
index 37b2442f72e..6a37d2cdadc 100644
--- a/Mage/src/main/java/mage/abilities/common/SagaAbility.java
+++ b/Mage/src/main/java/mage/abilities/common/SagaAbility.java
@@ -53,6 +53,7 @@ public class SagaAbility extends TriggeredAbilityImpl {
public SagaAbility(Card card, SagaChapter maxChapter) {
super(Zone.ALL, new AddCountersSourceEffect(CounterType.LORE.createInstance()), false);
+ this.usesStack = false;
this.maxChapter = maxChapter;
this.setRuleVisible(false);
((CardImpl) card).addAbility(new SagaAddCounterAbility(maxChapter));
diff --git a/Mage/src/main/java/mage/abilities/common/delayed/OnLeaveReturnExiledToBattlefieldAbility.java b/Mage/src/main/java/mage/abilities/common/delayed/OnLeaveReturnExiledToBattlefieldAbility.java
index af95c8eaeed..8efd754402e 100644
--- a/Mage/src/main/java/mage/abilities/common/delayed/OnLeaveReturnExiledToBattlefieldAbility.java
+++ b/Mage/src/main/java/mage/abilities/common/delayed/OnLeaveReturnExiledToBattlefieldAbility.java
@@ -49,6 +49,12 @@ import mage.util.CardUtil;
*
* Uses no stack
*
+ * 11/4/2015: In a multiplayer game, if Grasp of Fate's owner leaves the game,
+ * the exiled cards will return to the battlefield. Because the one-shot effect
+ * that returns the cards isn't an ability that goes on the stack, it won't
+ * cease to exist along with the leaving player's spells and abilities on the
+ * stack.
+ *
* @author LevelX2
*/
public class OnLeaveReturnExiledToBattlefieldAbility extends DelayedTriggeredAbility {
diff --git a/Mage/src/main/java/mage/abilities/costs/AlternativeCostSourceAbility.java b/Mage/src/main/java/mage/abilities/costs/AlternativeCostSourceAbility.java
index 993aa0959da..88e76bd1409 100644
--- a/Mage/src/main/java/mage/abilities/costs/AlternativeCostSourceAbility.java
+++ b/Mage/src/main/java/mage/abilities/costs/AlternativeCostSourceAbility.java
@@ -228,7 +228,7 @@ public class AlternativeCostSourceAbility extends StaticAbility implements Alter
if (condition != null) {
sb.append(condition.toString());
if (alternateCosts.size() > 1) {
- sb.append(", rather than pay {source}'s mana cost, ");
+ sb.append(", rather than pay this spell's mana cost, ");
} else {
sb.append(", you may ");
}
@@ -254,7 +254,7 @@ public class AlternativeCostSourceAbility extends StaticAbility implements Alter
++numberCosts;
}
if (condition == null || alternateCosts.size() == 1) {
- sb.append(" rather than pay {source}'s mana cost");
+ sb.append(" rather than pay this spell's mana cost");
} else if (alternateCosts.isEmpty()) {
sb.append("cast {this} without paying its mana cost");
}
diff --git a/Mage/src/main/java/mage/abilities/costs/common/DiscardXTargetCost.java b/Mage/src/main/java/mage/abilities/costs/common/DiscardXTargetCost.java
index e41df6c899c..474b8bb1cc7 100644
--- a/Mage/src/main/java/mage/abilities/costs/common/DiscardXTargetCost.java
+++ b/Mage/src/main/java/mage/abilities/costs/common/DiscardXTargetCost.java
@@ -49,7 +49,7 @@ public class DiscardXTargetCost extends VariableCostImpl {
public DiscardXTargetCost(FilterCard filter, boolean additionalCostText) {
super(filter.getMessage() + " to discard");
- this.text = (additionalCostText ? "As an additional cost to cast {source}, discard " : "Discard ") + xText + ' ' + filter.getMessage();
+ this.text = (additionalCostText ? "as an additional cost to cast this spell, discard " : "Discard ") + xText + ' ' + filter.getMessage();
this.filter = filter;
}
diff --git a/Mage/src/main/java/mage/abilities/costs/common/ExileXFromYourGraveCost.java b/Mage/src/main/java/mage/abilities/costs/common/ExileXFromYourGraveCost.java
index 317b5e45ace..e6d107840a4 100644
--- a/Mage/src/main/java/mage/abilities/costs/common/ExileXFromYourGraveCost.java
+++ b/Mage/src/main/java/mage/abilities/costs/common/ExileXFromYourGraveCost.java
@@ -50,7 +50,7 @@ public class ExileXFromYourGraveCost extends VariableCostImpl {
public ExileXFromYourGraveCost(FilterCard filter, boolean additionalCostText) {
super(filter.getMessage() + " to exile");
this.filter = filter;
- this.text = (additionalCostText ? "As an additional cost to cast {source}, exile " : "Exile ") + xText + ' ' + filter.getMessage();
+ this.text = (additionalCostText ? "as an additional cost to cast this spell, exile " : "Exile ") + xText + ' ' + filter.getMessage();
}
public ExileXFromYourGraveCost(final ExileXFromYourGraveCost cost) {
diff --git a/Mage/src/main/java/mage/abilities/costs/common/PayVariableLifeCost.java b/Mage/src/main/java/mage/abilities/costs/common/PayVariableLifeCost.java
index 5577627230f..f6a90a48d76 100644
--- a/Mage/src/main/java/mage/abilities/costs/common/PayVariableLifeCost.java
+++ b/Mage/src/main/java/mage/abilities/costs/common/PayVariableLifeCost.java
@@ -47,7 +47,7 @@ public class PayVariableLifeCost extends VariableCostImpl {
public PayVariableLifeCost(boolean additionalCostText) {
super("life to pay");
- this.text = new StringBuilder(additionalCostText ? "As an additional cost to cast {source}, pay ":"Pay ")
+ this.text = new StringBuilder(additionalCostText ? "as an additional cost to cast this spell, pay ":"Pay ")
.append(xText).append(' ').append("life").toString();
}
diff --git a/Mage/src/main/java/mage/abilities/costs/common/SacrificeXTargetCost.java b/Mage/src/main/java/mage/abilities/costs/common/SacrificeXTargetCost.java
index e83014b7964..1551b908233 100644
--- a/Mage/src/main/java/mage/abilities/costs/common/SacrificeXTargetCost.java
+++ b/Mage/src/main/java/mage/abilities/costs/common/SacrificeXTargetCost.java
@@ -48,7 +48,7 @@ public class SacrificeXTargetCost extends VariableCostImpl {
public SacrificeXTargetCost(FilterControlledPermanent filter, boolean additionalCostText) {
super(filter.getMessage() + " to sacrifice");
- this.text = (additionalCostText ? "As an additional cost to cast {source}, sacrifice " : "Sacrifice ") + xText + ' ' + filter.getMessage();
+ this.text = (additionalCostText ? "as an additional cost to cast this spell, sacrifice " : "Sacrifice ") + xText + ' ' + filter.getMessage();
this.filter = filter;
}
diff --git a/Mage/src/main/java/mage/abilities/costs/common/TapVariableTargetCost.java b/Mage/src/main/java/mage/abilities/costs/common/TapVariableTargetCost.java
index 5f2bc106504..bb4f0d5a9ac 100644
--- a/Mage/src/main/java/mage/abilities/costs/common/TapVariableTargetCost.java
+++ b/Mage/src/main/java/mage/abilities/costs/common/TapVariableTargetCost.java
@@ -50,7 +50,7 @@ public class TapVariableTargetCost extends VariableCostImpl {
public TapVariableTargetCost(FilterControlledPermanent filter, boolean additionalCostText, String xText) {
super(xText, new StringBuilder(filter.getMessage()).append(" to tap").toString());
this.filter = filter;
- this.text = new StringBuilder(additionalCostText ? "As an additional cost to cast {source}, tap ":"Tap ")
+ this.text = new StringBuilder(additionalCostText ? "as an additional cost to cast this spell, tap ":"Tap ")
.append(this.xText).append(' ').append(filter.getMessage()).toString();
}
diff --git a/Mage/src/main/java/mage/abilities/effects/common/AddConditionalManaEffect.java b/Mage/src/main/java/mage/abilities/effects/common/AddConditionalManaEffect.java
index 2e06e8f1bb3..b3dedd8d6c5 100644
--- a/Mage/src/main/java/mage/abilities/effects/common/AddConditionalManaEffect.java
+++ b/Mage/src/main/java/mage/abilities/effects/common/AddConditionalManaEffect.java
@@ -24,7 +24,7 @@ public class AddConditionalManaEffect extends ManaEffect {
super();
this.mana = mana;
this.manaBuilder = manaBuilder;
- staticText = "Add " + this.mana.toString() + " to your mana pool. " + manaBuilder.getRule();
+ staticText = "Add " + this.mana.toString() + ". " + manaBuilder.getRule();
}
public AddConditionalManaEffect(final AddConditionalManaEffect effect) {
diff --git a/Mage/src/main/java/mage/abilities/effects/common/AddConditionalManaOfAnyColorEffect.java b/Mage/src/main/java/mage/abilities/effects/common/AddConditionalManaOfAnyColorEffect.java
index 2bf737ab415..3f683a25de9 100644
--- a/Mage/src/main/java/mage/abilities/effects/common/AddConditionalManaOfAnyColorEffect.java
+++ b/Mage/src/main/java/mage/abilities/effects/common/AddConditionalManaOfAnyColorEffect.java
@@ -66,7 +66,7 @@ public class AddConditionalManaOfAnyColorEffect extends ManaEffect {
+ (oneChoice ? "of any"
+ (amount instanceof StaticValue && (((StaticValue) amount).toString()).equals("1") ? "" : " one")
+ " color" : "in any combination of colors")
- + " to your mana pool. " + manaBuilder.getRule();
+ + ". " + manaBuilder.getRule();
}
public AddConditionalManaOfAnyColorEffect(final AddConditionalManaOfAnyColorEffect effect) {
diff --git a/Mage/src/main/java/mage/abilities/effects/common/AddManaInAnyCombinationEffect.java b/Mage/src/main/java/mage/abilities/effects/common/AddManaInAnyCombinationEffect.java
index 31ec359dc0e..0bb378b1edb 100644
--- a/Mage/src/main/java/mage/abilities/effects/common/AddManaInAnyCombinationEffect.java
+++ b/Mage/src/main/java/mage/abilities/effects/common/AddManaInAnyCombinationEffect.java
@@ -139,7 +139,7 @@ public class AddManaInAnyCombinationEffect extends ManaEffect {
sb.append('{').append(coloredManaSymbol.toString()).append('}');
}
}
- sb.append(" to your mana pool");
+ sb.append("");
return sb.toString();
}
}
diff --git a/Mage/src/main/java/mage/abilities/effects/common/AddManaOfAnyColorEffect.java b/Mage/src/main/java/mage/abilities/effects/common/AddManaOfAnyColorEffect.java
index 0e9127e7091..bf66ff3607b 100644
--- a/Mage/src/main/java/mage/abilities/effects/common/AddManaOfAnyColorEffect.java
+++ b/Mage/src/main/java/mage/abilities/effects/common/AddManaOfAnyColorEffect.java
@@ -69,7 +69,7 @@ public class AddManaOfAnyColorEffect extends BasicManaEffect {
public boolean apply(Game game, Ability source) {
Player controller = game.getPlayer(source.getControllerId());
if (controller != null) {
- String mes = String.format("Select color of %d mana to add it to your mana pool", this.amount);
+ String mes = String.format("Select color of %d mana to add it", this.amount);
ChoiceColor choice = new ChoiceColor(true, mes, game.getObject(source.getSourceId()));
if (controller.choose(outcome, choice, game)) {
if (choice.getColor() == null) {
diff --git a/Mage/src/main/java/mage/abilities/effects/common/AddManaToManaPoolSourceControllerEffect.java b/Mage/src/main/java/mage/abilities/effects/common/AddManaToManaPoolSourceControllerEffect.java
index b8000cd4237..fe3e3195f61 100644
--- a/Mage/src/main/java/mage/abilities/effects/common/AddManaToManaPoolSourceControllerEffect.java
+++ b/Mage/src/main/java/mage/abilities/effects/common/AddManaToManaPoolSourceControllerEffect.java
@@ -24,7 +24,7 @@ public class AddManaToManaPoolSourceControllerEffect extends OneShotEffect {
public AddManaToManaPoolSourceControllerEffect(Mana mana) {
super(Outcome.PutManaInPool);
this.mana = mana;
- this.staticText = "Add " + mana.toString() + " to your mana pool";
+ this.staticText = "Add " + mana.toString() + "";
}
public AddManaToManaPoolSourceControllerEffect(final AddManaToManaPoolSourceControllerEffect effect) {
diff --git a/Mage/src/main/java/mage/abilities/effects/common/DamageMultiEffect.java b/Mage/src/main/java/mage/abilities/effects/common/DamageMultiEffect.java
index 7450df74c70..a45e86f71b3 100644
--- a/Mage/src/main/java/mage/abilities/effects/common/DamageMultiEffect.java
+++ b/Mage/src/main/java/mage/abilities/effects/common/DamageMultiEffect.java
@@ -97,7 +97,7 @@ public class DamageMultiEffect extends OneShotEffect {
if (staticText != null && !staticText.isEmpty()) {
return staticText;
}
- return this.sourceName + " deals " + amount.toString() + " damage divided as you choose among any number of target " + mode.getTargets().get(0).getTargetName();
+ return this.sourceName + " deals " + amount.toString() + " damage divided as you choose among any number of " + mode.getTargets().get(0).getTargetName();
}
public String getSourceName() {
diff --git a/Mage/src/main/java/mage/abilities/effects/common/ExileGraveyardAllPlayersEffect.java b/Mage/src/main/java/mage/abilities/effects/common/ExileGraveyardAllPlayersEffect.java
index be28efaa8c0..1674a7bb4e4 100644
--- a/Mage/src/main/java/mage/abilities/effects/common/ExileGraveyardAllPlayersEffect.java
+++ b/Mage/src/main/java/mage/abilities/effects/common/ExileGraveyardAllPlayersEffect.java
@@ -74,7 +74,7 @@ public class ExileGraveyardAllPlayersEffect extends OneShotEffect {
@Override
public ExileGraveyardAllPlayersEffect copy() {
- return new ExileGraveyardAllPlayersEffect();
+ return new ExileGraveyardAllPlayersEffect(this);
}
@Override
diff --git a/Mage/src/main/java/mage/abilities/effects/common/LookLibraryAndPickControllerEffect.java b/Mage/src/main/java/mage/abilities/effects/common/LookLibraryAndPickControllerEffect.java
index c0606e874f9..ef9cb95b64d 100644
--- a/Mage/src/main/java/mage/abilities/effects/common/LookLibraryAndPickControllerEffect.java
+++ b/Mage/src/main/java/mage/abilities/effects/common/LookLibraryAndPickControllerEffect.java
@@ -272,7 +272,7 @@ public class LookLibraryAndPickControllerEffect extends LookLibraryControllerEff
if (anyOrder) {
sb.append(" in any order");
} else {
- sb.append(" in random order");
+ sb.append(" in a random order");
}
break;
case HAND:
@@ -338,11 +338,11 @@ public class LookLibraryAndPickControllerEffect extends LookLibraryControllerEff
} else {
sb.append("on the bottom");
}
- sb.append(" of your libary in ");
+ sb.append(" of your library in ");
if (anyOrder) {
sb.append("any");
} else {
- sb.append("random");
+ sb.append("a random");
}
sb.append(" order");
} else if (targetZoneLookedCards == Zone.GRAVEYARD) {
diff --git a/Mage/src/main/java/mage/abilities/effects/common/continuous/BecomesColorTargetEffect.java b/Mage/src/main/java/mage/abilities/effects/common/continuous/BecomesColorTargetEffect.java
index 94b66f0b86d..6820e727ff4 100644
--- a/Mage/src/main/java/mage/abilities/effects/common/continuous/BecomesColorTargetEffect.java
+++ b/Mage/src/main/java/mage/abilities/effects/common/continuous/BecomesColorTargetEffect.java
@@ -41,6 +41,8 @@ import mage.constants.Layer;
import mage.constants.Outcome;
import mage.constants.SubLayer;
import mage.game.Game;
+import mage.game.permanent.Permanent;
+import mage.game.stack.Spell;
import mage.players.Player;
/**
@@ -106,8 +108,12 @@ public class BecomesColorTargetEffect extends ContinuousEffectImpl {
for (UUID targetId : targetPointer.getTargets(game, source)) {
MageObject targetObject = game.getObject(targetId);
if (targetObject != null) {
- objectFound = true;
- targetObject.getColor(game).setColor(setColor);
+ if (targetObject instanceof Spell || targetObject instanceof Permanent) {
+ objectFound = true;
+ targetObject.getColor(game).setColor(setColor);
+ } else {
+ objectFound = false;
+ }
}
}
if (!objectFound && this.getDuration() == Duration.Custom) {
diff --git a/Mage/src/main/java/mage/abilities/effects/common/continuous/BecomesCreatureAttachedEffect.java b/Mage/src/main/java/mage/abilities/effects/common/continuous/BecomesCreatureAttachedEffect.java
index 69b4f0f1c72..aca32daee2d 100644
--- a/Mage/src/main/java/mage/abilities/effects/common/continuous/BecomesCreatureAttachedEffect.java
+++ b/Mage/src/main/java/mage/abilities/effects/common/continuous/BecomesCreatureAttachedEffect.java
@@ -120,7 +120,7 @@ public class BecomesCreatureAttachedEffect extends ContinuousEffectImpl {
permanent.getColor(game).setRed(false);
}
if (token.getColor(game).hasColor()) {
- permanent.getColor(game).setColor(token.getColor(game));
+ permanent.getColor(game).addColor(token.getColor(game));
}
}
break;
diff --git a/Mage/src/main/java/mage/abilities/keyword/SpliceOntoArcaneAbility.java b/Mage/src/main/java/mage/abilities/keyword/SpliceOntoArcaneAbility.java
index b21ebe7d896..0a4f96049be 100644
--- a/Mage/src/main/java/mage/abilities/keyword/SpliceOntoArcaneAbility.java
+++ b/Mage/src/main/java/mage/abilities/keyword/SpliceOntoArcaneAbility.java
@@ -73,7 +73,7 @@ import java.util.Iterator;
* on the stack, not the card from which the text was copied.
*
* Example: Glacial Ray is a red card with splice onto Arcane that reads, "Glacial
- * Ray deals 2 damage to target creature or player." Suppose Glacial Ray is spliced
+ * Ray deals 2 damage to any target." Suppose Glacial Ray is spliced
* onto Reach Through Mists, a blue spell. The spell is still blue, and Reach Through
* Mists deals the damage. This means that the ability can target a creature with
* protection from red and deal 2 damage to that creature.
diff --git a/Mage/src/main/java/mage/abilities/mana/AnyColorLandsProduceManaAbility.java b/Mage/src/main/java/mage/abilities/mana/AnyColorLandsProduceManaAbility.java
index a2aff7f624a..b2f4056fe18 100644
--- a/Mage/src/main/java/mage/abilities/mana/AnyColorLandsProduceManaAbility.java
+++ b/Mage/src/main/java/mage/abilities/mana/AnyColorLandsProduceManaAbility.java
@@ -94,7 +94,7 @@ class AnyColorLandsProduceManaEffect extends ManaEffect {
this.onlyColors = onlyColors;
filter.add(new ControllerPredicate(targetController));
String text = targetController == TargetController.OPPONENT ? "an opponent controls" : "you control";
- staticText = "Add to your mana pool one mana of any " + (this.onlyColors ? "color" : "type") + " that a land " + text + " could produce";
+ staticText = "Add one mana of any " + (this.onlyColors ? "color" : "type") + " that a land " + text + " could produce";
}
public AnyColorLandsProduceManaEffect(final AnyColorLandsProduceManaEffect effect) {
diff --git a/Mage/src/main/java/mage/abilities/mana/CommanderColorIdentityManaAbility.java b/Mage/src/main/java/mage/abilities/mana/CommanderColorIdentityManaAbility.java
index 978c0fd913b..0af4d691c6a 100644
--- a/Mage/src/main/java/mage/abilities/mana/CommanderColorIdentityManaAbility.java
+++ b/Mage/src/main/java/mage/abilities/mana/CommanderColorIdentityManaAbility.java
@@ -108,7 +108,7 @@ class CommanderIdentityManaEffect extends ManaEffect {
public CommanderIdentityManaEffect() {
super();
- this.staticText = "Add to your mana pool one mana of any color in your commander's color identity";
+ this.staticText = "Add one mana of any color in your commander's color identity";
}
public CommanderIdentityManaEffect(final CommanderIdentityManaEffect effect) {
diff --git a/Mage/src/main/java/mage/abilities/mana/ConditionalAnyColorManaAbility.java b/Mage/src/main/java/mage/abilities/mana/ConditionalAnyColorManaAbility.java
index a0fbbcc4c60..916997a34c3 100644
--- a/Mage/src/main/java/mage/abilities/mana/ConditionalAnyColorManaAbility.java
+++ b/Mage/src/main/java/mage/abilities/mana/ConditionalAnyColorManaAbility.java
@@ -40,7 +40,7 @@ import mage.game.Game;
/**
* For cards like:
- * {tap}: Add three mana of any one color to your mana pool. Spend this mana only to cast creature spells.
+ * {tap}: Add three mana of any one color. Spend this mana only to cast creature spells.
*
* @author noxx
*/
diff --git a/Mage/src/main/java/mage/constants/Planes.java b/Mage/src/main/java/mage/constants/Planes.java
index 3b8749d38a5..57b31d49dcb 100644
--- a/Mage/src/main/java/mage/constants/Planes.java
+++ b/Mage/src/main/java/mage/constants/Planes.java
@@ -46,6 +46,7 @@ public enum Planes {
PLANE_TAZEEM("TazeemPlane"),
PLANE_THE_DARK_BARONY("TheDarkBaronyPlane"),
PLANE_THE_EON_FOG("TheEonFogPlane"),
+ PLANE_THE_GREAT_FOREST("TheGreatForestPlane"),
PLANE_THE_ZEPHYR_MAZE_FOG("TheZephyrMazePlane"),
PLANE_TRUGA_JUNGLE("TrugaJunglePlane"),
PLANE_TRAIL_OF_THE_MAGE_RINGS("TrailOfTheMageRingsPlane"),
diff --git a/Mage/src/main/java/mage/filter/FilterPermanent.java b/Mage/src/main/java/mage/filter/FilterPermanent.java
index 1f4acaa17ac..8201680d040 100644
--- a/Mage/src/main/java/mage/filter/FilterPermanent.java
+++ b/Mage/src/main/java/mage/filter/FilterPermanent.java
@@ -29,6 +29,7 @@ package mage.filter;
import java.util.ArrayList;
import java.util.List;
+import java.util.Set;
import java.util.UUID;
import mage.constants.SubType;
@@ -66,6 +67,13 @@ public class FilterPermanent extends FilterObject implements FilterIn
this.add(new SubtypePredicate(subtype));
}
+ public FilterPermanent(Set subtypesList, String name) {
+ super(name);
+ for (SubType subtype: subtypesList) {
+ this.add(new SubtypePredicate(subtype));
+ }
+ }
+
@Override
public boolean checkObjectClass(Object object) {
return object instanceof Permanent;
diff --git a/Mage/src/main/java/mage/filter/StaticFilters.java b/Mage/src/main/java/mage/filter/StaticFilters.java
index 5d6d929911c..4129474dec9 100644
--- a/Mage/src/main/java/mage/filter/StaticFilters.java
+++ b/Mage/src/main/java/mage/filter/StaticFilters.java
@@ -168,6 +168,12 @@ public final class StaticFilters {
FILTER_CONTROLLED_PERMANENT_LAND.setLockedFilter(true);
}
+ public static final FilterControlledPermanent FILTER_CONTROLLED_PERMANENT_LANDS = new FilterControlledLandPermanent("lands you control");
+
+ static {
+ FILTER_CONTROLLED_PERMANENT_LANDS.setLockedFilter(true);
+ }
+
public static final FilterPermanent FILTER_OPPONENTS_PERMANENT = new FilterPermanent("permanent an opponent controls");
static {
diff --git a/Mage/src/main/java/mage/filter/common/FilterOpponentOrPlaneswalker.java b/Mage/src/main/java/mage/filter/common/FilterOpponentOrPlaneswalker.java
index c191ec868e1..807c110f80a 100644
--- a/Mage/src/main/java/mage/filter/common/FilterOpponentOrPlaneswalker.java
+++ b/Mage/src/main/java/mage/filter/common/FilterOpponentOrPlaneswalker.java
@@ -6,7 +6,6 @@
package mage.filter.common;
import mage.filter.FilterOpponent;
-import mage.filter.FilterPermanent;
/**
*
@@ -19,7 +18,7 @@ public class FilterOpponentOrPlaneswalker extends FilterPermanentOrPlayer {
}
public FilterOpponentOrPlaneswalker(String name) {
- super(name, new FilterPermanent(), new FilterOpponent());
+ super(name, new FilterPlaneswalkerPermanent(), new FilterOpponent());
}
public FilterOpponentOrPlaneswalker(final FilterOpponentOrPlaneswalker filter) {
diff --git a/Mage/src/main/java/mage/filter/common/FilterPlayerOrPlaneswalker.java b/Mage/src/main/java/mage/filter/common/FilterPlayerOrPlaneswalker.java
index 74e57113231..2ba0c124772 100644
--- a/Mage/src/main/java/mage/filter/common/FilterPlayerOrPlaneswalker.java
+++ b/Mage/src/main/java/mage/filter/common/FilterPlayerOrPlaneswalker.java
@@ -5,7 +5,6 @@
*/
package mage.filter.common;
-import mage.filter.FilterPermanent;
import mage.filter.FilterPlayer;
/**
@@ -19,7 +18,7 @@ public class FilterPlayerOrPlaneswalker extends FilterPermanentOrPlayer {
}
public FilterPlayerOrPlaneswalker(String name) {
- super(name, new FilterPermanent(), new FilterPlayer());
+ super(name, new FilterPlaneswalkerPermanent(), new FilterPlayer());
}
public FilterPlayerOrPlaneswalker(final FilterPlayerOrPlaneswalker filter) {
diff --git a/Mage/src/main/java/mage/game/GameImpl.java b/Mage/src/main/java/mage/game/GameImpl.java
index 2514565d979..9a3375fd2b9 100644
--- a/Mage/src/main/java/mage/game/GameImpl.java
+++ b/Mage/src/main/java/mage/game/GameImpl.java
@@ -2493,6 +2493,7 @@ public abstract class GameImpl implements Game, Serializable {
return;
}
//20100423 - 800.4a
+ Set toOutside = new HashSet<>();
for (Iterator it = getBattlefield().getAllPermanents().iterator(); it.hasNext();) {
Permanent perm = it.next();
if (perm.getOwnerId().equals(playerId)) {
@@ -2511,7 +2512,8 @@ public abstract class GameImpl implements Game, Serializable {
if (perm.isCreature() && this.getCombat() != null) {
perm.removeFromCombat(this, true);
}
- it.remove();
+ toOutside.add(perm);
+// it.remove();
} else if (perm.getControllerId().equals(player.getId())) {
// and any effects which give that player control of any objects or players end
Effects:
@@ -2531,6 +2533,18 @@ public abstract class GameImpl implements Game, Serializable {
}
}
}
+ // needed to send event that permanent leaves the battlefield to allow non stack effects to execute
+ player.moveCards(toOutside, Zone.OUTSIDE, null, this);
+ // triggered abilities that don't use the stack have to be executed
+ List abilities = state.getTriggered(player.getId());
+ for (Iterator it = abilities.iterator(); it.hasNext();) {
+ TriggeredAbility triggeredAbility = it.next();
+ if (!triggeredAbility.isUsesStack()) {
+ state.removeTriggeredAbility(triggeredAbility);
+ player.triggerAbility(triggeredAbility, this);
+ it.remove();
+ }
+ }
// Then, if that player controlled any objects on the stack not represented by cards, those objects cease to exist.
this.getState().getContinuousEffects().removeInactiveEffects(this);
getStack().removeIf(object -> object.getControllerId().equals(playerId));
diff --git a/Mage/src/main/java/mage/game/command/emblems/ArlinnEmbracedByTheMoonEmblem.java b/Mage/src/main/java/mage/game/command/emblems/ArlinnEmbracedByTheMoonEmblem.java
index 053b9413a29..1357c4180a8 100644
--- a/Mage/src/main/java/mage/game/command/emblems/ArlinnEmbracedByTheMoonEmblem.java
+++ b/Mage/src/main/java/mage/game/command/emblems/ArlinnEmbracedByTheMoonEmblem.java
@@ -48,7 +48,7 @@ import mage.target.common.TargetAnyTarget;
* @author spjspj
*/
public class ArlinnEmbracedByTheMoonEmblem extends Emblem {
- // "Creatures you control have haste and '{T}: This creature deals damage equal to its power to target creature or player.'"
+ // "Creatures you control have haste and '{T}: This creature deals damage equal to its power to any target.'"
public ArlinnEmbracedByTheMoonEmblem() {
this.setName("Emblem Arlinn");
@@ -57,11 +57,11 @@ public class ArlinnEmbracedByTheMoonEmblem extends Emblem {
effect.setText("Creatures you control have haste");
Ability ability = new SimpleStaticAbility(Zone.COMMAND, effect);
Effect effect2 = new DamageTargetEffect(new SourcePermanentPowerCount());
- effect2.setText("This creature deals damage equal to its power to target creature or player");
+ effect2.setText("This creature deals damage equal to its power to any target");
Ability ability2 = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect2, new TapSourceCost());
ability2.addTarget(new TargetAnyTarget());
effect = new GainAbilityControlledEffect(ability2, Duration.EndOfGame, filter);
- effect.setText("and '{T}: This creature deals damage equal to its power to target creature or player");
+ effect.setText("and '{T}: This creature deals damage equal to its power to any target");
ability.addEffect(effect);
this.getAbilities().add(ability);
}
diff --git a/Mage/src/main/java/mage/game/command/emblems/ChandraTorchOfDefianceEmblem.java b/Mage/src/main/java/mage/game/command/emblems/ChandraTorchOfDefianceEmblem.java
index 8b10b8765ea..5d1dbec7dd8 100644
--- a/Mage/src/main/java/mage/game/command/emblems/ChandraTorchOfDefianceEmblem.java
+++ b/Mage/src/main/java/mage/game/command/emblems/ChandraTorchOfDefianceEmblem.java
@@ -42,11 +42,11 @@ import mage.target.common.TargetAnyTarget;
*/
public class ChandraTorchOfDefianceEmblem extends Emblem {
- // You get an emblem with "Whenever you cast a spell, this emblem deals 5 damage to target creature or player."
+ // You get an emblem with "Whenever you cast a spell, this emblem deals 5 damage to any target."
public ChandraTorchOfDefianceEmblem() {
this.setName("Emblem Chandra");
Effect effect = new DamageTargetEffect(5);
- effect.setText("this emblem deals 5 damage to target creature or player");
+ effect.setText("this emblem deals 5 damage to any target");
Ability ability = new SpellCastControllerTriggeredAbility(Zone.COMMAND, effect, new FilterSpell("a spell"), false, false);
ability.addTarget(new TargetAnyTarget());
getAbilities().add(ability);
diff --git a/Mage/src/main/java/mage/game/command/emblems/KothOfTheHammerEmblem.java b/Mage/src/main/java/mage/game/command/emblems/KothOfTheHammerEmblem.java
index 29e899db914..65a25c486c3 100644
--- a/Mage/src/main/java/mage/game/command/emblems/KothOfTheHammerEmblem.java
+++ b/Mage/src/main/java/mage/game/command/emblems/KothOfTheHammerEmblem.java
@@ -50,7 +50,7 @@ import mage.target.common.TargetAnyTarget;
* @author spjspj
*/
public class KothOfTheHammerEmblem extends Emblem {
- // "Mountains you control have '{T}: This land deals 1 damage to target creature or player.'"
+ // "Mountains you control have '{T}: This land deals 1 damage to any target.'"
public KothOfTheHammerEmblem() {
this.setName("Emblem Koth");
@@ -69,7 +69,7 @@ class KothOfTheHammerThirdEffect extends ContinuousEffectImpl {
public KothOfTheHammerThirdEffect() {
super(Duration.EndOfGame, Outcome.AddAbility);
- staticText = "You get an emblem with \"Mountains you control have '{T}: This land deals 1 damage to target creature or player.'\"";
+ staticText = "You get an emblem with \"Mountains you control have '{T}: This land deals 1 damage to any target.'\"";
}
public KothOfTheHammerThirdEffect(final KothOfTheHammerThirdEffect effect) {
diff --git a/Mage/src/main/java/mage/game/command/planes/FieldsOfSummerPlane.java b/Mage/src/main/java/mage/game/command/planes/FieldsOfSummerPlane.java
index 1880011cd38..f588fa030f1 100644
--- a/Mage/src/main/java/mage/game/command/planes/FieldsOfSummerPlane.java
+++ b/Mage/src/main/java/mage/game/command/planes/FieldsOfSummerPlane.java
@@ -72,9 +72,9 @@ public class FieldsOfSummerPlane extends Plane {
Effect chaosEffect = new GainLifeEffect(10);
Target chaosTarget = null;
- List chaosEffects = new ArrayList();
+ List chaosEffects = new ArrayList<>();
chaosEffects.add(chaosEffect);
- List chaosTargets = new ArrayList();
+ List chaosTargets = new ArrayList<>();
chaosTargets.add(chaosTarget);
ActivateIfConditionActivatedAbility chaosAbility = new ActivateIfConditionActivatedAbility(Zone.COMMAND, new RollPlanarDieEffect(chaosEffects, chaosTargets), new GenericManaCost(0), MainPhaseStackEmptyCondition.instance);
@@ -104,15 +104,9 @@ class FieldsOfSummerEffect extends OneShotEffect {
@Override
public boolean apply(Game game, Ability source) {
Plane cPlane = game.getState().getCurrentPlane();
- if (cPlane == null) {
+ if (cPlane == null || !cPlane.getName().equalsIgnoreCase("Plane - Fields of Summer")) {
return false;
}
- if (cPlane != null) {
- if (!cPlane.getName().equalsIgnoreCase("Plane - Fields of Summer")) {
- return false;
- }
- }
- Player controller = game.getPlayer(source.getControllerId());
Player owner = game.getPlayer(this.getTargetPointer().getFirst(game, source));
if (owner != null && owner.canRespond() && owner.chooseUse(Outcome.Benefit, "Gain 2 life?", source, game)) {
Effect effect = new GainLifeTargetEffect(2);
diff --git a/Mage/src/main/java/mage/game/command/planes/NayaPlane.java b/Mage/src/main/java/mage/game/command/planes/NayaPlane.java
index aa2bd8dc496..f64c333d4c2 100644
--- a/Mage/src/main/java/mage/game/command/planes/NayaPlane.java
+++ b/Mage/src/main/java/mage/game/command/planes/NayaPlane.java
@@ -35,6 +35,7 @@ import mage.abilities.common.ActivateIfConditionActivatedAbility;
import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.condition.common.MainPhaseStackEmptyCondition;
import mage.abilities.costs.mana.GenericManaCost;
+import mage.abilities.dynamicvalue.DynamicValue;
import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount;
import mage.abilities.effects.Effect;
import mage.abilities.effects.common.RollPlanarDieEffect;
@@ -43,14 +44,13 @@ import mage.abilities.effects.common.continuous.PlayAdditionalLandsAllEffect;
import mage.constants.Duration;
import mage.constants.TargetController;
import mage.constants.Zone;
+import mage.filter.StaticFilters;
import mage.filter.common.FilterControlledCreaturePermanent;
-import mage.filter.common.FilterControlledLandPermanent;
import mage.filter.predicate.Predicates;
import mage.filter.predicate.mageobject.ColorPredicate;
import mage.game.command.Plane;
import mage.target.Target;
import mage.target.common.TargetControlledCreaturePermanent;
-import mage.target.common.TargetCreaturePermanent;
import mage.watchers.common.PlanarRollWatcher;
/**
@@ -60,14 +60,11 @@ import mage.watchers.common.PlanarRollWatcher;
public class NayaPlane extends Plane {
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("Red, Green or White creature");
- private static final FilterControlledLandPermanent filter2 = new FilterControlledLandPermanent("lands you control");
static {
filter.add(Predicates.or(new ColorPredicate(ObjectColor.RED), new ColorPredicate(ObjectColor.GREEN), new ColorPredicate(ObjectColor.WHITE)));
}
- private static final String rule = "{this} gets +1/+1 until end of of turn for each land you control";
-
public NayaPlane() {
this.setName("Plane - Naya");
this.setExpansionSetCodeForImage("PCA");
@@ -76,13 +73,14 @@ public class NayaPlane extends Plane {
Ability ability = new SimpleStaticAbility(Zone.COMMAND, new PlayAdditionalLandsAllEffect(Integer.MAX_VALUE));
this.getAbilities().add(ability);
- // Active player can roll the planar die: Whenever you roll {CHAOS}, target red, green or white creature you control gets +1/+1 until end of turn for each land you control
- Effect chaosEffect = new BoostTargetEffect(new PermanentsOnBattlefieldCount(filter2), new PermanentsOnBattlefieldCount(filter2), Duration.EndOfTurn);
+ // Active player can roll the planar die: Whenever you roll {CHAOS}, target red, green or white creature you control gets +1/+1 until end of turn for each land you control
+ DynamicValue dynamicValue = new PermanentsOnBattlefieldCount(StaticFilters.FILTER_CONTROLLED_PERMANENT_LANDS);
+ Effect chaosEffect = new BoostTargetEffect(dynamicValue, dynamicValue, Duration.EndOfTurn);
Target chaosTarget = new TargetControlledCreaturePermanent(1, 1, filter, false);
- List chaosEffects = new ArrayList();
+ List chaosEffects = new ArrayList<>();
chaosEffects.add(chaosEffect);
- List chaosTargets = new ArrayList();
+ List chaosTargets = new ArrayList<>();
chaosTargets.add(chaosTarget);
ActivateIfConditionActivatedAbility chaosAbility = new ActivateIfConditionActivatedAbility(Zone.COMMAND, new RollPlanarDieEffect(chaosEffects, chaosTargets), new GenericManaCost(0), MainPhaseStackEmptyCondition.instance);
diff --git a/Mage/src/main/java/mage/game/command/planes/TazeemPlane.java b/Mage/src/main/java/mage/game/command/planes/TazeemPlane.java
index d7d811dc235..c00e0bd9865 100644
--- a/Mage/src/main/java/mage/game/command/planes/TazeemPlane.java
+++ b/Mage/src/main/java/mage/game/command/planes/TazeemPlane.java
@@ -30,21 +30,24 @@ package mage.game.command.planes;
import java.util.ArrayList;
import java.util.List;
import mage.abilities.Ability;
+import mage.abilities.Mode;
import mage.abilities.common.ActivateIfConditionActivatedAbility;
import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.condition.common.MainPhaseStackEmptyCondition;
import mage.abilities.costs.mana.GenericManaCost;
import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount;
import mage.abilities.effects.Effect;
+import mage.abilities.effects.RestrictionEffect;
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
import mage.abilities.effects.common.RollPlanarDieEffect;
-import mage.abilities.effects.common.combat.CantBlockAllEffect;
import mage.constants.Duration;
import mage.constants.TargetController;
import mage.constants.Zone;
-import mage.filter.StaticFilters;
import mage.filter.common.FilterControlledLandPermanent;
+import mage.filter.common.FilterCreaturePermanent;
+import mage.game.Game;
import mage.game.command.Plane;
+import mage.game.permanent.Permanent;
import mage.target.Target;
import mage.watchers.common.PlanarRollWatcher;
@@ -54,22 +57,24 @@ import mage.watchers.common.PlanarRollWatcher;
*/
public class TazeemPlane extends Plane {
+ private static final String rule = "Creatures can't block";
+
public TazeemPlane() {
this.setName("Plane - Tazeem");
this.setExpansionSetCodeForImage("PCA");
// Creatures can't block
- Ability ability = new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBlockAllEffect(StaticFilters.FILTER_PERMANENT_CREATURES, Duration.WhileOnBattlefield));
+ Ability ability = new SimpleStaticAbility(Zone.COMMAND, new TazeemCantBlockAllEffect());
this.getAbilities().add(ability);
// Active player can roll the planar die: Whenever you roll {CHAOS}, draw a card for each land you control
Effect chaosEffect = new DrawCardSourceControllerEffect(new PermanentsOnBattlefieldCount(new FilterControlledLandPermanent()));
Target chaosTarget = null;
- List chaosEffects = new ArrayList();
+ List chaosEffects = new ArrayList<>();
chaosEffects.add(chaosEffect);
- List chaosTargets = new ArrayList();
+ List chaosTargets = new ArrayList<>();
chaosTargets.add(chaosTarget);
ActivateIfConditionActivatedAbility chaosAbility = new ActivateIfConditionActivatedAbility(Zone.COMMAND, new RollPlanarDieEffect(chaosEffects, chaosTargets), new GenericManaCost(0), MainPhaseStackEmptyCondition.instance);
@@ -79,3 +84,45 @@ public class TazeemPlane extends Plane {
this.getAbilities().add(new SimpleStaticAbility(Zone.ALL, new PlanarDieRollCostIncreasingEffect(chaosAbility.getOriginalId())));
}
}
+
+class TazeemCantBlockAllEffect extends RestrictionEffect {
+
+ private FilterCreaturePermanent filter = new FilterCreaturePermanent("Creatures");
+
+ public TazeemCantBlockAllEffect() {
+ super(Duration.Custom);
+ this.filter = filter;
+ }
+
+ public TazeemCantBlockAllEffect(final TazeemCantBlockAllEffect effect) {
+ super(effect);
+ this.filter = effect.filter;
+ }
+
+ @Override
+ public boolean applies(Permanent permanent, Ability source, Game game) {
+ Plane cPlane = game.getState().getCurrentPlane();
+
+ if (cPlane == null || !cPlane.getName().equalsIgnoreCase("Plane - Tazeem")) {
+ return false;
+ }
+ return filter.match(permanent, source.getSourceId(), source.getControllerId(), game);
+ }
+
+ @Override
+ public boolean canBlock(Permanent attacker, Permanent blocker, Ability source, Game game) {
+ return false;
+ }
+
+ @Override
+ public TazeemCantBlockAllEffect copy() {
+ return new TazeemCantBlockAllEffect(this);
+ }
+
+ @Override
+ public String getText(Mode mode) {
+ StringBuilder sb = new StringBuilder();
+ sb.append(filter.getMessage()).append(" can't block");
+ return sb.toString();
+ }
+}
diff --git a/Mage/src/main/java/mage/game/command/planes/TheGreatForestPlane.java b/Mage/src/main/java/mage/game/command/planes/TheGreatForestPlane.java
new file mode 100644
index 00000000000..9b733608aa1
--- /dev/null
+++ b/Mage/src/main/java/mage/game/command/planes/TheGreatForestPlane.java
@@ -0,0 +1,136 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ..AS IS.. AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.game.command.planes;
+
+import java.util.ArrayList;
+import java.util.List;
+import mage.abilities.Ability;
+import mage.abilities.common.ActivateIfConditionActivatedAbility;
+import mage.abilities.common.SimpleStaticAbility;
+import mage.abilities.condition.common.MainPhaseStackEmptyCondition;
+import mage.abilities.costs.mana.GenericManaCost;
+import mage.abilities.effects.ContinuousEffectImpl;
+import mage.abilities.effects.Effect;
+import mage.abilities.effects.common.RollPlanarDieEffect;
+import mage.abilities.effects.common.continuous.BoostControlledEffect;
+import mage.abilities.effects.common.continuous.GainAbilityControlledEffect;
+import mage.abilities.effects.common.continuous.GainAbilityTargetEffect;
+import mage.abilities.keyword.TrampleAbility;
+import mage.constants.Duration;
+import mage.constants.Layer;
+import mage.constants.Outcome;
+import mage.constants.SubLayer;
+import mage.constants.TargetController;
+import mage.constants.Zone;
+import mage.filter.StaticFilters;
+import mage.game.Game;
+import mage.game.command.Plane;
+import mage.target.Target;
+import mage.watchers.common.PlanarRollWatcher;
+
+/**
+ *
+ * @author spjspj
+ */
+public class TheGreatForestPlane extends Plane {
+
+ private static final String rule = "Each creature assigns combat damage equal to its toughness rather than its power";
+
+ public TheGreatForestPlane() {
+ this.setName("Plane - The Great Forest");
+ this.setExpansionSetCodeForImage("PCA");
+
+ // Each creature assigns combat damage equal to its toughness rather than its power
+ Ability ability = new SimpleStaticAbility(Zone.COMMAND, new TheGreatForestCombatDamageRuleEffect());
+ this.getAbilities().add(ability);
+
+ // Active player can roll the planar die: Whenever you roll {CHAOS}, creatures you control get +0/+2 and gain trample until end of turn
+ Effect chaosEffect = new BoostControlledEffect(0, 2, Duration.EndOfTurn);
+ Target chaosTarget = null;
+ Effect chaosEffect2 = new GainAbilityControlledEffect(TrampleAbility.getInstance(), Duration.EndOfTurn);
+ Target chaosTarget2 = null;
+
+ List chaosEffects = new ArrayList();
+ chaosEffects.add(chaosEffect);
+ chaosEffects.add(chaosEffect2);
+ List chaosTargets = new ArrayList();
+ chaosTargets.add(chaosTarget);
+ chaosTargets.add(chaosTarget2);
+
+ ActivateIfConditionActivatedAbility chaosAbility = new ActivateIfConditionActivatedAbility(Zone.COMMAND, new RollPlanarDieEffect(chaosEffects, chaosTargets), new GenericManaCost(0), MainPhaseStackEmptyCondition.instance);
+ chaosAbility.addWatcher(new PlanarRollWatcher());
+ this.getAbilities().add(chaosAbility);
+ chaosAbility.setMayActivate(TargetController.ANY);
+ this.getAbilities().add(new SimpleStaticAbility(Zone.ALL, new PlanarDieRollCostIncreasingEffect(chaosAbility.getOriginalId())));
+ }
+}
+
+class TheGreatForestCombatDamageRuleEffect extends ContinuousEffectImpl {
+
+ public TheGreatForestCombatDamageRuleEffect() {
+ super(Duration.WhileOnBattlefield, Outcome.Detriment);
+ staticText = "Each creature assigns combat damage equal to its toughness rather than its power";
+ }
+
+ public TheGreatForestCombatDamageRuleEffect(final TheGreatForestCombatDamageRuleEffect effect) {
+ super(effect);
+ }
+
+ @Override
+ public TheGreatForestCombatDamageRuleEffect copy() {
+ return new TheGreatForestCombatDamageRuleEffect(this);
+ }
+
+ @Override
+ public boolean apply(Layer layer, SubLayer sublayer, Ability source, Game game) {
+ Plane cPlane = game.getState().getCurrentPlane();
+ if (cPlane == null) {
+ return false;
+ }
+ if (cPlane != null) {
+ if (!cPlane.getName().equalsIgnoreCase("Plane - The Great Forest")) {
+ return false;
+ }
+ }
+
+ // Change the rule
+ game.getCombat().setUseToughnessForDamage(true);
+ game.getCombat().addUseToughnessForDamageFilter(StaticFilters.FILTER_PERMANENT_CREATURES);
+ return true;
+ }
+
+ @Override
+ public boolean apply(Game game, Ability source) {
+ return false;
+ }
+
+ @Override
+ public boolean hasLayer(Layer layer) {
+ return layer == Layer.RulesEffects;
+ }
+}
diff --git a/Mage/src/main/java/mage/game/command/planes/TrugaJunglePlane.java b/Mage/src/main/java/mage/game/command/planes/TrugaJunglePlane.java
index e1a9b507bd0..70f949efbb3 100644
--- a/Mage/src/main/java/mage/game/command/planes/TrugaJunglePlane.java
+++ b/Mage/src/main/java/mage/game/command/planes/TrugaJunglePlane.java
@@ -55,7 +55,7 @@ import mage.watchers.common.PlanarRollWatcher;
*/
public class TrugaJunglePlane extends Plane {
- private static final String rule = "All lands have '{t}: Add one mana of any color to your mana pool";
+ private static final String rule = "All lands have '{t}: Add one mana of any color";
public TrugaJunglePlane() {
this.setName("Plane - Truga Jungle");
diff --git a/Mage/src/main/java/mage/game/permanent/token/EtheriumCellToken.java b/Mage/src/main/java/mage/game/permanent/token/EtheriumCellToken.java
index e99cf6c1dbd..ce21470e9a0 100644
--- a/Mage/src/main/java/mage/game/permanent/token/EtheriumCellToken.java
+++ b/Mage/src/main/java/mage/game/permanent/token/EtheriumCellToken.java
@@ -42,7 +42,7 @@ import mage.constants.Zone;
public class EtheriumCellToken extends TokenImpl {
public EtheriumCellToken() {
- super("Etherium Cell", "colorless artifact token named Etherium Cell which has \"{T}, Sacrifice this artifact: Add one mana of any color to your mana pool.\"");
+ super("Etherium Cell", "colorless artifact token named Etherium Cell which has \"{T}, Sacrifice this artifact: Add one mana of any color.\"");
this.setOriginalExpansionSetCode("AER");
cardType.add(CardType.ARTIFACT);
diff --git a/Mage/src/main/java/mage/game/permanent/token/GoldToken.java b/Mage/src/main/java/mage/game/permanent/token/GoldToken.java
index e6661dbb4e9..bdc6286180f 100644
--- a/Mage/src/main/java/mage/game/permanent/token/GoldToken.java
+++ b/Mage/src/main/java/mage/game/permanent/token/GoldToken.java
@@ -53,7 +53,7 @@ public class GoldToken extends TokenImpl {
}
public GoldToken(String setCode) {
- super("Gold", "colorless artifact token named Gold with \"Sacrifice this artifact: Add one mana of any color to your mana pool.\"");
+ super("Gold", "colorless artifact token named Gold with \"Sacrifice this artifact: Add one mana of any color.\"");
availableImageSetCodes = tokenImageSets;
setOriginalExpansionSetCode(setCode);
cardType.add(CardType.ARTIFACT);
diff --git a/Mage/src/main/java/mage/game/permanent/token/TreasureToken.java b/Mage/src/main/java/mage/game/permanent/token/TreasureToken.java
index 42b23d47f21..6f931f910ce 100644
--- a/Mage/src/main/java/mage/game/permanent/token/TreasureToken.java
+++ b/Mage/src/main/java/mage/game/permanent/token/TreasureToken.java
@@ -60,7 +60,7 @@ public class TreasureToken extends TokenImpl {
}
public TreasureToken(String setCode, int tokenType) {
- super("Treasure", "colorless Treasure artifact token with \"{T}, Sacrifice this artifact: Add one mana of any color to your mana pool.\"");
+ super("Treasure", "colorless Treasure artifact token with \"{T}, Sacrifice this artifact: Add one mana of any color.\"");
availableImageSetCodes = tokenImageSets;
setOriginalExpansionSetCode(setCode);
cardType.add(CardType.ARTIFACT);
diff --git a/Mage/src/main/java/mage/game/permanent/token/TriskelaviteToken.java b/Mage/src/main/java/mage/game/permanent/token/TriskelaviteToken.java
index e80a0ac8ff0..405254c71de 100644
--- a/Mage/src/main/java/mage/game/permanent/token/TriskelaviteToken.java
+++ b/Mage/src/main/java/mage/game/permanent/token/TriskelaviteToken.java
@@ -45,7 +45,7 @@ import mage.target.common.TargetAnyTarget;
public class TriskelaviteToken extends TokenImpl {
public TriskelaviteToken() {
- super("Triskelavite", "1/1 colorless Triskelavite artifact creature token with flying. It has \"Sacrifice this creature: This creature deals 1 damage to target creature or player.\"");
+ super("Triskelavite", "1/1 colorless Triskelavite artifact creature token with flying. It has \"Sacrifice this creature: This creature deals 1 damage to any target.\"");
this.setOriginalExpansionSetCode("TSP");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
diff --git a/Mage/src/main/java/mage/game/stack/StackObjImpl.java b/Mage/src/main/java/mage/game/stack/StackObjImpl.java
index 25a3088eab7..e58b35a8de2 100644
--- a/Mage/src/main/java/mage/game/stack/StackObjImpl.java
+++ b/Mage/src/main/java/mage/game/stack/StackObjImpl.java
@@ -72,7 +72,7 @@ public abstract class StackObjImpl implements StackObject {
* the change is legal.
*
* Example: Arc Trail is a sorcery that reads "Arc Trail deals 2 damage to
- * target creature or player and 1 damage to another target creature or
+ * any target and 1 damage to another target creature or
* player." The current targets of Arc Trail are Runeclaw Bear and Llanowar
* Elves, in that order. You cast Redirect, an instant that reads "You may
* choose new targets for target spell," targeting Arc Trail. You can change
diff --git a/Mage/src/main/java/mage/players/PlayerImpl.java b/Mage/src/main/java/mage/players/PlayerImpl.java
index e3c2e66df17..c850a67fcba 100644
--- a/Mage/src/main/java/mage/players/PlayerImpl.java
+++ b/Mage/src/main/java/mage/players/PlayerImpl.java
@@ -3461,6 +3461,16 @@ public abstract class PlayerImpl implements Player, Serializable {
}
}
break;
+ case OUTSIDE:
+ for (Card card : cards) {
+ if (card instanceof Permanent) {
+ game.getBattlefield().removePermanent(((Permanent) card).getId());
+ ZoneChangeEvent event = new ZoneChangeEvent(card.getId(), (source == null ? null : source.getSourceId()),
+ byOwner ? card.getOwnerId() : getId(), Zone.BATTLEFIELD, Zone.OUTSIDE, appliedEffects);
+ game.fireEvent(event);
+ }
+ }
+ break;
default:
throw new UnsupportedOperationException("to Zone" + toZone.toString() + " not supported yet");
}
diff --git a/Mage/src/main/java/mage/target/common/TargetAnyTarget.java b/Mage/src/main/java/mage/target/common/TargetAnyTarget.java
index 2fbe3046eda..8204246dc78 100644
--- a/Mage/src/main/java/mage/target/common/TargetAnyTarget.java
+++ b/Mage/src/main/java/mage/target/common/TargetAnyTarget.java
@@ -104,6 +104,7 @@ public class TargetAnyTarget extends TargetImpl {
@Override
public boolean canChoose(UUID sourceId, UUID sourceControllerId, Game game) {
int count = 0;
+
MageObject targetSource = game.getObject(sourceId);
for (UUID playerId : game.getState().getPlayersInRange(sourceControllerId, game)) {
Player player = game.getPlayer(playerId);
@@ -114,6 +115,7 @@ public class TargetAnyTarget extends TargetImpl {
}
}
}
+
for (Permanent permanent : game.getBattlefield().getActivePermanents(filter.getCreatureFilter(), sourceControllerId, game)) {
if (permanent.canBeTargetedBy(targetSource, sourceControllerId, game) && filter.match(permanent, sourceId, sourceControllerId, game)) {
count++;
@@ -122,6 +124,16 @@ public class TargetAnyTarget extends TargetImpl {
}
}
}
+
+ for (Permanent planeswalker : game.getBattlefield().getActivePermanents(filter.getPlaneswalkerFilter(), sourceControllerId, game)) {
+ if (planeswalker.canBeTargetedBy(targetSource, sourceControllerId, game) && filter.match(planeswalker, sourceId, sourceControllerId, game)) {
+ count++;
+ if (count >= this.minNumberOfTargets) {
+ return true;
+ }
+ }
+ }
+
return false;
}
@@ -137,6 +149,7 @@ public class TargetAnyTarget extends TargetImpl {
@Override
public boolean canChoose(UUID sourceControllerId, Game game) {
int count = 0;
+
for (UUID playerId : game.getState().getPlayersInRange(sourceControllerId, game)) {
Player player = game.getPlayer(playerId);
if (player != null && filter.match(player, game)) {
@@ -146,6 +159,7 @@ public class TargetAnyTarget extends TargetImpl {
}
}
}
+
for (Permanent permanent : game.getBattlefield().getActivePermanents(filter.getCreatureFilter(), sourceControllerId, game)) {
if (filter.match(permanent, null, sourceControllerId, game)) {
count++;
@@ -154,6 +168,16 @@ public class TargetAnyTarget extends TargetImpl {
}
}
}
+
+ for (Permanent planeswalker : game.getBattlefield().getActivePermanents(filter.getPlaneswalkerFilter(), sourceControllerId, game)) {
+ if (filter.match(planeswalker, null, sourceControllerId, game)) {
+ count++;
+ if (count >= this.minNumberOfTargets) {
+ return true;
+ }
+ }
+ }
+
return false;
}
@@ -161,6 +185,7 @@ public class TargetAnyTarget extends TargetImpl {
public Set possibleTargets(UUID sourceId, UUID sourceControllerId, Game game) {
Set possibleTargets = new HashSet<>();
MageObject targetSource = game.getObject(sourceId);
+
for (UUID playerId : game.getState().getPlayersInRange(sourceControllerId, game)) {
Player player = game.getPlayer(playerId);
if (player != null
@@ -169,29 +194,47 @@ public class TargetAnyTarget extends TargetImpl {
possibleTargets.add(playerId);
}
}
+
for (Permanent permanent : game.getBattlefield().getActivePermanents(filter.getCreatureFilter(), sourceControllerId, game)) {
if (permanent.canBeTargetedBy(targetSource, sourceControllerId, game)
&& filter.getCreatureFilter().match(permanent, sourceId, sourceControllerId, game)) {
possibleTargets.add(permanent.getId());
}
}
+
+ for (Permanent planeswalker : game.getBattlefield().getActivePermanents(filter.getPlaneswalkerFilter(), sourceControllerId, game)) {
+ if (planeswalker.canBeTargetedBy(targetSource, sourceControllerId, game)
+ && filter.getPlaneswalkerFilter().match(planeswalker, sourceId, sourceControllerId, game)) {
+ possibleTargets.add(planeswalker.getId());
+ }
+ }
+
return possibleTargets;
}
@Override
public Set possibleTargets(UUID sourceControllerId, Game game) {
Set possibleTargets = new HashSet<>();
+
for (UUID playerId : game.getState().getPlayersInRange(sourceControllerId, game)) {
Player player = game.getPlayer(playerId);
if (player != null && filter.getPlayerFilter().match(player, game)) {
possibleTargets.add(playerId);
}
}
+
for (Permanent permanent : game.getBattlefield().getActivePermanents(filter.getCreatureFilter(), sourceControllerId, game)) {
if (filter.getCreatureFilter().match(permanent, null, sourceControllerId, game)) {
possibleTargets.add(permanent.getId());
}
}
+
+ for (Permanent planeswalker : game.getBattlefield().getActivePermanents(filter.getPlaneswalkerFilter(), sourceControllerId, game)) {
+ if (filter.getPlaneswalkerFilter().match(planeswalker, null, sourceControllerId, game)) {
+ possibleTargets.add(planeswalker.getId());
+ }
+ }
+
return possibleTargets;
}
diff --git a/Mage/src/main/java/mage/target/common/TargetPermanentOrPlayer.java b/Mage/src/main/java/mage/target/common/TargetPermanentOrPlayer.java
index 4be0a4b88b4..e7c7864ac1c 100644
--- a/Mage/src/main/java/mage/target/common/TargetPermanentOrPlayer.java
+++ b/Mage/src/main/java/mage/target/common/TargetPermanentOrPlayer.java
@@ -60,22 +60,21 @@ public class TargetPermanentOrPlayer extends TargetImpl {
}
public TargetPermanentOrPlayer(int minNumTargets, int maxNumTargets) {
- this.minNumberOfTargets = minNumTargets;
- this.maxNumberOfTargets = maxNumTargets;
- this.zone = Zone.ALL;
- this.filter = new FilterPermanentOrPlayer();
- this.targetName = filter.getMessage();
- this.filterPermanent = this.filter.getPermanentFilter();
+ this(minNumTargets, maxNumTargets, false);
}
public TargetPermanentOrPlayer(int minNumTargets, int maxNumTargets, boolean notTarget) {
- this(minNumTargets, maxNumTargets);
- this.notTarget = notTarget;
+ this(minNumTargets, maxNumTargets, new FilterPermanentOrPlayer(), notTarget);
}
public TargetPermanentOrPlayer(int minNumTargets, int maxNumTargets, FilterPermanentOrPlayer filter, boolean notTarget) {
- this(minNumTargets, maxNumTargets, notTarget);
+ this.minNumberOfTargets = minNumTargets;
+ this.maxNumberOfTargets = maxNumTargets;
+ this.zone = Zone.ALL;
this.filter = filter;
+ this.targetName = filter.getMessage();
+ this.filterPermanent = this.filter.getPermanentFilter();
+ this.notTarget = notTarget;
}
public TargetPermanentOrPlayer(final TargetPermanentOrPlayer target) {
@@ -164,7 +163,7 @@ public class TargetPermanentOrPlayer extends TargetImpl {
}
}
}
- for (Permanent permanent : game.getBattlefield().getActivePermanents(StaticFilters.FILTER_PERMANENT_CREATURE, sourceControllerId, game)) {
+ for (Permanent permanent : game.getBattlefield().getActivePermanents(StaticFilters.FILTER_PERMANENT, sourceControllerId, game)) {
if (permanent.canBeTargetedBy(targetSource, sourceControllerId, game) && filter.match(permanent, sourceId, sourceControllerId, game)) {
count++;
if (count >= this.minNumberOfTargets) {
diff --git a/Mage/src/main/java/mage/target/common/TargetPlayerOrPlaneswalker.java b/Mage/src/main/java/mage/target/common/TargetPlayerOrPlaneswalker.java
index 72f72cf8132..27101e8ad39 100644
--- a/Mage/src/main/java/mage/target/common/TargetPlayerOrPlaneswalker.java
+++ b/Mage/src/main/java/mage/target/common/TargetPlayerOrPlaneswalker.java
@@ -14,7 +14,7 @@ import mage.filter.common.FilterPlayerOrPlaneswalker;
public class TargetPlayerOrPlaneswalker extends TargetPermanentOrPlayer {
public TargetPlayerOrPlaneswalker() {
- this(1, 1, new FilterPlayerOrPlaneswalker("player or planeswalker"), false);
+ this(1, 1, new FilterPlayerOrPlaneswalker(), false);
}
public TargetPlayerOrPlaneswalker(int numTargets) {
diff --git a/Utils/mtg-cards-data.txt b/Utils/mtg-cards-data.txt
index b93ec1fccc6..603cdffbda8 100644
--- a/Utils/mtg-cards-data.txt
+++ b/Utils/mtg-cards-data.txt
@@ -33,7 +33,7 @@ Vedalken Ghoul|Alara Reborn|32|C|{U}{B}|Creature - Vedalken Zombie|1|1|Whenever
Anathemancer|Alara Reborn|33|U|{1}{B}{R}|Creature - Zombie Wizard|2|2|When Anathemancer enters the battlefield, it deals damage to target player equal to the number of nonbasic lands that player controls.$Unearth {5}{B}{R} ({5}{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.)|
Bituminous Blast|Alara Reborn|34|U|{3}{B}{R}|Instant|||Cascade (When you cast this spell, exile cards from the top of your library until you exile a nonland card that costs less. You may cast it without paying its mana cost. Put the exiled cards on the bottom in a random order.)$Bituminous Blast deals 4 damage to target creature.|
Breath of Malfegor|Alara Reborn|35|C|{3}{B}{R}|Instant|||Breath of Malfegor deals 5 damage to each opponent.|
-Deathbringer Thoctar|Alara Reborn|36|R|{4}{B}{R}|Creature - Zombie Beast|3|3|Whenever another creature dies, you may put a +1/+1 counter on Deathbringer Thoctar.$Remove a +1/+1 counter from Deathbringer Thoctar: Deathbringer Thoctar deals 1 damage to target creature or player.|
+Deathbringer Thoctar|Alara Reborn|36|R|{4}{B}{R}|Creature - Zombie Beast|3|3|Whenever another creature dies, you may put a +1/+1 counter on Deathbringer Thoctar.$Remove a +1/+1 counter from Deathbringer Thoctar: Deathbringer Thoctar deals 1 damage to any target.|
Defiler of Souls|Alara Reborn|37|M|{3}{B}{B}{R}|Creature - Demon|5|5|Flying$At the beginning of each player's upkeep, that player sacrifices a monocolored creature.|
Demonic Dread|Alara Reborn|38|C|{1}{B}{R}|Sorcery|||Cascade (When you cast this spell, exile cards from the top of your library until you exile a nonland card that costs less. You may cast it without paying its mana cost. Put the exiled cards on the bottom in a random order.)$Target creature can't block this turn.|
Demonspine Whip|Alara Reborn|39|U|{B}{R}|Artifact - Equipment|||{X}: Equipped creature gets +X/+0 until end of turn.$Equip {1}|
@@ -59,7 +59,7 @@ Predatory Advantage|Alara Reborn|58|R|{3}{R}{G}|Enchantment|||At the beginning o
Rhox Brute|Alara Reborn|59|C|{2}{R}{G}|Creature - Rhino Warrior|4|4||
Spellbreaker Behemoth|Alara Reborn|60|R|{1}{R}{G}{G}|Creature - Beast|5|5|Spellbreaker Behemoth can't be countered.$Creature spells you control with power 5 or greater can't be countered.|
Valley Rannet|Alara Reborn|61|C|{4}{R}{G}|Creature - Beast|6|3|Mountaincycling {2}, forestcycling {2} ({2}, Discard this card: Search your library for a Mountain or Forest card, reveal it, and put it into your hand. Then shuffle your library.)|
-Vengeful Rebirth|Alara Reborn|62|U|{4}{R}{G}|Sorcery|||Return target card from your graveyard to your hand. If you return a nonland card to your hand this way, Vengeful Rebirth deals damage equal to that card's converted mana cost to target creature or player.$Exile Vengeful Rebirth.|
+Vengeful Rebirth|Alara Reborn|62|U|{4}{R}{G}|Sorcery|||Return target card from your graveyard to your hand. If you return a nonland card to your hand this way, Vengeful Rebirth deals damage equal to that card's converted mana cost to any target.$Exile Vengeful Rebirth.|
Violent Outburst|Alara Reborn|63|C|{1}{R}{G}|Instant|||Cascade (When you cast this spell, exile cards from the top of your library until you exile a nonland card that costs less. You may cast it without paying its mana cost. Put the exiled cards on the bottom in a random order.)$Creatures you control get +1/+0 until end of turn.|
Vithian Renegades|Alara Reborn|64|U|{1}{R}{G}|Creature - Human Shaman|3|2|When Vithian Renegades enters the battlefield, destroy target artifact.|
Behemoth Sledge|Alara Reborn|65|U|{1}{G}{W}|Artifact - Equipment|||Equipped creature gets +2/+2 and has lifelink and trample.$Equip {3}|
@@ -113,7 +113,7 @@ Grixis Sojourners|Alara Reborn|112|C|{1}{U}{B}{R}|Creature - Zombie Ogre|4|3|Whe
Thraximundar|Alara Reborn|113|M|{4}{U}{B}{R}|Legendary Creature - Zombie Assassin|6|6|Haste$Whenever Thraximundar attacks, defending player sacrifices a creature.$Whenever a player sacrifices a creature, you may put a +1/+1 counter on Thraximundar.|
Unscythe, Killer of Kings|Alara Reborn|114|R|{U}{B}{B}{R}|Legendary Artifact - Equipment|||Equipped creature gets +3/+3 and has first strike.$Whenever a creature dealt damage by equipped creature this turn dies, you may exile that card. If you do, put a 2/2 black Zombie creature token onto the battlefield.$Equip {2}|
Dragon Appeasement|Alara Reborn|115|U|{3}{B}{R}{G}|Enchantment|||Skip your draw step.$Whenever you sacrifice a creature, you may draw a card.|
-Jund Sojourners|Alara Reborn|116|C|{B}{R}{G}|Creature - Viashino Shaman|3|2|When you cycle Jund Sojourners or it dies, you may have it deal 1 damage to target creature or player.$Cycling {2}{R} ({2}{R}, Discard this card: Draw a card.)|
+Jund Sojourners|Alara Reborn|116|C|{B}{R}{G}|Creature - Viashino Shaman|3|2|When you cycle Jund Sojourners or it dies, you may have it deal 1 damage to any target.$Cycling {2}{R} ({2}{R}, Discard this card: Draw a card.)|
Karrthus, Tyrant of Jund|Alara Reborn|117|M|{4}{B}{R}{G}|Legendary Creature - Dragon|7|7|Flying, haste$When Karrthus, Tyrant of Jund enters the battlefield, gain control of all Dragons, then untap all Dragons.$Other Dragon creatures you control have haste.|
Lavalanche|Alara Reborn|118|R|{X}{B}{R}{G}|Sorcery|||Lavalanche deals X damage to target player and each creature he or she controls.|
Madrush Cyclops|Alara Reborn|119|R|{1}{B}{R}{G}|Creature - Cyclops Warrior|3|4|Creatures you control have haste.|
@@ -147,11 +147,11 @@ Balduvian Dead|Alliances|1|U|{3}{B}|Creature - Zombie|2|3|{2}{R}, Exile a creatu
Fevered Strength|Alliances|10|C|{2}{B}|Instant|||Target creature gets +2/+0 until end of turn.$$Draw a card at the beginning of the next turn's upkeep.|
Burnout|Alliances|101|U|{1}{R}|Instant|||Counter target instant spell if it's blue.$Draw a card at the beginning of the next turn's upkeep.|
Chaos Harlequin|Alliances|102|R|{2}{R}{R}|Creature - Human|2|4|{R}: Exile the top card of your library. If that card is a land card, Chaos Harlequin gets -4/-0 until end of turn. Otherwise, Chaos Harlequin gets +2/+0 until end of turn.|
-Death Spark|Alliances|103|U|{R}|Instant|||Death Spark deals 1 damage to target creature or player.$At the beginning of your upkeep, if Death Spark is in your graveyard with a creature card directly above it, you may pay {1}. If you do, return Death Spark to your hand.|
+Death Spark|Alliances|103|U|{R}|Instant|||Death Spark deals 1 damage to any target.$At the beginning of your upkeep, if Death Spark is in your graveyard with a creature card directly above it, you may pay {1}. If you do, return Death Spark to your hand.|
Enslaved Scout|Alliances|104|C|{2}{R}|Creature - Goblin Scout|2|2|{2}: Enslaved Scout gains mountainwalk until end of turn.|
Gorilla Shaman|Alliances|106|C|{R}|Creature - Ape Shaman|1|1|{X}{X}{1}: Destroy target noncreature artifact with converted mana cost X.|
Gorilla War Cry|Alliances|108|C|{1}{R}|Instant|||Cast Gorilla War Cry only during combat before blockers are declared.$Creatures can't be blocked this turn except by two or more creatures.$Draw a card at the beginning of the next turn's upkeep.|
-Guerrilla Tactics|Alliances|110|C|{1}{R}|Instant|||Guerrilla Tactics deals 2 damage to target creature or player.$When a spell or ability an opponent controls causes you to discard Guerrilla Tactics, Guerrilla Tactics deals 4 damage to target creature or player.|
+Guerrilla Tactics|Alliances|110|C|{1}{R}|Instant|||Guerrilla Tactics deals 2 damage to any target.$When a spell or ability an opponent controls causes you to discard Guerrilla Tactics, Guerrilla Tactics deals 4 damage to any target.|
Omen of Fire|Alliances|112|R|{3}{R}{R}|Instant|||Return all Islands to their owners' hands.$$Each player sacrifices a Plains or a white permanent for each white permanent he or she controls.|
Pillage|Alliances|113|U|{1}{R}{R}|Sorcery|||Destroy target artifact or land. It can't be regenerated.|
Primitive Justice|Alliances|114|U|{1}{R}|Sorcery|||As an additional cost to cast Primitive Justice, you may pay {1}{R} and/or {1}{G} any number of times.$Destroy target artifact. For each additional {1}{R} you paid, destroy another target artifact. For each additional {1}{G} you paid, destroy another target artifact, and you gain 1 life.|
@@ -172,15 +172,15 @@ Juniper Order Advocate|Alliances|132|U|{2}{W}|Creature - Human Knight|1|2|As lon
Kjeldoran Escort|Alliances|133|C|{2}{W}{W}|Creature - Human Soldier|2|3|Banding (Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding you control are blocking or being blocked by a creature, you divide that creature's combat damage, not its controller, among any of the creatures it's being blocked by or is blocking.)|
Kjeldoran Home Guard|Alliances|135|U|{3}{W}|Creature - Human Soldier|1|6|At end of combat, if Kjeldoran Home Guard attacked or blocked this combat, put a -0/-1 counter on Kjeldoran Home Guard and put a 0/1 white Deserter creature token onto the battlefield.|
Kjeldoran Pride|Alliances|136|C|{1}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+2.${2}{U}: Attach Kjeldoran Pride to target creature other than enchanted creature.|
-Martyrdom|Alliances|138|C|{1}{W}{W}|Instant|||Until end of turn, target creature you control gains "{0}: The next 1 damage that would be dealt to target creature or player this turn is dealt to this creature instead." Only you may activate this ability.|
+Martyrdom|Alliances|138|C|{1}{W}{W}|Instant|||Until end of turn, target creature you control gains "{0}: The next 1 damage that would be dealt to any target this turn is dealt to this creature instead." Only you may activate this ability.|
Keeper of Tresserhorn|Alliances|14|R|{5}{B}|Creature - Avatar|6|6|Whenever Keeper of Tresserhorn attacks and isn't blocked, it assigns no combat damage this turn and defending player loses 2 life.|
Noble Steeds|Alliances|140|C|{2}{W}|Enchantment|||{1}{W}: Target creature gains first strike until end of turn.|
Reinforcements|Alliances|142|C|{W}|Instant|||Put up to three target creature cards from your graveyard on top of your library.|
Reprisal|Alliances|144|C|{1}{W}|Instant|||Destroy target creature with power 4 or greater. It can't be regenerated.|
Royal Decree|Alliances|146|R|{2}{W}{W}|Enchantment|||Cumulative upkeep {W} (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 a Swamp, Mountain, black permanent, or red permanent becomes tapped, Royal Decree deals 1 damage to that permanent's controller.|
Royal Herbalist|Alliances|147|C|{W}|Creature - Human Cleric|1|1|{2}, Exile the top card of your library: You gain 1 life.|
-Scars of the Veteran|Alliances|149|U|{4}{W}|Instant|||You may exile a white card from your hand rather than pay Scars of the Veteran's mana cost.$Prevent the next 7 damage that would be dealt to target creature or player this turn. At the beginning of the next end step, put a +0/+1 counter on that creature for each 1 damage prevented this way.|
-Krovikan Horror|Alliances|15|R|{3}{B}|Creature - Horror Spirit|2|2|At the beginning of the end step, if Krovikan Horror is in your graveyard with a creature card directly above it, you may return Krovikan Horror to your hand.${1}, Sacrifice a creature: Krovikan Horror deals 1 damage to target creature or player.|
+Scars of the Veteran|Alliances|149|U|{4}{W}|Instant|||You may exile a white card from your hand rather than pay Scars of the Veteran's mana cost.$Prevent the next 7 damage that would be dealt to any target this turn. At the beginning of the next end step, put a +0/+1 counter on that creature for each 1 damage prevented this way.|
+Krovikan Horror|Alliances|15|R|{3}{B}|Creature - Horror Spirit|2|2|At the beginning of the end step, if Krovikan Horror is in your graveyard with a creature card directly above it, you may return Krovikan Horror to your hand.${1}, Sacrifice a creature: Krovikan Horror deals 1 damage to any target.|
Seasoned Tactician|Alliances|150|U|{2}{W}|Creature - Human Advisor|1|3|{3}, Exile the top four cards of your library: The next time a source of your choice would deal damage to you this turn, prevent that damage.|
Sustaining Spirit|Alliances|151|R|{1}{W}|Creature - Angel Spirit|0|3|Cumulative upkeep {1}{W} (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.)$Damage that would reduce your life total to less than 1 reduces it to 1 instead.|
Sworn Defender|Alliances|152|R|{2}{W}{W}|Creature - Human Knight|1|3|{1}: Sworn Defender's power becomes the toughness of target creature blocking or being blocked by Sworn Defender minus 1 until end of turn, and Sworn Defender's toughness becomes 1 plus the power of that creature until end of turn.|
@@ -188,8 +188,8 @@ Unlikely Alliance|Alliances|153|U|{1}{W}|Enchantment|||{1}{W}: Target nonattacki
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.|
Aesthir Glider|Alliances|156|C|{3}|Artifact Creature - Bird|2|1|Flying$Aesthir Glider can't block.|
Ashnod's Cylix|Alliances|158|R|{2}|Artifact|||{3}, {T}: Target player looks at the top three cards of his or her library, puts one of them back on top of his or her library, then exiles the rest.|
-Astrolabe|Alliances|159|C|{3}|Artifact|||{1}, {T}, Sacrifice Astrolabe: Add two mana of any one color to your mana pool. Draw a card at the beginning of the next turn's upkeep.|
-Krovikan Plague|Alliances|16|U|{2}{B}|Enchantment - Aura|||Enchant non-Wall creature you control$When Krovikan Plague enters the battlefield, draw a card at the beginning of the next turn's upkeep.$Tap enchanted creature: Krovikan Plague deals 1 damage to target creature or player. Put a -0/-1 counter on enchanted creature. Activate this ability only if enchanted creature is untapped.|
+Astrolabe|Alliances|159|C|{3}|Artifact|||{1}, {T}, Sacrifice Astrolabe: Add two mana of any one color. Draw a card at the beginning of the next turn's upkeep.|
+Krovikan Plague|Alliances|16|U|{2}{B}|Enchantment - Aura|||Enchant non-Wall creature you control$When Krovikan Plague enters the battlefield, draw a card at the beginning of the next turn's upkeep.$Tap enchanted creature: Krovikan Plague deals 1 damage to any target. Put a -0/-1 counter on enchanted creature. Activate this ability only if enchanted creature is untapped.|
Floodwater Dam|Alliances|161|R|{3}|Artifact|||{X}{X}{1}, {T}: Tap X target lands.|
Gustha's Scepter|Alliances|162|R|{0}|Artifact|||{T}: Exile a card from your hand face down. You may look at it for as long as it remains exiled.${T}: Return a card you own exiled with Gustha's Scepter to your hand.$When you lose control of Gustha's Scepter, put all cards exiled with Gustha's Scepter into their owner's graveyard.|
Foresight|Alliances|162|C|{1}{U}|Sorcery|||Search your library for three cards, exile them, then shuffle your library.$Draw a card at the beginning of the next turn's upkeep.|
@@ -203,7 +203,7 @@ Phyrexian War Beast|Alliances|169|C|{3}|Artifact Creature - Beast|3|4|When Phyre
Lim-Dul's High Guard|Alliances|17|C|{1}{B}{B}|Creature - Skeleton|2|1|First strike${1}{B}: Regenerate Lim-Dûl's High Guard.|
Scarab of the Unseen|Alliances|171|U|{2}|Artifact|||{T}, Sacrifice Scarab of the Unseen: Return all Auras attached to target permanent you own to their owners' hands. Draw a card at the beginning of the next turn's upkeep.|
Shield Sphere|Alliances|172|U|{0}|Artifact Creature - Wall|0|6|Defender$Whenever Shield Sphere blocks, put a -0/-1 counter on it.|
-Sol Grail|Alliances|173|U|{3}|Artifact|||As Sol Grail enters the battlefield, choose a color.${T}: Add one mana of the chosen color to your mana pool.|
+Sol Grail|Alliances|173|U|{3}|Artifact|||As Sol Grail enters the battlefield, choose a color.${T}: Add one mana of the chosen color.|
Soldevi Digger|Alliances|174|R|{2}|Artifact|||{2}: Put the top card of your graveyard on the bottom of your library.|
Soldevi Sentry|Alliances|175|C|{1}|Artifact Creature - Soldier|1|1|{1}: Choose target opponent. Regenerate Soldevi Sentry. When it regenerates this way, that player may draw a card.|
Soldevi Steam Beast|Alliances|177|C|{5}|Artifact Creature - Beast|4|2|Whenever Soldevi Steam Beast becomes tapped, target opponent gains 2 life.${2}: Regenerate Soldevi Steam Beast.|
@@ -214,7 +214,7 @@ Balduvian Trading Post|Alliances|182|R||Land|||If Balduvian Trading Post would e
Heart of Yavimaya|Alliances|183|R||Land|||If Heart of Yavimaya would enter the battlefield, sacrifice a Forest instead. If you do, put Heart of Yavimaya onto the battlefield. If you don't, put it into its owner's graveyard.${T}: Add {G}.${T}: Target creature gets +1/+1 until end of turn.|
Kjeldoran Outpost|Alliances|184|R||Land|||If Kjeldoran Outpost would enter the battlefield, sacrifice a Plains instead. If you do, put Kjeldoran Outpost onto the battlefield. If you don't, put it into its owner's graveyard.${T}: Add {W}.${1}{W}, {T}: Put a 1/1 white Soldier creature token onto the battlefield.|
Lake of the Dead|Alliances|185|R||Land|||If Lake of the Dead would enter the battlefield, sacrifice a Swamp instead. If you do, put Lake of the Dead onto the battlefield. If you don't, put it into its owner's graveyard.${T}: Add {B}.${T}, Sacrifice a Swamp: Add {B}{B}{B}{B}.|
-School of the Unseen|Alliances|186|U||Land|||{T}: Add {C}.$${2}, {T}: Add one mana of any color to your mana pool.|
+School of the Unseen|Alliances|186|U||Land|||{T}: Add {C}.$${2}, {T}: Add one mana of any color.|
Sheltered Valley|Alliances|187|R||Land|||If Sheltered Valley would enter the battlefield, instead sacrifice each other permanent named Sheltered Valley you control, then put Sheltered Valley onto the battlefield.$At the beginning of your upkeep, if you control three or fewer lands, you gain 1 life.${T}: Add {C}.|
Soldevi Excavations|Alliances|188|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.${T}: Add {C}{U}.${1}, {T}: Look at the top card of your library. You may put that card on the bottom of your library.|
Thawing Glaciers|Alliances|189|R||Land|||Thawing Glaciers enters the battlefield tapped.${1}, {T}: Search your library for a basic land card, put that card onto the battlefield tapped, then shuffle your library. Return Thawing Glaciers to its owner's hand at the beginning of the next cleanup step.|
@@ -232,13 +232,13 @@ Casting of Bones|Alliances|2|C|{2}{B}|Enchantment - Aura|||Enchant creature$When
Phantasmal Fiend|Alliances|20|C|{3}{B}|Creature - Illusion|1|5|{B}: Phantasmal Fiend gets +1/-1 until end of turn.${1}{U}: Switch Phantasmal Fiend's power and toughness until end of turn.|
Phyrexian Boon|Alliances|22|C|{2}{B}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+1 as long as it's black. Otherwise, it gets -1/-2.|
Ritual of the Machine|Alliances|24|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.|
-Soldevi Adnate|Alliances|25|C|{1}{B}|Creature - Human Cleric|1|2|{T}, Sacrifice a black or artifact creature: Add to your mana pool an amount of {B} equal to the sacrificed creature's converted mana cost.|
+Soldevi Adnate|Alliances|25|C|{1}{B}|Creature - Human Cleric|1|2|{T}, Sacrifice a black or artifact creature: Add an amount of {B} equal to the sacrificed creature's converted mana cost.|
Stench of Decay|Alliances|27|C|{1}{B}{B}|Instant|||Nonartifact creatures get -1/-1 until end of turn.|
Stromgald Spy|Alliances|29|U|{3}{B}|Creature - Human Rogue|2|4|Whenever Stromgald Spy attacks and isn't blocked, you may have defending player play with his or her hand revealed for as long as Stromgald Spy remains on the battlefield. If you do, Stromgald Spy assigns no combat damage this turn.|
Swamp Mosquito|Alliances|30|C|{1}{B}|Creature - Insect|0|1|Flying$Whenever Swamp Mosquito attacks and isn't blocked, defending player gets a poison counter. (A player with ten or more poison counters loses the game.)|
Arcane Denial|Alliances|32|C|{1}{U}|Instant|||Counter target spell. Its controller may draw up to two cards at the beginning of the next turn's upkeep.$You draw a card at the beginning of the next turn's upkeep.|
Awesome Presence|Alliances|34|C|{U}|Enchantment - Aura|||Enchant creature$Enchanted creature can't be blocked unless defending player pays {3} for each creature he or she controls that's blocking it.|
-Benthic Explorers|Alliances|36|C|{3}{U}|Creature - Merfolk Scout|2|4|{T}, Untap a tapped land an opponent controls: Add one mana of any type that land could produce to your mana pool.|
+Benthic Explorers|Alliances|36|C|{3}{U}|Creature - Merfolk Scout|2|4|{T}, Untap a tapped land an opponent controls: Add one mana of any type that land could produce.|
Browse|Alliances|38|U|{2}{U}{U}|Enchantment|||{2}{U}{U}: Look at the top five cards of your library, put one of them into your hand, and exile the rest.|
Diminishing Returns|Alliances|39|R|{2}{U}{U}|Sorcery|||Each player shuffles his or her hand and graveyard into his or her library. You exile the top ten cards of your library. Then each player draws up to seven cards.|
Contagion|Alliances|4|U|{3}{B}{B}|Instant|||You may pay 1 life and exile a black card from your hand rather than pay Contagion's mana cost.$Distribute two -2/-1 counters among one or two target creatures.|
@@ -287,7 +287,7 @@ Agent of Stromgald|Alliances|94|C|{R}|Creature - Human Knight|1|1|{R}: Add {B}.|
Balduvian Horde|Alliances|96|R|{2}{R}{R}|Creature - Human Barbarian|5|5|When Balduvian Horde enters the battlefield, sacrifice it unless you discard a card at random.|
Balduvian War-Makers|Alliances|97|C|{4}{R}|Creature - Human Barbarian|3|3|Haste$Rampage 1 (Whenever this creature becomes blocked, it gets +1/+1 until end of turn for each creature blocking it beyond the first.)|
Bestial Fury|Alliances|99|C|{2}{R}|Enchantment - Aura|||Enchant creature$When Bestial Fury enters the battlefield, draw a card at the beginning of the next turn's upkeep.$Whenever enchanted creature becomes blocked, it gets +4/+0 and gains trample until end of turn.|
-Amulet of Kroog|Antiquities|1|C|{2}|Artifact|||{2}, {T}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Amulet of Kroog|Antiquities|1|C|{2}|Artifact|||{2}, {T}: Prevent the next 1 damage that would be dealt to any target this turn.|
Clockwork Avian|Antiquities|10|R|{5}|Artifact Creature - Bird|0|4|Flying$Clockwork Avian enters the battlefield with four +1/+0 counters on it.$At end of combat, if Clockwork Avian attacked or blocked this combat, remove a +1/+0 counter from it.${X}, {T}: Put up to X +1/+0 counters on Clockwork Avian. This ability can't cause the total number of +1/+0 counters on Clockwork Avian to be greater than four. Activate this ability only during your upkeep.|
Reverse Polarity|Antiquities|100|C|{W}{W}|Instant|||You gain X life, where X is twice the damage dealt to you so far this turn by artifacts.|
Colossus of Sardia|Antiquities|11|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.|
@@ -307,8 +307,8 @@ Obelisk of Undoing|Antiquities|23|R|{1}|Artifact|||{6}, {T}: Return target perma
Onulet|Antiquities|24|U|{3}|Artifact Creature - Construct|2|2|When Onulet dies, you gain 2 life.|
Ornithopter|Antiquities|25|C|{0}|Artifact Creature - Thopter|0|2|Flying|
Primal Clay|Antiquities|26|U|{4}|Artifact Creature - Shapeshifter|*|*|As Primal Clay enters the battlefield, it becomes your choice of a 3/3 artifact creature, a 2/2 artifact creature with flying, or a 1/6 Wall artifact creature with defender in addition to its other types. (A creature with defender can't attack.)|
-Rakalite|Antiquities|27|U|{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.|
-Rocket Launcher|Antiquities|28|U|{4}|Artifact|||{2}: Rocket Launcher deals 1 damage to target creature or player. Destroy Rocket Launcher at the beginning of the next end step. Activate this ability only if you've controlled Rocket Launcher continuously since the beginning of your most recent turn.|
+Rakalite|Antiquities|27|U|{6}|Artifact|||{2}: Prevent the next 1 damage that would be dealt to any target this turn. Return Rakalite to its owner's hand at the beginning of the next end step.|
+Rocket Launcher|Antiquities|28|U|{4}|Artifact|||{2}: Rocket Launcher deals 1 damage to any target. Destroy Rocket Launcher at the beginning of the next end step. Activate this ability only if you've controlled Rocket Launcher continuously since the beginning of your most recent turn.|
Shapeshifter|Antiquities|29|R|{6}|Artifact Creature - Shapeshifter|*|7-*|As Shapeshifter enters the battlefield, choose a number between 0 and 7.$At the beginning of your upkeep, you may choose a number between 0 and 7.$Shapeshifter's power is equal to the last chosen number and its toughness is equal to 7 minus that number.|
Ashnod's Altar|Antiquities|3|U|{3}|Artifact|||Sacrifice a creature: Add {C}{C}.|
Staff of Zegon|Antiquities|30|C|{4}|Artifact|||{3}, {T}: Target creature gets -2/-0 until end of turn.|
@@ -319,7 +319,7 @@ Tawnos's Wand|Antiquities|34|U|{4}|Artifact|||{2}, {T}: Target creature with pow
Tawnos's Weaponry|Antiquities|35|U|{2}|Artifact|||You may choose not to untap Tawnos's Weaponry during your untap step.${2}, {T}: Target creature gets +1/+1 for as long as Tawnos's Weaponry remains tapped.|
Tetravus|Antiquities|36|R|{6}|Artifact Creature - Construct|1|1|Flying$Tetravus enters the battlefield with three +1/+1 counters on it.$At the beginning of your upkeep, you may remove any number of +1/+1 counters from Tetravus. If you do, put that many 1/1 colorless Tetravite artifact creature tokens onto the battlefield. They each have flying and "This creature can't be enchanted."$At the beginning of your upkeep, you may exile any number of tokens put onto the battlefield with Tetravus. If you do, put that many +1/+1 counters on Tetravus.|
The Rack|Antiquities|37|U|{1}|Artifact|||As The Rack enters the battlefield, choose an opponent.$At the beginning of the chosen player's upkeep, The Rack deals X damage to that player, where X is 3 minus the number of cards in his or her hand.|
-Triskelion|Antiquities|38|R|{6}|Artifact Creature - Construct|1|1|Triskelion enters the battlefield with three +1/+1 counters on it.$Remove a +1/+1 counter from Triskelion: Triskelion deals 1 damage to target creature or player.|
+Triskelion|Antiquities|38|R|{6}|Artifact Creature - Construct|1|1|Triskelion enters the battlefield with three +1/+1 counters on it.$Remove a +1/+1 counter from Triskelion: Triskelion deals 1 damage to any target.|
Urza's Avenger|Antiquities|39|R|{6}|Artifact Creature - Shapeshifter|4|4|{0}: Urza's Avenger gets -1/-1 and gains your choice of banding, flying, first strike, or trample until end of turn. (Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding you control are blocking or being blocked by a creature, you divide that creature's combat damage, not its controller, among any of the creatures it's being blocked by or is blocking.)|
Ashnod's Battle Gear|Antiquities|4|U|{2}|Artifact|||You may choose not to untap Ashnod's Battle Gear during your untap step.${2}, {T}: Target creature you control gets +2/-2 for as long as Ashnod's Battle Gear remains tapped.|
Urza's Chalice|Antiquities|40|C|{1}|Artifact|||Whenever a player casts an artifact spell, you may pay {1}. If you do, you gain 1 life.|
@@ -331,7 +331,7 @@ Artifact Possession|Antiquities|45|C|{2}{B}|Enchantment - Aura|||Enchant artifac
Gate to Phyrexia|Antiquities|46|U|{B}{B}|Enchantment|||Sacrifice a creature: Destroy target artifact. Activate this ability only during your upkeep and only once each turn.|
Haunting Wind|Antiquities|47|U|{3}{B}|Enchantment|||Whenever an artifact becomes tapped or a player activates an artifact's ability without {T} in its activation cost, Haunting Wind deals 1 damage to that artifact's controller.|
Phyrexian Gremlins|Antiquities|48|C|{2}{B}|Creature - Gremlin|1|1|You may choose not to untap Phyrexian Gremlins during your untap step.${T}: Tap target artifact. It doesn't untap during its controller's untap step for as long as Phyrexian Gremlins remains tapped.|
-Priest of Yawgmoth|Antiquities|49|C|{1}{B}|Creature - Human Cleric|1|2|{T}, Sacrifice an artifact: Add to your mana pool an amount of {B} equal to the sacrificed artifact's converted mana cost.|
+Priest of Yawgmoth|Antiquities|49|C|{1}{B}|Creature - Human Cleric|1|2|{T}, Sacrifice an artifact: Add an amount of {B} equal to the sacrificed artifact's converted mana cost.|
Ashnod's Transmogrant|Antiquities|5|U|{1}|Artifact|||{T}, Sacrifice Ashnod's Transmogrant: Put a +1/+1 counter on target nonartifact creature. That creature becomes an artifact in addition to its other types.|
Xenic Poltergeist|Antiquities|50|U|{1}{B}{B}|Creature - Spirit|1|1|{T}: Until your next upkeep, target noncreature artifact becomes an artifact creature with power and toughness each equal to its converted mana cost.|
Yawgmoth Demon|Antiquities|51|R|{4}{B}{B}|Creature - Demon|6|6|Flying (This creature can't be blocked except by creatures with flying or reach.)$First strike (This creature deals combat damage before creatures without first strike.)$At the beginning of your upkeep, you may sacrifice an artifact. If you don't, tap Yawgmoth Demon and it deals 2 damage to you.|
@@ -364,7 +364,7 @@ Detonate|Antiquities|89|U|{X}{R}|Sorcery|||Destroy target artifact with converte
Clay Statue|Antiquities|9|C|{4}|Artifact Creature - Golem|3|1|{2}: Regenerate Clay Statue.|
Dwarven Weaponsmith|Antiquities|90|U|{1}{R}|Creature - Dwarf Artificer|1|1|{T}, Sacrifice an artifact: Put a +1/+1 counter on target creature. Activate this ability only during your upkeep.|
Goblin Artisans|Antiquities|91|U|{R}|Creature - Goblin Artificer|1|1|{T}: Flip a coin. If you win the flip, draw a card. If you lose the flip, counter target artifact spell you control that isn't the target of an ability from another creature named Goblin Artisans.|
-Orcish Mechanics|Antiquities|92|C|{2}{R}|Creature - Orc|1|1|{T}, Sacrifice an artifact: Orcish Mechanics deals 2 damage to target creature or player.|
+Orcish Mechanics|Antiquities|92|C|{2}{R}|Creature - Orc|1|1|{T}, Sacrifice an artifact: Orcish Mechanics deals 2 damage to any target.|
Shatterstorm|Antiquities|93|R|{2}{R}{R}|Sorcery|||Destroy all artifacts. They can't be regenerated.|
Argivian Archaeologist|Antiquities|94|R|{1}{W}{W}|Creature - Human Artificer|1|1|{W}{W}, {T}: Return target artifact card from your graveyard to your hand.|
Argivian Blacksmith|Antiquities|95|C|{1}{W}{W}|Creature - Human Artificer|2|2|{T}: Prevent the next 2 damage that would be dealt to target artifact creature this turn.|
@@ -373,11 +373,11 @@ Circle of Protection: Artifacts|Antiquities|97|U|{1}{W}|Enchantment|||{2}: The n
Damping Field|Antiquities|98|U|{2}{W}|Enchantment|||Players can't untap more than one artifact during their untap steps.|
Martyrs of Korlis|Antiquities|99|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.|
Angelfire Crusader|Apocalypse|1|C|{3}{W}|Creature - Human Soldier Knight|2|3|{R}: Angelfire Crusader gets +1/+0 until end of turn.|
-False Dawn|Apocalypse|10|R|{1}{W}|Sorcery|||Until end of turn, spells and abilities you control that would add colored mana to your mana pool add that much white mana instead. Until end of turn, you may spend white mana as though it were mana of any color.$$Draw a card.|
+False Dawn|Apocalypse|10|R|{1}{W}|Sorcery|||Until end of turn, spells and abilities you control that would add colored mana add that much white mana instead. Until end of turn, you may spend white mana as though it were mana of any color.$$Draw a card.|
Fungal Shambler|Apocalypse|100|R|{4}{G}{U}{B}|Creature - Fungus Beast|6|4|Trample$Whenever Fungal Shambler deals damage to an opponent, you draw a card and that opponent discards a card.|
Gaea's Skyfolk|Apocalypse|101|C|{G}{U}|Creature - Elf Merfolk|2|2|Flying|
Gerrard's Verdict|Apocalypse|102|U|{W}{B}|Sorcery|||Target player discards two cards. You gain 3 life for each land card discarded this way.|
-Goblin Legionnaire|Apocalypse|103|C|{R}{W}|Creature - Goblin Soldier|2|2|{R}, Sacrifice Goblin Legionnaire: Goblin Legionnaire deals 2 damage to target creature or player.${W}, Sacrifice Goblin Legionnaire: Prevent the next 2 damage that would be dealt to target creature or player this turn.|
+Goblin Legionnaire|Apocalypse|103|C|{R}{W}|Creature - Goblin Soldier|2|2|{R}, Sacrifice Goblin Legionnaire: Goblin Legionnaire deals 2 damage to any target.${W}, Sacrifice Goblin Legionnaire: Prevent the next 2 damage that would be dealt to any target this turn.|
Goblin Trenches|Apocalypse|104|R|{1}{R}{W}|Enchantment|||{2}, Sacrifice a land: Put two 1/1 red and white Goblin Soldier creature tokens onto the battlefield.|
Guided Passage|Apocalypse|105|R|{U}{R}{G}|Sorcery|||Reveal the cards in your library. An opponent chooses from among them a creature card, a land card, and a noncreature, nonland card. You put the chosen cards into your hand. Then shuffle your library.|
Jungle Barrier|Apocalypse|106|U|{2}{G}{U}|Creature - Plant Wall|2|6|Defender (This creature can't attack.)$When Jungle Barrier enters the battlefield, draw a card.|
@@ -391,10 +391,10 @@ Mystic Snake|Apocalypse|112|R|{1}{G}{U}{U}|Creature - Snake|2|2|Flash (You ma
Overgrown Estate|Apocalypse|113|R|{B}{G}{W}|Enchantment|||Sacrifice a land: You gain 3 life.|
Pernicious Deed|Apocalypse|114|R|{1}{B}{G}|Enchantment|||{X}, Sacrifice Pernicious Deed: Destroy each artifact, creature, and enchantment with converted mana cost X or less.|
Powerstone Minefield|Apocalypse|115|R|{2}{R}{W}|Enchantment|||Whenever a creature attacks or blocks, Powerstone Minefield deals 2 damage to it.|
-Prophetic Bolt|Apocalypse|116|R|{3}{U}{R}|Instant|||Prophetic Bolt deals 4 damage to target creature or player. Look at the top four cards of your library. Put one of those cards into your hand and the rest on the bottom of your library in any order.|
+Prophetic Bolt|Apocalypse|116|R|{3}{U}{R}|Instant|||Prophetic Bolt deals 4 damage to any target. Look at the top four cards of your library. Put one of those cards into your hand and the rest on the bottom of your library in any order.|
Putrid Warrior|Apocalypse|117|C|{W}{B}|Creature - Zombie Soldier Warrior|2|2|Whenever Putrid Warrior deals damage, choose one - Each player loses 1 life; or each player gains 1 life.|
Quicksilver Dagger|Apocalypse|118|C|{1}{U}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{T}: This creature deals 1 damage to target player. You draw a card."|
-Razorfin Hunter|Apocalypse|119|C|{U}{R}|Creature - Merfolk Goblin|1|1|{T}: Razorfin Hunter deals 1 damage to target creature or player.|
+Razorfin Hunter|Apocalypse|119|C|{U}{R}|Creature - Merfolk Goblin|1|1|{T}: Razorfin Hunter deals 1 damage to any target.|
Haunted Angel|Apocalypse|12|U|{2}{W}|Creature - Angel|3|3|Flying$When Haunted Angel dies, exile Haunted Angel and each other player puts a 3/3 black Angel creature token with flying onto the battlefield.|
Soul Link|Apocalypse|120|C|{1}{W}{B}|Enchantment - Aura|||Enchant creature$Whenever enchanted creature deals damage, you gain that much life.$Whenever enchanted creature is dealt damage, you gain that much life.|
Spiritmonger|Apocalypse|121|R|{3}{B}{G}|Creature - Beast|6|6|Whenever Spiritmonger deals damage to a creature, put a +1/+1 counter on Spiritmonger.${B}: Regenerate Spiritmonger.${G}: Spiritmonger becomes the color of your choice until end of turn.|
@@ -412,7 +412,7 @@ Illusion|Apocalypse|129a|U|{U}|Instant|||Target spell or permanent becomes the c
Reality|Apocalypse|129b|U|{2}{G}|Instant|||$Destroy target artifact.|
Illusion|Apocalypse|129a|U|{U}|Instant|||Target spell or permanent becomes the color of your choice until end of turn.$|
Reality|Apocalypse|129b|U|{2}{G}|Instant|||$Destroy target artifact.|
-Helionaut|Apocalypse|13|C|{2}{W}|Creature - Human Soldier|1|2|Flying${1}, {T}: Add one mana of any color to your mana pool.|
+Helionaut|Apocalypse|13|C|{2}{W}|Creature - Human Soldier|1|2|Flying${1}, {T}: Add one mana of any color.|
Life|Apocalypse|130a|U|{G}|Sorcery|||All lands you control become 1/1 creatures until end of turn. They're still lands.$|
Death|Apocalypse|130b|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|130a|U|{G}|Sorcery|||All lands you control become 1/1 creatures until end of turn. They're still lands.$|
@@ -441,7 +441,7 @@ Orim's Thunder|Apocalypse|15|C|{2}{W}|Instant|||Kicker {R} (You may pay an ad
Shield of Duty and Reason|Apocalypse|16|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature has protection from green and from blue.|
Spectral Lynx|Apocalypse|17|R|{1}{W}|Creature - Cat Spirit|2|1|Protection from green${B}: Regenerate Spectral Lynx.|
Standard Bearer|Apocalypse|18|C|{1}{W}|Creature - Human Flagbearer|1|1|While choosing targets as part of casting a spell or activating an ability, your opponents must choose at least one Flagbearer on the battlefield if able.|
-Ceta Disciple|Apocalypse|19|C|{U}|Creature - Merfolk Wizard|1|1|{R}, {T}: Target creature gets +2/+0 until end of turn.${G}, {T}: Add one mana of any color to your mana pool.|
+Ceta Disciple|Apocalypse|19|C|{U}|Creature - Merfolk Wizard|1|1|{R}, {T}: Target creature gets +2/+0 until end of turn.${G}, {T}: Add one mana of any color.|
Coalition Flag|Apocalypse|2|U|{W}|Enchantment - Aura|||Enchant creature you control$Enchanted creature is a Flagbearer.$While choosing targets as part of casting a spell or activating an ability, your opponents must choose at least one Flagbearer on the battlefield if able.|
Ceta Sanctuary|Apocalypse|20|U|{2}{U}|Enchantment|||At the beginning of your upkeep, if you control a red or green permanent, draw a card, then discard a card. If you control a red permanent and a green permanent, instead draw two cards, then discard a card.|
Cetavolver|Apocalypse|21|R|{1}{U}|Creature - Volver|1|1|Kicker {1}{R} and/or {G} (You may pay an additional {1}{R} and/or {G} as you cast this spell.)$If Cetavolver was kicked with its {1}{R} kicker, it enters the battlefield with two +1/+1 counters on it and with first strike.$If Cetavolver was kicked with its {G} kicker, it enters the battlefield with a +1/+1 counter on it and with trample.|
@@ -469,7 +469,7 @@ Grave Defiler|Apocalypse|40|U|{3}{B}|Creature - Zombie|2|1|When Grave Defiler en
Last Caress|Apocalypse|41|C|{2}{B}|Sorcery|||Target player loses 1 life and you gain 1 life.$$Draw a card.|
Mind Extraction|Apocalypse|42|C|{2}{B}|Sorcery|||As an additional cost to cast Mind Extraction, sacrifice a creature.$Target player reveals his or her hand and discards all cards of each of the sacrificed creature's colors.|
Mournful Zombie|Apocalypse|43|C|{2}{B}|Creature - Zombie|2|1|{W}, {T}: Target player gains 1 life.|
-Necra Disciple|Apocalypse|44|C|{B}|Creature - Human Wizard|1|1|{G}, {T}: Add one mana of any color to your mana pool.${W}, {T}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Necra Disciple|Apocalypse|44|C|{B}|Creature - Human Wizard|1|1|{G}, {T}: Add one mana of any color.${W}, {T}: Prevent the next 1 damage that would be dealt to any target this turn.|
Necra Sanctuary|Apocalypse|45|U|{2}{B}|Enchantment|||At the beginning of your upkeep, if you control a green or white permanent, target player loses 1 life. If you control a green permanent and a white permanent, that player loses 3 life instead.|
Necravolver|Apocalypse|46|R|{2}{B}|Creature - Volver|2|2|Kicker {1}{G} and/or {W} (You may pay an additional {1}{G} and/or {W} as you cast this spell.)$If Necravolver was kicked with its {1}{G} kicker, it enters the battlefield with two +1/+1 counters on it and with trample.$If Necravolver was kicked with its {W} kicker, it enters the battlefield with a +1/+1 counter on it and with "Whenever Necravolver deals damage, you gain that much life."|
Phyrexian Arena|Apocalypse|47|R|{1}{B}{B}|Enchantment|||At the beginning of your upkeep, you draw a card and you lose 1 life.|
@@ -493,7 +493,7 @@ Goblin Ringleader|Apocalypse|62|U|{3}{R}|Creature - Goblin|2|2|Haste$When Goblin
Illuminate|Apocalypse|63|U|{X}{R}|Sorcery|||Kicker {2}{R} and/or {3}{U} (You may pay an additional {2}{R} and/or {3}{U} as you cast this spell.)$Illuminate deals X damage to target creature. If Illuminate was kicked with its {2}{R} kicker, it deals X damage to that creature's controller. If Illuminate was kicked with its {3}{U} kicker, you draw X cards.|
Kavu Glider|Apocalypse|64|C|{2}{R}|Creature - Kavu|2|1|{W}: Kavu Glider gets +0/+1 until end of turn.${U}: Kavu Glider gains flying until end of turn.|
Minotaur Tactician|Apocalypse|65|C|{3}{R}|Creature - Minotaur|1|1|Haste$Minotaur Tactician gets +1/+1 as long as you control a white creature.$Minotaur Tactician gets +1/+1 as long as you control a blue creature.|
-Raka Disciple|Apocalypse|66|C|{R}|Creature - Minotaur Wizard|1|1|{W}, {T}: Prevent the next 1 damage that would be dealt to target creature or player this turn.${U}, {T}: Target creature gains flying until end of turn.|
+Raka Disciple|Apocalypse|66|C|{R}|Creature - Minotaur Wizard|1|1|{W}, {T}: Prevent the next 1 damage that would be dealt to any target this turn.${U}, {T}: Target creature gains flying until end of turn.|
Raka Sanctuary|Apocalypse|67|U|{2}{R}|Enchantment|||At the beginning of your upkeep, if you control a white or blue permanent, Raka Sanctuary deals 1 damage to target creature. If you control a white permanent and a blue permanent, Raka Sanctuary deals 3 damage to that creature instead.|
Rakavolver|Apocalypse|68|R|{2}{R}|Creature - Volver|2|2|Kicker {1}{W} and/or {U} (You may pay an additional {1}{W} and/or {U} as you cast this spell.)$If Rakavolver was kicked with its {1}{W} kicker, it enters the battlefield with two +1/+1 counters on it and with "Whenever Rakavolver deals damage, you gain that much life."$If Rakavolver was kicked with its {U} kicker, it enters the battlefield with a +1/+1 counter on it and with flying.|
Smash|Apocalypse|69|C|{2}{R}|Instant|||Destroy target artifact.$Draw a card.|
@@ -522,15 +522,15 @@ Tranquil Path|Apocalypse|89|C|{4}{G}|Sorcery|||Destroy all enchantments.$$Draw a
Enlistment Officer|Apocalypse|9|U|{3}{W}|Creature - Human Soldier|2|3|First strike$When Enlistment Officer enters the battlefield, reveal the top four cards of your library. Put all Soldier cards revealed this way into your hand and the rest on the bottom of your library in any order.|
Urborg Elf|Apocalypse|90|C|{1}{G}|Creature - Elf Druid|1|1|{T}: Add {G}, {U}, or {B}.|
AEther Mutation|Apocalypse|91|U|{3}{G}{U}|Sorcery|||Return target creature to its owner's hand. Put X 1/1 green Saproling creature tokens onto the battlefield, where X is that creature's converted mana cost.|
-Captain's Maneuver|Apocalypse|92|U|{X}{R}{W}|Instant|||The next X damage that would be dealt to target creature or player this turn is dealt to another target creature or player instead.|
+Captain's Maneuver|Apocalypse|92|U|{X}{R}{W}|Instant|||The next X damage that would be dealt to any target this turn is dealt to another any target instead.|
Consume Strength|Apocalypse|93|C|{1}{B}{G}|Instant|||Target creature gets +2/+2 until end of turn. Another target creature gets -2/-2 until end of turn.|
Cromat|Apocalypse|94|R|{W}{U}{B}{R}{G}|Legendary Creature - Illusion|5|5|{W}{B}: Destroy target creature blocking or blocked by Cromat.${U}{R}: Cromat gains flying until end of turn.${B}{G}: Regenerate Cromat.${R}{W}: Cromat gets +1/+1 until end of turn.${G}{U}: Put Cromat on top of its owner's library.|
-Death Grasp|Apocalypse|95|R|{X}{W}{B}|Sorcery|||Death Grasp deals X damage to target creature or player. You gain X life.|
+Death Grasp|Apocalypse|95|R|{X}{W}{B}|Sorcery|||Death Grasp deals X damage to any target. You gain X life.|
Death Mutation|Apocalypse|96|U|{6}{B}{G}|Sorcery|||Destroy target nonblack creature. It can't be regenerated. Put X 1/1 green Saproling creature tokens onto the battlefield, where X is that creature's converted mana cost.|
Ebony Treefolk|Apocalypse|97|U|{1}{B}{G}|Creature - Treefolk|3|3|{B}{G}: Ebony Treefolk gets +1/+1 until end of turn.|
Fervent Charge|Apocalypse|98|R|{1}{W}{B}{R}|Enchantment|||Whenever a creature you control attacks, it gets +2/+2 until end of turn.|
Flowstone Charger|Apocalypse|99|U|{2}{R}{W}|Creature - Beast|2|5|Whenever Flowstone Charger attacks, it gets +3/-3 until end of turn.|
-Cuombajj Witches|Arabian Nights|1|C|{B}{B}|Creature - Human Wizard|1|3|{T}: Cuombajj Witches deals 1 damage to target creature or player and 1 damage to target creature or player of an opponent's choice.|
+Cuombajj Witches|Arabian Nights|1|C|{B}{B}|Creature - Human Wizard|1|3|{T}: Cuombajj Witches deals 1 damage to any target and 1 damage to any target of an opponent's choice.|
Khabal Ghoul|Arabian Nights|10|U|{2}{B}|Creature - Zombie|1|1|At the beginning of each end step, put a +1/+1 counter on Khabál Ghoul for each creature that died this turn.|
Oubliette|Arabian Nights|11|C|{1}{B}{B}|Enchantment|||When Oubliette enters the battlefield, exile target creature and all Auras attached to it. Note the number and kind of counters that were on that creature.$When Oubliette leaves the battlefield, return the exiled card to the battlefield under its owner's control tapped with the noted number and kind of counters on it. If you do, return the exiled Aura cards to the battlefield under their owner's control attached to that permanent.|
Sorceress Queen|Arabian Nights|13|U|{1}{B}{B}|Creature - Human Wizard|1|1|{T}: Target creature other than Sorceress Queen becomes 0/2 until end of turn.|
@@ -554,7 +554,7 @@ Drop of Honey|Arabian Nights|31|R|{G}|Enchantment|||At the beginning of your upk
Erhnam Djinn|Arabian Nights|32|R|{3}{G}|Creature - Djinn|4|5|At the beginning of your upkeep, target non-Wall creature an opponent controls gains forestwalk until your next upkeep.|
Ghazban Ogre|Arabian Nights|33|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.|
Ifh-Biff Efreet|Arabian Nights|34|R|{2}{G}{G}|Creature - Efreet|3|3|Flying${G}: Ifh-Biff Efreet deals 1 damage to each creature with flying and each player. Any player may activate this ability.|
-Metamorphosis|Arabian Nights|35|C|{G}|Sorcery|||As an additional cost to cast Metamorphosis, sacrifice a creature.$Add X mana of any one color to your mana pool, where X is one plus the sacrificed creature's converted mana cost. Spend this mana only to cast creature spells.|
+Metamorphosis|Arabian Nights|35|C|{G}|Sorcery|||As an additional cost to cast Metamorphosis, sacrifice a creature.$Add X mana of any one color, where X is one plus the sacrificed creature's converted mana cost. Spend this mana only to cast creature spells.|
Nafs Asp|Arabian Nights|36|C|{G}|Creature - Snake|1|1|Whenever Nafs Asp deals damage to a player, that player loses 1 life at the beginning of his or her next draw step unless he or she pays {1} before that draw step.|
Sandstorm|Arabian Nights|38|C|{G}|Instant|||Sandstorm deals 1 damage to each attacking creature.|
Singing Tree|Arabian Nights|39|R|{3}{G}|Creature - Plant|0|3|{T}: Target attacking creature's power becomes 0 until end of turn.|
@@ -584,7 +584,7 @@ Repentant Blacksmith|Arabian Nights|66|R|{1}{W}|Creature - Human|1|2|Protection
Shahrazad|Arabian Nights|67|R|{W}{W}|Sorcery|||Players play a MAGIC subgame, using their libraries as their decks. Each player who doesn't win the subgame loses half his or her life, rounded up.|
War Elephant|Arabian Nights|68|C|{3}{W}|Creature - Elephant|2|2|Trample; banding (Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding you control are blocking or being blocked by a creature, you divide that creature's combat damage, not its controller, among any of the creatures it's being blocked by or is blocking.)|
Aladdin's Lamp|Arabian Nights|70|R|{10}|Artifact|||{X}, {T}: The next time you would draw a card this turn, instead look at the top X cards of your library, put all but one of them on the bottom of your library in a random order, then draw a card. X can't be 0.|
-Aladdin's Ring|Arabian Nights|71|R|{8}|Artifact|||{8}, {T}: Aladdin's Ring deals 4 damage to target creature or player.|
+Aladdin's Ring|Arabian Nights|71|R|{8}|Artifact|||{8}, {T}: Aladdin's Ring deals 4 damage to any target.|
Bottle of Suleiman|Arabian Nights|72|R|{4}|Artifact|||{1}, Sacrifice Bottle of Suleiman: Flip a coin. If you lose the flip, Bottle of Suleiman deals 5 damage to you. If you win the flip, put a 5/5 colorless Djinn artifact creature token with flying onto the battlefield.|
Brass Man|Arabian Nights|73|U|{1}|Artifact Creature - Construct|1|3|Brass Man doesn't untap during your untap step.$At the beginning of your upkeep, you may pay {1}. If you do, untap Brass Man.|
City in a Bottle|Arabian Nights|74|R|{2}|Artifact|||Whenever a nontoken permanent from the Arabian Nights expansion other than City in a Bottle is on the battlefield, its controller sacrifices it.$Players can't play cards from the Arabian Nights expansion.|
@@ -599,7 +599,7 @@ Pyramids|Arabian Nights|81|R|{6}|Artifact|||{2}: Choose one - Destroy target Aur
Ring of Ma'ruf|Arabian Nights|82|R|{5}|Artifact|||{5}, {T}, Exile Ring of Ma'rûf: The next time you would draw a card this turn, instead choose a card you own from outside the game and put it into your hand.|
Sandals of Abdallah|Arabian Nights|83|U|{4}|Artifact|||{2}, {T}: Target creature gains islandwalk until end of turn. When that creature dies this turn, destroy Sandals of Abdallah.|
Bazaar of Baghdad|Arabian Nights|84|U||Land|||{T}: Draw two cards, then discard three cards.|
-City of Brass|Arabian Nights|85|U||Land|||Whenever City of Brass becomes tapped, it deals 1 damage to you.${T}: Add one mana of any color to your mana pool.|
+City of Brass|Arabian Nights|85|U||Land|||Whenever City of Brass becomes tapped, it deals 1 damage to you.${T}: Add one mana of any color.|
Desert|Arabian Nights|86|C||Land - Desert|||{T}: Add {C}.${T}: Desert deals 1 damage to target attacking creature. Activate this ability only during the end of combat step.|
Diamond Valley|Arabian Nights|87|U||Land|||{T}, Sacrifice a creature: You gain life equal to the sacrificed creature's toughness.|
Elephant Graveyard|Arabian Nights|88|R||Land|||{T}: Add {C}.${T}: Regenerate target Elephant.|
@@ -691,18 +691,18 @@ Dragon Fodder|Archenemy|34|C|{1}{R}|Sorcery|||Put two 1/1 red Goblin creature to
Dragon Whelp|Archenemy|35|U|{2}{R}{R}|Creature - Dragon|2|3|Flying${R}: Dragon Whelp gets +1/+0 until end of turn. If this ability has been activated four or more times this turn, sacrifice Dragon Whelp at the beginning of the next end step.|
Dragonspeaker Shaman|Archenemy|36|U|{1}{R}{R}|Creature - Human Barbarian Shaman|2|2|Dragon spells you cast cost {2} less to cast.|
Fireball|Archenemy|37|U|{X}{R}|Sorcery|||Fireball deals X damage divided evenly, rounded down, among any number of target creatures and/or players.$Fireball costs {1} more to cast for each target beyond the first.|
-Flameblast Dragon|Archenemy|38|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.|
+Flameblast Dragon|Archenemy|38|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 any target.|
Furnace Whelp|Archenemy|39|U|{2}{R}{R}|Creature - Dragon|2|2|Flying${R}: Furnace Whelp gets +1/+0 until end of turn.|
Path to Exile|Archenemy|4|U|{W}|Instant|||Exile target creature. Its controller may search his or her library for a basic land card, put that card onto the battlefield tapped, then shuffle his or her library.|
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 card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
Hellkite Charger|Archenemy|41|R|{4}{R}{R}|Creature - Dragon|5|5|Flying, haste$Whenever Hellkite Charger attacks, you may pay {5}{R}{R}. If you do, untap all attacking creatures and after this phase, there is an additional combat phase.|
Imperial Hellkite|Archenemy|42|R|{5}{R}{R}|Creature - Dragon|6|6|Flying$Morph {6}{R}{R} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Imperial Hellkite is turned face up, you may search your library for a Dragon card, reveal it, and put it into your hand. If you do, shuffle your library.|
Inferno Trap|Archenemy|43|U|{3}{R}|Instant - Trap|||If you've been dealt damage by two or more creatures this turn, you may pay {R} rather than pay Inferno Trap's mana cost.$Inferno Trap deals 4 damage to target creature.|
-Kilnmouth Dragon|Archenemy|44|R|{5}{R}{R}|Creature - Dragon|5|5|Amplify 3 (As this creature enters the battlefield, put three +1/+1 counters on it for each Dragon card you reveal in your hand.)$Flying${T}: Kilnmouth Dragon deals damage equal to the number of +1/+1 counters on it to target creature or player.|
+Kilnmouth Dragon|Archenemy|44|R|{5}{R}{R}|Creature - Dragon|5|5|Amplify 3 (As this creature enters the battlefield, put three +1/+1 counters on it for each Dragon card you reveal in your hand.)$Flying${T}: Kilnmouth Dragon deals damage equal to the number of +1/+1 counters on it to any target.|
Ryusei, the Falling Star|Archenemy|45|R|{5}{R}|Legendary Creature - Dragon Spirit|5|5|Flying$When Ryusei, the Falling Star dies, it deals 5 damage to each creature without flying.|
Seething Song|Archenemy|46|C|{2}{R}|Instant|||Add {R}{R}{R}{R}{R}.|
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 card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
-Skirk Marauder|Archenemy|48|C|{1}{R}|Creature - Goblin|2|1|Morph {2}{R} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Skirk Marauder is turned face up, it deals 2 damage to target creature or player.|
+Skirk Marauder|Archenemy|48|C|{1}{R}|Creature - Goblin|2|1|Morph {2}{R} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Skirk Marauder is turned face up, it deals 2 damage to any target.|
Taurean Mauler|Archenemy|49|R|{2}{R}|Creature - Shapeshifter|2|2|Changeling (This card is every creature type at all times.)$Whenever an opponent casts a spell, you may put a +1/+1 counter on Taurean Mauler.|
Sanctum Gargoyle|Archenemy|5|C|{3}{W}|Artifact Creature - Gargoyle|2|3|Flying$When Sanctum Gargoyle enters the battlefield, you may return target artifact card from your graveyard to your hand.|
Two-Headed Dragon|Archenemy|50|R|{4}{R}{R}|Creature - Dragon|4|4|Flying${1}{R}: Two-Headed Dragon gets +2/+0 until end of turn.$Two-Headed Dragon can't be blocked except by two or more creatures.$Two-Headed Dragon can block an additional creature each combat.|
@@ -746,7 +746,7 @@ Ethersworn Shieldmage|Archenemy|84|C|{1}{W}{U}|Artifact Creature - Vedalken Wiza
Fieldmist Borderpost|Archenemy|85|C|{1}{W}{U}|Artifact|||You may pay {1} and return a basic land you control to its owner's hand rather than pay Fieldmist Borderpost's mana cost.$Fieldmist Borderpost enters the battlefield tapped.${T}: Add {W} or {U}.|
Fires of Yavimaya|Archenemy|86|U|{1}{R}{G}|Enchantment|||Creatures you control have haste.$Sacrifice Fires of Yavimaya: Target creature gets +2/+2 until end of turn.|
Heroes' Reunion|Archenemy|87|U|{G}{W}|Instant|||Target player gains 7 life.|
-Kaervek the Merciless|Archenemy|88|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.|
+Kaervek the Merciless|Archenemy|88|R|{5}{B}{R}|Legendary Creature - Human Shaman|5|4|Whenever an opponent casts a spell, Kaervek the Merciless deals damage to any target equal to that spell's converted mana cost.|
Magister Sphinx|Archenemy|89|R|{4}{W}{U}{B}|Artifact Creature - Sphinx|5|5|Flying$When Magister Sphinx enters the battlefield, target player's life total becomes 10.|
Avatar of Woe|Archenemy|9|R|{6}{B}{B}|Creature - Avatar|6|5|If there are ten or more creature cards total in all graveyards, Avatar of Woe costs {6} less to cast.$Fear (This creature can't be blocked except by artifact creatures and/or black creatures.)${T}: Destroy target creature. It can't be regenerated.|
Mistvein Borderpost|Archenemy|90|C|{1}{U}{B}|Artifact|||You may pay {1} and return a basic land you control to its owner's hand rather than pay Mistvein Borderpost's mana cost.$Mistvein Borderpost enters the battlefield tapped.${T}: Add {U} or {B}.|
@@ -794,7 +794,7 @@ Banners Raised|Avacyn Restored|127|C|{R}|Instant|||Creatures you control get +1/
Battle Hymn|Avacyn Restored|128|C|{1}{R}|Instant|||Add {R} for each creature you control.|
Bonfire of the Damned|Avacyn Restored|129|M|{X}{X}{R}|Sorcery|||Bonfire of the Damned deals X damage to target player and each creature he or she controls.$Miracle {X}{R} (You may cast this card for its miracle cost when you draw it if it's the first card you drew this turn.)|
Commander's Authority|Avacyn Restored|13|U|{4}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature has "At the beginning of your upkeep, put a 1/1 white Human creature token onto the battlefield."|
-Burn at the Stake|Avacyn Restored|130|R|{2}{R}{R}{R}|Sorcery|||As an additional cost to cast Burn at the Stake, tap any number of untapped creatures you control.$Burn at the Stake deals damage to target creature or player equal to three times the number of creatures tapped this way.|
+Burn at the Stake|Avacyn Restored|130|R|{2}{R}{R}{R}|Sorcery|||As an additional cost to cast Burn at the Stake, tap any number of untapped creatures you control.$Burn at the Stake deals damage to any target equal to three times the number of creatures tapped this way.|
Dangerous Wager|Avacyn Restored|131|C|{1}{R}|Instant|||Discard your hand, then draw two cards.|
Demolish|Avacyn Restored|132|C|{3}{R}|Sorcery|||Destroy target artifact or land.|
Dual Casting|Avacyn Restored|133|R|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{R}, {T}: Copy target instant or sorcery spell you control. You may choose new targets for the copy."|
@@ -810,11 +810,11 @@ Hound of Griselbrand|Avacyn Restored|141|R|{2}{R}{R}|Creature - Elemental Hound|
Kessig Malcontents|Avacyn Restored|142|U|{2}{R}|Creature - Human Warrior|3|1|When Kessig Malcontents enters the battlefield, it deals damage to target player equal to the number of Humans you control.|
Kruin Striker|Avacyn Restored|143|C|{1}{R}|Creature - Human Warrior|2|1|Whenever another creature enters the battlefield under your control, Kruin Striker gets +1/+0 and gains trample until end of turn.|
Lightning Mauler|Avacyn Restored|144|U|{1}{R}|Creature - Human Berserker|2|1|Soulbond (You may pair this creature with another unpaired creature when either enters the battlefield. They remain paired for as long as you control both of them.)$As long as Lightning Mauler is paired with another creature, both creatures have haste.|
-Lightning Prowess|Avacyn Restored|145|U|{2}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has haste and "{T}: This creature deals 1 damage to target creature or player."|
+Lightning Prowess|Avacyn Restored|145|U|{2}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has haste and "{T}: This creature deals 1 damage to any target."|
Mad Prophet|Avacyn Restored|146|C|{3}{R}|Creature - Human Shaman|2|2|Haste${T}, Discard a card: Draw a card.|
Malicious Intent|Avacyn Restored|147|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{T}: Target creature can't block this turn."|
Malignus|Avacyn Restored|148|M|{3}{R}{R}|Creature - Elemental Spirit|*|*|Malignus's power and toughness are each equal to half the highest life total among your opponents, rounded up.$Damage that would be dealt by Malignus can't be prevented.|
-Pillar of Flame|Avacyn Restored|149|C|{R}|Sorcery|||Pillar of Flame deals 2 damage to target creature or player. If a creature dealt damage this way would die this turn, exile it instead.|
+Pillar of Flame|Avacyn Restored|149|C|{R}|Sorcery|||Pillar of Flame deals 2 damage to any target. If a creature dealt damage this way would die this turn, exile it instead.|
Defang|Avacyn Restored|15|C|{1}{W}|Enchantment - Aura|||Enchant creature$Prevent all damage that would be dealt by enchanted creature.|
Raging Poltergeist|Avacyn Restored|150|C|{4}{R}|Creature - Spirit|6|1||
Reforge the Soul|Avacyn Restored|151|R|{3}{R}{R}|Sorcery|||Each player discards his or her hand and draws seven cards.$Miracle {1}{R} (You may cast this card for its miracle cost when you draw it if it's the first card you drew this turn.)|
@@ -827,14 +827,14 @@ Stonewright|Avacyn Restored|157|U|{R}|Creature - Human Shaman|1|1|Soulbond (Y
Thatcher Revolt|Avacyn Restored|158|C|{2}{R}|Sorcery|||Put three 1/1 red Human creature tokens with haste onto the battlefield. Sacrifice those tokens at the beginning of the next end step.|
Thunderbolt|Avacyn Restored|159|C|{1}{R}|Instant|||Choose one - Thunderbolt deals 3 damage to target player; or Thunderbolt deals 4 damage to target creature with flying.|
Defy Death|Avacyn Restored|16|U|{3}{W}{W}|Sorcery|||Return target creature card from your graveyard to the battlefield. If it's an Angel, put two +1/+1 counters on it.|
-Thunderous Wrath|Avacyn Restored|160|U|{4}{R}{R}|Instant|||Thunderous Wrath deals 5 damage to target creature or player.$Miracle {R} (You may cast this card for its miracle cost when you draw it if it's the first card you drew this turn.)|
+Thunderous Wrath|Avacyn Restored|160|U|{4}{R}{R}|Instant|||Thunderous Wrath deals 5 damage to any target.$Miracle {R} (You may cast this card for its miracle cost when you draw it if it's the first card you drew this turn.)|
Tibalt, the Fiend-Blooded|Avacyn Restored|161|M|{R}{R}|Legendary Planeswalker - Tibalt|||+1: Draw a card, then discard a card at random.$-4: Tibalt, the Fiend-Blooded deals damage equal to the number of cards in target player's hand to that player.$-6: Gain control of all creatures until end of turn. Untap them. They gain haste until end of turn.|
Tyrant of Discord|Avacyn Restored|162|R|{4}{R}{R}{R}|Creature - Elemental|7|7|When Tyrant of Discord enters the battlefield, target opponent chooses a permanent he or she controls at random and sacrifices it. If a nonland permanent is sacrificed this way, repeat this process.|
Uncanny Speed|Avacyn Restored|163|C|{1}{R}|Instant|||Target creature gets +3/+0 and gains haste until end of turn.|
Vexing Devil|Avacyn Restored|164|R|{R}|Creature - Devil|4|3|When Vexing Devil enters the battlefield, any opponent may have it deal 4 damage to him or her. If a player does, sacrifice Vexing Devil.|
-Vigilante Justice|Avacyn Restored|165|U|{3}{R}|Enchantment|||Whenever a Human enters the battlefield under your control, Vigilante Justice deals 1 damage to target creature or player.|
+Vigilante Justice|Avacyn Restored|165|U|{3}{R}|Enchantment|||Whenever a Human enters the battlefield under your control, Vigilante Justice deals 1 damage to any target.|
Zealous Conscripts|Avacyn Restored|166|R|{4}{R}|Creature - Human Warrior|3|3|Haste$When Zealous Conscripts enters the battlefield, gain control of target permanent until end of turn. Untap that permanent. It gains haste until end of turn.|
-Abundant Growth|Avacyn Restored|167|C|{G}|Enchantment - Aura|||Enchant land$When Abundant Growth enters the battlefield, draw a card.$Enchanted land has "{T}: Add one mana of any color to your mana pool."|
+Abundant Growth|Avacyn Restored|167|C|{G}|Enchantment - Aura|||Enchant land$When Abundant Growth enters the battlefield, draw a card.$Enchanted land has "{T}: Add one mana of any color."|
Blessings of Nature|Avacyn Restored|168|U|{4}{G}|Sorcery|||Distribute four +1/+1 counters among any number of target creatures.$Miracle {G} (You may cast this card for its miracle cost when you draw it if it's the first card you drew this turn.)|
Borderland Ranger|Avacyn Restored|169|C|{2}{G}|Creature - Human Scout|2|2|When Borderland Ranger enters the battlefield, you may search your library for a basic land card, reveal it, and put it into your hand. If you do, shuffle your library.|
Devout Chaplain|Avacyn Restored|17|U|{2}{W}|Creature - Human Cleric|2|2|{T}, Tap two untapped Humans you control: Exile target artifact or enchantment.|
@@ -844,11 +844,11 @@ Craterhoof Behemoth|Avacyn Restored|172|M|{5}{G}{G}{G}|Creature - Beast|5|5|Hast
Descendants' Path|Avacyn Restored|173|R|{2}{G}|Enchantment|||At the beginning of your upkeep, reveal the top card of your library. If it's a creature card that shares a creature type with a creature you control, you may cast that card without paying its mana cost. Otherwise, put that card on the bottom of your library.|
Diregraf Escort|Avacyn Restored|174|C|{G}|Creature - Human Cleric|1|1|Soulbond (You may pair this creature with another unpaired creature when either enters the battlefield. They remain paired for as long as you control both of them.)$As long as Diregraf Escort is paired with another creature, both creatures have protection from Zombies.|
Druid's Familiar|Avacyn Restored|175|U|{3}{G}|Creature - Bear|2|2|Soulbond (You may pair this creature with another unpaired creature when either enters the battlefield. They remain paired for as long as you control both of them.)$As long as Druid's Familiar is paired with another creature, each of those creatures gets +2/+2.|
-Druids' Repository|Avacyn Restored|176|R|{1}{G}{G}|Enchantment|||Whenever a creature you control attacks, put a charge counter on Druids' Repository.$Remove a charge counter from Druids' Repository: Add one mana of any color to your mana pool.|
+Druids' Repository|Avacyn Restored|176|R|{1}{G}{G}|Enchantment|||Whenever a creature you control attacks, put a charge counter on Druids' Repository.$Remove a charge counter from Druids' Repository: Add one mana of any color.|
Eaten by Spiders|Avacyn Restored|177|U|{2}{G}|Instant|||Destroy target creature with flying and all Equipment attached to that creature.|
Flowering Lumberknot|Avacyn Restored|178|C|{3}{G}|Creature - Treefolk|5|5|Flowering Lumberknot can't attack or block unless it's paired with a creature with soulbond.|
Geist Trappers|Avacyn Restored|179|C|{4}{G}|Creature - Human Warrior|3|5|Soulbond (You may pair this creature with another unpaired creature when either enters the battlefield. They remain paired for as long as you control both of them.)$As long as Geist Trappers is paired with another creature, both creatures have reach.|
-Divine Deflection|Avacyn Restored|18|R|{X}{W}|Instant|||Prevent the next X damage that would be dealt to you and/or permanents you control this turn. If damage is prevented this way, Divine Deflection deals that much damage to target creature or player.|
+Divine Deflection|Avacyn Restored|18|R|{X}{W}|Instant|||Prevent the next X damage that would be dealt to you and/or permanents you control this turn. If damage is prevented this way, Divine Deflection deals that much damage to any target.|
Gloomwidow|Avacyn Restored|180|U|{2}{G}|Creature - Spider|3|3|Reach$Gloomwidow can block only creatures with flying.|
Grounded|Avacyn Restored|181|C|{1}{G}|Enchantment - Aura|||Enchant creature$Enchanted creature loses flying.|
Howlgeist|Avacyn Restored|182|U|{5}{G}|Creature - Spirit Wolf|4|2|Creatures with power less than Howlgeist's power can't block it.$Undying (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.)|
@@ -864,7 +864,7 @@ Rain of Thorns|Avacyn Restored|190|U|{4}{G}{G}|Sorcery|||Choose one or more - De
Revenge of the Hunted|Avacyn Restored|191|R|{4}{G}{G}|Sorcery|||Until end of turn, target creature gets +6/+6 and gains trample, and all creatures able to block it this turn do so.$Miracle {G} (You may cast this card for its miracle cost when you draw it if it's the first card you drew this turn.)|
Sheltering Word|Avacyn Restored|192|C|{1}{G}|Instant|||Target creature you control gains hexproof until end of turn. You gain life equal to that creature's toughness. (A creature with hexproof can't be the target of spells or abilities opponents control.)|
Snare the Skies|Avacyn Restored|193|C|{G}|Instant|||Target creature gets +1/+1 and gains reach until end of turn. (It can block creatures with flying.)|
-Somberwald Sage|Avacyn Restored|194|R|{2}{G}|Creature - Human Druid|0|1|{T}: Add three mana of any one color to your mana pool. Spend this mana only to cast creature spells.|
+Somberwald Sage|Avacyn Restored|194|R|{2}{G}|Creature - Human Druid|0|1|{T}: Add three mana of any one color. Spend this mana only to cast creature spells.|
Soul of the Harvest|Avacyn Restored|195|R|{4}{G}{G}|Creature - Elemental|6|6|Trample$Whenever another nontoken creature enters the battlefield under your control, you may draw a card.|
Terrifying Presence|Avacyn Restored|196|C|{1}{G}|Instant|||Prevent all combat damage that would be dealt by creatures other than target creature this turn.|
Timberland Guide|Avacyn Restored|197|C|{1}{G}|Creature - Human Scout|1|1|When Timberland Guide enters the battlefield, put a +1/+1 counter on target creature.|
@@ -898,9 +898,9 @@ Scroll of Avacyn|Avacyn Restored|220|C|{1}|Artifact|||{1}, Sacrifice Scroll of A
Scroll of Griselbrand|Avacyn Restored|221|C|{1}|Artifact|||{1}, Sacrifice Scroll of Griselbrand: Target opponent discards a card. If you control a Demon, that player loses 3 life.|
Tormentor's Trident|Avacyn Restored|222|U|{2}|Artifact - Equipment|||Equipped creature gets +3/+0 and attacks each turn if able.$Equip {3}|
Vanguard's Shield|Avacyn Restored|223|C|{2}|Artifact - Equipment|||Equipped creature gets +0/+3 and can block an additional creature each combat.$Equip {3} ({3}: Attach to target creature you control. Equip only as a sorcery.)|
-Vessel of Endless Rest|Avacyn Restored|224|U|{3}|Artifact|||When Vessel of Endless Rest enters the battlefield, put target card from a graveyard on the bottom of its owner's library.${T}: Add one mana of any color to your mana pool.|
+Vessel of Endless Rest|Avacyn Restored|224|U|{3}|Artifact|||When Vessel of Endless Rest enters the battlefield, put target card from a graveyard on the bottom of its owner's library.${T}: Add one mana of any color.|
Alchemist's Refuge|Avacyn Restored|225|R||Land|||{T}: Add {C}.${G}{U}, {T}: You may cast nonland cards this turn as though they had flash.|
-Cavern of Souls|Avacyn Restored|226|R||Land|||As Cavern of Souls enters the battlefield, choose a creature type.${T}: Add {C}.${T}: Add one mana of any color to your mana pool. Spend this mana only to cast a creature spell of the chosen type, and that spell can't be countered.|
+Cavern of Souls|Avacyn Restored|226|R||Land|||As Cavern of Souls enters the battlefield, choose a creature type.${T}: Add {C}.${T}: Add one mana of any color. Spend this mana only to cast a creature spell of the chosen type, and that spell can't be countered.|
Desolate Lighthouse|Avacyn Restored|227|R||Land|||{T}: Add {C}.${1}{U}{R}, {T}: Draw a card, then discard a card.|
Seraph Sanctuary|Avacyn Restored|228|C||Land|||When Seraph Sanctuary enters the battlefield, you gain 1 life.$Whenever an Angel enters the battlefield under your control, you gain 1 life.${T}: Add {C}.|
Slayers' Stronghold|Avacyn Restored|229|R||Land|||{T}: Add {C}.${R}{W}, {T}: Target creature gets +2/+0 and gains vigilance and haste until end of turn.|
@@ -1034,7 +1034,7 @@ Fire Ants|Battle Royale Box Set|27|U|{2}{R}|Creature - Insect|2|1|{T}: Fire Ants
Giant Growth|Battle Royale Box Set|29|C|{G}|Instant|||Target creature gets +3/+3 until end of turn.|
Air Elemental|Battle Royale Box Set|3|U|{3}{U}{U}|Creature - Elemental|4|4|Flying|
Gorilla Warrior|Battle Royale Box Set|30|C|{2}{G}|Creature - Ape Warrior|3|2||
-Healing Salve|Battle Royale Box Set|31|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to target creature or player this turn.|
+Healing Salve|Battle Royale Box Set|31|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to any target this turn.|
Flood|Battle Royale Box Set|32|C|{U}|Enchantment|||{U}{U}: Tap target creature without flying.|
Heat Ray|Battle Royale Box Set|32|C|{X}{R}|Instant|||Heat Ray deals X damage to target creature.|
Hurricane|Battle Royale Box Set|33|U|{X}{G}|Sorcery|||Hurricane deals X damage to each creature with flying and each player.|
@@ -1060,7 +1060,7 @@ Phyrexian Ghoul|Battle Royale Box Set|50|C|{2}{B}|Creature - Zombie|2|2|Sacrific
Pincher Beetles|Battle Royale Box Set|51|C|{2}{G}|Creature - Insect|3|1|Shroud (This creature can't be the target of spells or abilities.)|
Plated Rootwalla|Battle Royale Box Set|52|C|{4}{G}|Creature - Lizard|3|3|{2}{G}: Plated Rootwalla gets +3/+3 until end of turn. Activate this ability only once each turn.|
Polluted Mire|Battle Royale Box Set|53|C||Land|||Polluted Mire enters the battlefield tapped.${T}: Add {B}.$Cycling {2} ({2}, Discard this card: Draw a card.)|
-Prodigal Sorcerer|Battle Royale Box Set|54|C|{2}{U}|Creature - Human Wizard|1|1|{T}: Prodigal Sorcerer deals 1 damage to target creature or player.|
+Prodigal Sorcerer|Battle Royale Box Set|54|C|{2}{U}|Creature - Human Wizard|1|1|{T}: Prodigal Sorcerer deals 1 damage to any target.|
Raging Goblin|Battle Royale Box Set|55|C|{R}|Creature - Goblin Berserker|1|1|Haste (This creature can attack and {T} as soon as it comes under your control.)|
Ray of Command|Battle Royale Box Set|56|C|{3}{U}|Instant|||Untap target creature an opponent controls and gain control of it until end of turn. That creature gains haste until end of turn. When you lose control of the creature, tap it.|
Reanimate|Battle Royale Box Set|57|U|{B}|Sorcery|||Put target creature card from a graveyard onto the battlefield under your control. You lose life equal to its converted mana cost.|
@@ -1069,8 +1069,8 @@ River Boa|Battle Royale Box Set|59|U|{1}{G}|Creature - Snake|2|1|Islandwalk${G}:
Argothian Elder|Battle Royale Box Set|6|U|{3}{G}|Creature - Elf Druid|2|2|{T}: Untap two target lands.|
Rolling Thunder|Battle Royale Box Set|60|C|{X}{R}{R}|Sorcery|||Rolling Thunder deals X damage divided as you choose among any number of target creatures and/or players.|
Sadistic Glee|Battle Royale Box Set|61|C|{B}|Enchantment - Aura|||Enchant creature$Whenever a creature dies, put a +1/+1 counter on enchanted creature.|
-Sanctum Custodian|Battle Royale Box Set|62|C|{2}{W}|Creature - Human Cleric|1|2|{T}: Prevent the next 2 damage that would be dealt to target creature or player this turn.|
-Sanctum Guardian|Battle Royale Box Set|63|U|{1}{W}{W}|Creature - Human Cleric|1|4|Sacrifice Sanctum Guardian: The next time a source of your choice would deal damage to target creature or player this turn, prevent that damage.|
+Sanctum Custodian|Battle Royale Box Set|62|C|{2}{W}|Creature - Human Cleric|1|2|{T}: Prevent the next 2 damage that would be dealt to any target this turn.|
+Sanctum Guardian|Battle Royale Box Set|63|U|{1}{W}{W}|Creature - Human Cleric|1|4|Sacrifice Sanctum Guardian: The next time a source of your choice would deal damage to any target this turn, prevent that damage.|
Scaled Wurm|Battle Royale Box Set|65|C|{7}{G}|Creature - Wurm|7|6||
Scryb Sprites|Battle Royale Box Set|66|C|{G}|Creature - Faerie|1|1|Flying|
Seasoned Marshal|Battle Royale Box Set|67|U|{2}{W}{W}|Creature - Human Soldier|2|2|Whenever Seasoned Marshal attacks, you may tap target creature.|
@@ -1123,7 +1123,7 @@ Coercion|Beatdown Box Set|20|C|{2}{B}|Sorcery|||Target opponent reveals his or h
Dark Ritual|Beatdown Box Set|21|C|{B}|Instant|||Add {B}{B}{B}.|
Death Stroke|Beatdown Box Set|22|C|{B}{B}|Sorcery|||Destroy target tapped creature.|
Diabolic Edict|Beatdown Box Set|23|C|{1}{B}|Instant|||Target player sacrifices a creature.|
-Drain Life|Beatdown Box Set|24|C|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Drain Life deals X damage to target creature or player. You gain life equal to the damage dealt, but not more life than the player's life total before Drain Life dealt damage or the creature's toughness.|
+Drain Life|Beatdown Box Set|24|C|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Drain Life deals X damage to any target. You gain life equal to the damage dealt, but not more life than the player's life total before Drain Life dealt damage or the creature's toughness.|
Fallen Angel|Beatdown Box Set|25|R|{3}{B}{B}|Creature - Angel|3|3|Flying$Sacrifice a creature: Fallen Angel gets +2/+1 until end of turn.|
Impulse|Beatdown Box Set|254|C|{1}{U}|Instant|||Look at the top four cards of your library. Put one of them into your hand and the rest on the bottom of your library in any order.|
Feral Shadow|Beatdown Box Set|26|C|{2}{B}|Creature - Nightstalker|2|1|Flying|
@@ -1143,12 +1143,12 @@ Hulking Cyclops|Beatdown Box Set|38|U|{3}{R}{R}|Creature - Cyclops|5|5|Hulking C
Kird Ape|Beatdown Box Set|39|C|{R}|Creature - Ape|1|1|Kird Ape gets +1/+2 as long as you control a Forest.|
Cloud Djinn|Beatdown Box Set|4|U|{5}{U}|Creature - Djinn|5|4|Flying$Cloud Djinn can block only creatures with flying.|
Lava Axe|Beatdown Box Set|40|C|{4}{R}|Sorcery|||Lava Axe deals 5 damage to target player.|
-Lightning Bolt|Beatdown Box Set|41|C|{R}|Instant|||Lightning Bolt deals 3 damage to target creature or player.|
+Lightning Bolt|Beatdown Box Set|41|C|{R}|Instant|||Lightning Bolt deals 3 damage to any target.|
Lowland Giant|Beatdown Box Set|42|C|{2}{R}{R}|Creature - Giant|4|3||
Raging Goblin|Beatdown Box Set|43|C|{R}|Creature - Goblin Berserker|1|1|Haste (This creature can attack and {T} as soon as it comes under your control.)|
Shivan Dragon|Beatdown Box Set|44|R|{4}{R}{R}|Creature - Dragon|5|5|Flying${R}: Shivan Dragon gets +1/+0 until end of turn.|
-Shock|Beatdown Box Set|45|C|{R}|Instant|||Shock deals 2 damage to target creature or player.|
-Sonic Burst|Beatdown Box Set|46|C|{1}{R}|Instant|||As an additional cost to cast Sonic Burst, discard a card at random.$Sonic Burst deals 4 damage to target creature or player.|
+Shock|Beatdown Box Set|45|C|{R}|Instant|||Shock deals 2 damage to any target.|
+Sonic Burst|Beatdown Box Set|46|C|{1}{R}|Instant|||As an additional cost to cast Sonic Burst, discard a card at random.$Sonic Burst deals 4 damage to any target.|
Talruum Minotaur|Beatdown Box Set|47|C|{2}{R}{R}|Creature - Minotaur Berserker|3|3|Haste|
Thunderbolt|Beatdown Box Set|48|C|{1}{R}|Instant|||Choose one - Thunderbolt deals 3 damage to target player; or Thunderbolt deals 4 damage to target creature with flying.|
Thundering Giant|Beatdown Box Set|49|U|{3}{R}{R}|Creature - Giant|4|3|Haste (This creature can attack and {T} as soon as it comes under your control.)|
@@ -1164,7 +1164,7 @@ Giant Growth|Beatdown Box Set|57|C|{G}|Instant|||Target creature gets +3/+3 unti
Llanowar Elves|Beatdown Box Set|58|C|{G}|Creature - Elf Druid|1|1|{T}: Add {G}.|
Plated Spider|Beatdown Box Set|59|C|{4}{G}|Creature - Spider|4|4|Reach (This creature can block creatures with flying.)|
Counterspell|Beatdown Box Set|6|C|{U}{U}|Instant|||Counter target spell.|
-Quirion Elves|Beatdown Box Set|60|C|{1}{G}|Creature - Elf Druid|1|1|As Quirion Elves enters the battlefield, choose a color.${T}: Add {G}.${T}: Add one mana of the chosen color to your mana pool.|
+Quirion Elves|Beatdown Box Set|60|C|{1}{G}|Creature - Elf Druid|1|1|As Quirion Elves enters the battlefield, choose a color.${T}: Add {G}.${T}: Add one mana of the chosen color.|
Rampant Growth|Beatdown Box Set|61|C|{1}{G}|Sorcery|||Search your library for a basic land card and put that card onto the battlefield tapped. Then shuffle your library.|
Scaled Wurm|Beatdown Box Set|62|C|{7}{G}|Creature - Wurm|7|6||
Shambling Strider|Beatdown Box Set|63|C|{4}{G}{G}|Creature - Yeti|5|5|{R}{G}: Shambling Strider gets +1/-1 until end of turn.|
@@ -1201,7 +1201,7 @@ Genju of the Spires|Betrayers of Kamigawa|105|U|{R}|Enchantment - Aura|||Enchant
Goblin Cohort|Betrayers of Kamigawa|106|C|{R}|Creature - Goblin Warrior|2|2|Goblin Cohort can't attack unless you've cast a creature spell this turn.|
Heartless Hidetsugu|Betrayers of Kamigawa|107|R|{3}{R}{R}|Legendary Creature - Ogre Shaman|4|3|{T}: Heartless Hidetsugu deals damage to each player equal to half that player's life total, rounded down.|
In the Web of War|Betrayers of Kamigawa|108|R|{3}{R}{R}|Enchantment|||Whenever a creature enters the battlefield under your control, it gets +2/+0 and gains haste until end of turn.|
-Ire of Kaminari|Betrayers of Kamigawa|109|C|{3}{R}|Instant - Arcane|||Ire of Kaminari deals damage to target creature or player equal to the number of Arcane cards in your graveyard.|
+Ire of Kaminari|Betrayers of Kamigawa|109|C|{3}{R}|Instant - Arcane|||Ire of Kaminari deals damage to any target equal to the number of Arcane cards in your graveyard.|
Kami of Tattered Shoji|Betrayers of Kamigawa|11|C|{4}{W}|Creature - Spirit|2|5|Whenever you cast a Spirit or Arcane spell, Kami of Tattered Shoji gains flying until end of turn.|
Ishi-Ishi, Akki Crackshot|Betrayers of Kamigawa|110|R|{1}{R}|Legendary Creature - Goblin Warrior|1|1|Whenever an opponent casts a Spirit or Arcane spell, Ishi-Ishi, Akki Crackshot deals 2 damage to that player.|
Kumano's Blessing|Betrayers of Kamigawa|111|C|{2}{R}|Enchantment - Aura|||Flash$Enchant creature$If a creature dealt damage by enchanted creature this turn would die, exile it instead.|
@@ -1234,7 +1234,7 @@ Mark of Sakiko|Betrayers of Kamigawa|135|U|{1}{G}|Enchantment - Aura|||Enchant c
Matsu-Tribe Sniper|Betrayers of Kamigawa|136|C|{1}{G}|Creature - Snake Warrior Archer|1|1|{T}: Matsu-Tribe Sniper deals 1 damage to target creature with flying.$Whenever Matsu-Tribe Sniper deals damage to a creature, tap that creature and it doesn't untap during its controller's next untap step.|
Nourishing Shoal|Betrayers of Kamigawa|137|R|{X}{G}{G}|Instant - Arcane|||You may exile a green card with converted mana cost X from your hand rather than pay Nourishing Shoal's mana cost.$You gain X life.|
Patron of the Orochi|Betrayers of Kamigawa|138|R|{6}{G}{G}|Legendary Creature - Spirit|7|7|Snake offering (You may cast this card any time you could cast an instant by sacrificing a Snake and paying the difference in mana costs between this and the sacrificed Snake. Mana cost includes color.)${T}: Untap all Forests and all green creatures. Activate this ability only once each turn.|
-Petalmane Baku|Betrayers of Kamigawa|139|C|{1}{G}|Creature - Spirit|1|2|Whenever you cast a Spirit or Arcane spell, you may put a ki counter on Petalmane Baku.${1}, Remove X ki counters from Petalmane Baku: Add X mana of any one color to your mana pool.|
+Petalmane Baku|Betrayers of Kamigawa|139|C|{1}{G}|Creature - Spirit|1|2|Whenever you cast a Spirit or Arcane spell, you may put a ki counter on Petalmane Baku.${1}, Remove X ki counters from Petalmane Baku: Add X mana of any one color.|
Kitsune Palliator|Betrayers of Kamigawa|14|U|{2}{W}|Creature - Fox Cleric|0|2|{T}: Prevent the next 1 damage that would be dealt to each creature and each player this turn.|
Roar of Jukai|Betrayers of Kamigawa|140|C|{2}{G}|Instant - Arcane|||If you control a Forest, each blocked creature gets +2/+2 until end of turn.$Splice onto Arcane-An opponent gains 5 life. (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.)|
Sakiko, Mother of Summer|Betrayers of Kamigawa|141|R|{4}{G}{G}|Legendary Creature - Snake Shaman|3|3|Whenever a creature you control deals combat damage to a player, add that much {G}. Until end of turn, this mana doesn't empty from your mana pool as steps and phases end.|
@@ -1246,7 +1246,7 @@ Splinter|Betrayers of Kamigawa|146|U|{2}{G}{G}|Sorcery|||Exile target artifact.
Traproot Kami|Betrayers of Kamigawa|147|C|{G}|Creature - Spirit|0|*|Defender; reach (This creature can block creatures with flying.)$Traproot Kami's toughness is equal to the number of Forests on the battlefield.|
Unchecked Growth|Betrayers of Kamigawa|148|U|{2}{G}|Instant - Arcane|||Target creature gets +4/+4 until end of turn. If it's a Spirit, it gains trample until end of turn.|
Uproot|Betrayers of Kamigawa|149|C|{3}{G}|Sorcery - Arcane|||Put target land on top of its owner's library.|
-Mending Hands|Betrayers of Kamigawa|15|C|{W}|Instant|||Prevent the next 4 damage that would be dealt to target creature or player this turn.|
+Mending Hands|Betrayers of Kamigawa|15|C|{W}|Instant|||Prevent the next 4 damage that would be dealt to any target this turn.|
Vital Surge|Betrayers of Kamigawa|150|C|{1}{G}|Instant - Arcane|||You gain 3 life.$Splice onto Arcane {1}{G} (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.)|
Genju of the Realm|Betrayers of Kamigawa|151|R|{W}{U}{B}{R}{G}|Legendary Enchantment - Aura|||Enchant land${2}: Enchanted land becomes a legendary 8/12 Spirit creature with trample until end of turn. It's still a land.$When enchanted land is put into a graveyard, you may return Genju of the Realm from your graveyard to your hand.|
Baku Altar|Betrayers of Kamigawa|152|R|{2}|Artifact|||Whenever you cast a Spirit or Arcane spell, you may put a ki counter on Baku Altar.${2}, {T}, Remove a ki counter from Baku Altar: Put a 1/1 colorless Spirit creature token onto the battlefield.|
@@ -1263,20 +1263,20 @@ Slumbering Tora|Betrayers of Kamigawa|161|R|{3}|Artifact|||{2}, Discard a Spirit
That Which Was Taken|Betrayers of Kamigawa|162|R|{5}|Legendary Artifact|||{4}, {T}: Put a divinity counter on target permanent other than That Which Was Taken.$Each permanent with a divinity counter on it is indestructible.|
Umezawa's Jitte|Betrayers of Kamigawa|163|R|{2}|Legendary Artifact - Equipment|||Whenever equipped creature deals combat damage, put two charge counters on Umezawa's Jitte.$Remove a charge counter from Umezawa's Jitte: Choose one - Equipped creature gets +2/+2 until end of turn; or target creature gets -1/-1 until end of turn; or you gain 2 life.$Equip {2}|
Gods' Eye, Gate to the Reikai|Betrayers of Kamigawa|164|U||Legendary Land|||{T}: Add {C}.$When Gods' Eye, Gate to the Reikai is put into a graveyard from the battlefield, put a 1/1 colorless Spirit creature token onto the battlefield.|
-Tendo Ice Bridge|Betrayers of Kamigawa|165|R||Land|||Tendo Ice Bridge enters the battlefield with a charge counter on it.${T}: Add {C}.${T}, Remove a charge counter from Tendo Ice Bridge: Add one mana of any color to your mana pool.|
+Tendo Ice Bridge|Betrayers of Kamigawa|165|R||Land|||Tendo Ice Bridge enters the battlefield with a charge counter on it.${T}: Add {C}.${T}, Remove a charge counter from Tendo Ice Bridge: Add one mana of any color.|
Opal-Eye, Konda's Yojimbo|Betrayers of Kamigawa|17|R|{1}{W}{W}|Legendary Creature - Fox Samurai|1|4|Defender (This creature can't attack.)$Bushido 1 (When this blocks or becomes blocked, it gets +1/+1 until end of turn.)${T}: The next time a source of your choice would deal damage this turn, that damage is dealt to Opal-Eye, Konda's Yojimbo instead.${1}{W}: Prevent the next 1 damage that would be dealt to Opal-Eye this turn.|
Oyobi, Who Split the Heavens|Betrayers of Kamigawa|18|R|{6}{W}|Legendary Creature - Spirit|3|6|Flying$Whenever you cast a Spirit or Arcane spell, put a 3/3 white Spirit creature token with flying onto the battlefield.|
Patron of the Kitsune|Betrayers of Kamigawa|19|R|{4}{W}{W}|Legendary Creature - Spirit|5|6|Fox offering (You may cast this card any time you could cast an instant by sacrificing a Fox and paying the difference in mana costs between this and the sacrificed Fox. Mana cost includes color.)$Whenever a creature attacks, you may gain 1 life.|
Empty-Shrine Kannushi|Betrayers of Kamigawa|2|U|{W}|Creature - Human Cleric|1|1|Empty-Shrine Kannushi has protection from the colors of permanents you control.|
Scour|Betrayers of Kamigawa|20|U|{2}{W}{W}|Instant|||Exile target enchantment. Search its controller's graveyard, hand, and library for all cards with the same name as that enchantment and exile them. Then that player shuffles his or her library.|
-Shining Shoal|Betrayers of Kamigawa|21|R|{X}{W}{W}|Instant - Arcane|||You may exile a white card with converted mana cost X from your hand rather than pay Shining Shoal's mana cost.$The next X damage that a source of your choice would deal to you and/or creatures you control this turn is dealt to target creature or player instead.|
+Shining Shoal|Betrayers of Kamigawa|21|R|{X}{W}{W}|Instant - Arcane|||You may exile a white card with converted mana cost X from your hand rather than pay Shining Shoal's mana cost.$The next X damage that a source of your choice would deal to you and/or creatures you control this turn is dealt to any target instead.|
Silverstorm Samurai|Betrayers of Kamigawa|22|C|{4}{W}{W}|Creature - Fox Samurai|3|3|Flash$Bushido 1 (When this blocks or becomes blocked, it gets +1/+1 until end of turn.)|
-Split-Tail Miko|Betrayers of Kamigawa|23|C|{1}{W}|Creature - Fox Cleric|1|1|{W}, {T}: Prevent the next 2 damage that would be dealt to target creature or player this turn.|
+Split-Tail Miko|Betrayers of Kamigawa|23|C|{1}{W}|Creature - Fox Cleric|1|1|{W}, {T}: Prevent the next 2 damage that would be dealt to any target this turn.|
Takeno's Cavalry|Betrayers of Kamigawa|24|C|{3}{W}|Creature - Human Samurai Archer|1|1|Bushido 1 (When this blocks or becomes blocked, it gets +1/+1 until end of turn.)${T}: Takeno's Cavalry deals 1 damage to target attacking or blocking Spirit.|
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.|
Terashi's Grasp|Betrayers of Kamigawa|26|C|{2}{W}|Sorcery - Arcane|||Destroy target artifact or enchantment. You gain life equal to its converted mana cost.|
Terashi's Verdict|Betrayers of Kamigawa|27|U|{1}{W}|Instant - Arcane|||Destroy target attacking creature with power 3 or less.|
-Ward of Piety|Betrayers of Kamigawa|28|U|{1}{W}|Enchantment - Aura|||Enchant creature${1}{W}: The next 1 damage that would be dealt to enchanted creature this turn is dealt to target creature or player instead.|
+Ward of Piety|Betrayers of Kamigawa|28|U|{1}{W}|Enchantment - Aura|||Enchant creature${1}{W}: The next 1 damage that would be dealt to enchanted creature this turn is dealt to any target instead.|
Waxmane Baku|Betrayers of Kamigawa|29|C|{2}{W}|Creature - Spirit|2|2|Whenever you cast a Spirit or Arcane spell, you may put a ki counter on Waxmane Baku.${1}, Remove X ki counters from Waxmane Baku: Tap X target creatures.|
Yomiji, Who Bars the Way|Betrayers of Kamigawa|30|R|{5}{W}{W}|Legendary Creature - Spirit|4|4|Whenever a legendary permanent other than Yomiji, Who Bars the Way is put into a graveyard from the battlefield, return that card to its owner's hand.|
Callow Jushi|Betrayers of Kamigawa|31|U|{1}{U}{U}|Creature - Human Wizard|2|2|Whenever you cast a Spirit or Arcane spell, you may put a ki counter on Callow Jushi.$At the beginning of the end step, if there are two or more ki counters on Callow Jushi, you may flip it.$----$Jaraku the Interloper$Legendary Creature - Spirit$3/4$Remove a ki counter from Jaraku the Interloper: Counter target spell unless its controller pays {2}.|
@@ -1356,7 +1356,7 @@ Blazing Shoal|Betrayers of Kamigawa|96|R|{X}{R}{R}|Instant - Arcane|||You may ex
Clash of Realities|Betrayers of Kamigawa|97|R|{3}{R}|Enchantment|||All Spirits have "When this permanent enters the battlefield, you may have it deal 3 damage to target non-Spirit creature."$Non-Spirit creatures have "When this creature enters the battlefield, you may have it deal 3 damage to target Spirit creature."|
Crack the Earth|Betrayers of Kamigawa|98|C|{R}|Sorcery - Arcane|||Each player sacrifices a permanent.|
Cunning Bandit|Betrayers of Kamigawa|99|U|{1}{R}{R}|Creature - Human Warrior|2|2|Whenever you cast a Spirit or Arcane spell, you may put a ki counter on Cunning Bandit.$At the beginning of the end step, if there are two or more ki counters on Cunning Bandit, you may flip it.$|
-Acolyte's Reward|Born of the Gods|1|U|{1}{W}|Instant|||Prevent the next X damage that would be dealt to target creature this turn, where X is your devotion to white. If damage is prevented this way, Acolyte's Reward deals that much damage to target creature or player.|
+Acolyte's Reward|Born of the Gods|1|U|{1}{W}|Instant|||Prevent the next X damage that would be dealt to target creature this turn, where X is your devotion to white. If damage is prevented this way, Acolyte's Reward deals that much damage to any target.|
Akroan Phalanx|Born of the Gods|2|U|{3}{W}|Creature - Human Soldier|3|3|Vigilance${2}{R}: Creatures you control get +1/+0 until end of turn.|
Akroan Skyguard|Born of the Gods|3|C|{1}{W}|Creature - Human Soldier|1|1|Flying$Heroic - Whenever you cast a spell that targets Akroan Skyguard, put a +1/+1 counter on Akroan Skyguard.|
Archetype of Courage|Born of the Gods|4|U|{1}{W}{W}|Enchantment Creature Human Soldier|2|2|Creatures you control have first strike.$Creatures your opponents control lose first strike and can't have or gain first strike.|
@@ -1373,7 +1373,7 @@ God-Favored General|Born of the Gods|14|U|{1}{W}|Creature Human Soldier|1|1|Heroic Whenever you cast a spell that targets Hero of Iroas, put a +1/+1 counter on Hero of Iroas.|
-Hold at Bay|Born of the Gods|18|C|{1}{W}|Instant|||Prevent the next 7 damage that would be dealt to target creature or player this turn.|
+Hold at Bay|Born of the Gods|18|C|{1}{W}|Instant|||Prevent the next 7 damage that would be dealt to any target this turn.|
Loyal Pegasus|Born of the Gods|19|C|{W}|Creature Pegasus|2|1|Flying$Loyal Pegasus can't attack or block alone.|
Mortal's Ardor|Born of the Gods|20|C|{W}|Instant|||Target creature gets +1/+1 and gains lifelink until end of turn.|
Nyxborn Shieldmate|Born of the Gods|21|C|{W}|Enchantment Creature Human Soldier|1|2|Bestow {2}{W}$Enchanted creature gets +1/+2.|
@@ -1456,7 +1456,7 @@ Flame-Wreathed Phoenix|Born of the Gods|97|M|{2}{R}{R}|Creature Phoenix|3|3|Fl
Forgestoker Dragon|Born of the Gods|98|R|{4}{R}{R}|Creature Dragon|5|4|Flying${1}{R}: Forgestoker Dragon deals 1 damage to target creature. That creature can't block this combat. Activate this ability only if Forgestoker Dragon is attacking.|
Impetuous Sunchaser|Born of the Gods|99|C|{1}{R}|Creature Human Soldier|1|1|Flying, haste$Impetuous Sunchaser attacks each turn if able.|
Kragma Butcher|Born of the Gods|100|C|{2}{R}|Creature Minotaur Warrior|2|3|Inspired - Whenever Kragma Butcher becomes untapped, it gets +2/+0 until end of turn.|
-Lightning Volley|Born of the Gods|101|U|{3}{R}|Instant|||Until end of turn, creatures you control gain "{T}: This creature deals 1 damage to target creature or player."|
+Lightning Volley|Born of the Gods|101|U|{3}{R}|Instant|||Until end of turn, creatures you control gain "{T}: This creature deals 1 damage to any target."|
Nyxborn Rollicker|Born of the Gods|102|C|{R}|Enchantment Creature Satyr|1|1|Bestow {1}{R}$Enchanted creature gets +1/+1.|
Oracle of Bones|Born of the Gods|103|R|{2}{R}{R}|Creature Minotaur Shaman|3|1|Haste$Tribute 2 (As this creature enters the battlefield, an opponent of your choice may place two +1/+1 counters on it.)$When Oracle of Bones enters the battlefield, if tribute wasn't paid, you may cast an instant or sorcery card from your hand without paying its mana cost.|
Pharagax Giant|Born of the Gods|104|C|{4}{R}|Creature Giant|3|3|Tribute 2 (As this creature enters the battlefield, an opponent of your choice may place two +1/+1 counters on it.)$When Pharagax Giant enters the battlefield, if tribute wasn't paid, Pharagax Giant deals 5 damage to each opponent.|
@@ -1480,7 +1480,7 @@ Fated Intervention|Born of the Gods|121|R|{2}{G}{G}{G}|Instant|||Put two 3/3 gre
Graverobber Spider|Born of the Gods|122|U|{3}{G}|Creature Spider|2|4|Reach${3}{B}: Graverobber Spider gets +X/+X until end of turn, where X is the number of creature cards in your graveyard. Activate this ability only once each turn.|
Hero of Leina Tower|Born of the Gods|123|R|{G}|Creature Human Warrior|1|1|Heroic Whenever you cast a spell that targets Hero of Leina Tower, you may pay {X}. If you do, put X +1/+1 counters on Hero of Leina Tower.|
Hunter's Prowess|Born of the Gods|124|R|{4}{G}|Sorcery|||Until end of turn, target creature gets +3/+3 and gains trample and "Whenever this creature deals combat damage to a player, draw that many cards."|
-Karametra's Favor|Born of the Gods|125|C|{1}{G}|Enchantment Aura|||Enchant creature$When Karametra's Favor enters the battlefield, draw a card.$Enchanted creature has "{T}: Add one mana of any color to your mana pool."|
+Karametra's Favor|Born of the Gods|125|C|{1}{G}|Enchantment Aura|||Enchant creature$When Karametra's Favor enters the battlefield, draw a card.$Enchanted creature has "{T}: Add one mana of any color."|
Mischief and Mayhem|Born of the Gods|126|U|{4}{G}|Sorcery|||Up to two target creatures each get +4/+4 until end of turn.|
Mortal's Resolve|Born of the Gods|127|C|{1}{G}|Instant|||Target creature gets +1/+1 and gains indestructible until end of turn.|
Nessian Demolok|Born of the Gods|128|U|{3}{G}{G}|Creature Beast|3|3|Tribute 3 (As this creature enters the battlefield, an opponent of your choice may place three +1/+1 counters on it.)$When Nessian Demolok enters the battlefield, if tribute wasn't paid, destroy target noncreature permanent.|
@@ -1512,12 +1512,12 @@ Ragemonger|Born of the Gods|153|U|{1}{B}{R}|Creature Minotaur Shaman|2|3|Minot
Reap What Is Sown|Born of the Gods|154|U|{1}{G}{W}|Instant|||Put a +1/+1 counter on each of up to three target creatures.|
Siren of the Silent Song|Born of the Gods|155|U|{1}{U}{B}|Creature Zombie Siren|2|1|Flying$Inspired - Whenever Siren of the Silent Song becomes untapped, each opponent discards a card, then puts the top card of his or her library into his or her graveyard.|
Xenagos, God of Revels|Born of the Gods|156|M|{3}{R}{G}|Legendary Enchantment Creature God|6|5|Indestructible$As long as your devotion to red and green is less than seven, Xenagos isn't a creature.$At the beginning of combat on your turn, another target creature you control gains haste and gets +X/+X until end of turn, where X is that creature's power.|
-Astral Cornucopia|Born of the Gods|157|R|{X}{X}{X}|Artifact|||Astral Cornucopia enters the battlefield with X charge counters on it.${T}: Choose a color. Add one mana of that color to your mana pool for each charge counter on Astral Cornucopia.|
+Astral Cornucopia|Born of the Gods|157|R|{X}{X}{X}|Artifact|||Astral Cornucopia enters the battlefield with X charge counters on it.${T}: Choose a color. Add one mana of that color for each charge counter on Astral Cornucopia.|
Gorgon's Head|Born of the Gods|158|U|{1}|Artifact Equipment|||Equipped creature has deathtouch.$Equip {2}|
Heroes' Podium|Born of the Gods|159|R|{5}|Legendary Artifact|||Each legendary creature you control gets +1/+1 for each other legendary creature you control.${X}, {T}: Look at the top X cards of your library. You may reveal a legendary creature card from among them and put it into your hand. Put the rest on the bottom of your library in a random order.|
Pillar of War|Born of the Gods|160|U|{3}|Artifact Creature Golem|3|3|Defender$As long as Pillar of War is enchanted, it can attack as though it didn't have defender.|
Siren Song Lyre|Born of the Gods|161|U|{2}|Artifact Equipment|||Equipped creature has "{2}, {T}: Tap target creature."$Equip {2}|
-Springleaf Drum|Born of the Gods|162|U|{1}|Artifact|||{T}, Tap an untapped creature you control: Add one mana of any color to your mana pool.|
+Springleaf Drum|Born of the Gods|162|U|{1}|Artifact|||{T}, Tap an untapped creature you control: Add one mana of any color.|
Temple of Enlightenment|Born of the Gods|163|R||Land|||Temple of Enlightenment enters the battlefield tapped.$When Temple of Enlightenment enters the battlefield, scry 1.${T}: Add {W} or {U}.|
Temple of Malice|Born of the Gods|164|R||Land|||Temple of Malice enters the battlefield tapped.$When Temple of Malice enters the battlefield, scry 1.${T}: Add {B} or {R}.|
Temple of Plenty|Born of the Gods|165|R||Land|||Temple of Plenty enters the battlefield tapped.$When Temple of Plenty enters the battlefield, scry 1.${T}: Add {G} or {W}.|
@@ -1590,7 +1590,7 @@ Akki Underminer|Champions of Kamigawa|155|U|{3}{R}|Creature - Goblin Rogue Shama
Battle-Mad Ronin|Champions of Kamigawa|156|C|{1}{R}|Creature - Human Samurai|1|1|Bushido 2 (When this blocks or becomes blocked, it gets +2/+2 until end of turn.)$Battle-Mad Ronin attacks each turn if able.|
Ben-Ben, Akki Hermit|Champions of Kamigawa|157|R|{2}{R}{R}|Legendary Creature - Goblin Shaman|1|1|{T}: Ben-Ben, Akki Hermit deals damage to target attacking creature equal to the number of untapped Mountains you control.|
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.|
-Blood Rites|Champions of Kamigawa|159|U|{3}{R}{R}|Enchantment|||{1}{R}, Sacrifice a creature: Blood Rites deals 2 damage to target creature or player.|
+Blood Rites|Champions of Kamigawa|159|U|{3}{R}{R}|Enchantment|||{1}{R}, Sacrifice a creature: Blood Rites deals 2 damage to any target.|
Hundred-Talon Kami|Champions of Kamigawa|16|C|{4}{W}|Creature - Spirit|2|3|Flying$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.)|
Brothers Yamazaki|Champions of Kamigawa|160|U|{2}{R}|Legendary Creature - Human Samurai|2|1|Bushido 1 (When this blocks or becomes blocked, it gets +1/+1 until end of turn.)$If there are exactly two permanents named Brothers Yamazaki on the battlefield, the "legend rule" doesn't apply to them.$Each other creature named Brothers Yamazaki gets +2/+2 and has haste.|
Brutal Deceiver|Champions of Kamigawa|161|C|{2}{R}|Creature - Spirit|2|2|{1}: Look at the top card of your library.${2}: Reveal the top card of your library. If it's a land card, Brutal Deceiver gets +1/+0 and gains first strike until end of turn. Activate this ability only once each turn.|
@@ -1598,19 +1598,19 @@ Crushing Pain|Champions of Kamigawa|162|C|{1}{R}|Instant - Arcane|||Crushing Pai
Desperate Ritual|Champions of Kamigawa|163|C|{1}{R}|Instant - Arcane|||Add {R}{R}{R}.$Splice onto Arcane {1}{R} (As you cast an Arcane spell, you may reveal this card from your hand and pay its splice cost. If you do, add this card's effects to that spell.)|
Devouring Rage|Champions of Kamigawa|164|C|{4}{R}|Instant - Arcane|||As an additional cost to cast Devouring Rage, you may sacrifice any number of Spirits.$Target creature gets +3/+0 until end of turn. For each Spirit sacrificed this way, that creature gets an additional +3/+0 until end of turn.|
Earthshaker|Champions of Kamigawa|165|U|{4}{R}{R}|Creature - Spirit|4|5|Whenever you cast a Spirit or Arcane spell, Earthshaker deals 2 damage to each creature without flying.|
-Ember-Fist Zubera|Champions of Kamigawa|166|C|{1}{R}|Creature - Zubera Spirit|1|2|When Ember-Fist Zubera dies, it deals damage to target creature or player equal to the number of Zubera that died this turn.|
-Frostwielder|Champions of Kamigawa|167|C|{2}{R}{R}|Creature - Human Shaman|1|2|{T}: Frostwielder deals 1 damage to target creature or player.$If a creature dealt damage by Frostwielder this turn would die, exile it instead.|
-Glacial Ray|Champions of Kamigawa|168|C|{1}{R}|Instant - Arcane|||Glacial Ray deals 2 damage to target creature or player.$Splice onto Arcane {1}{R} (As you cast an Arcane spell, you may reveal this card from your hand and pay its splice cost. If you do, add this card's effects to that spell.)|
+Ember-Fist Zubera|Champions of Kamigawa|166|C|{1}{R}|Creature - Zubera Spirit|1|2|When Ember-Fist Zubera dies, it deals damage to any target equal to the number of Zubera that died this turn.|
+Frostwielder|Champions of Kamigawa|167|C|{2}{R}{R}|Creature - Human Shaman|1|2|{T}: Frostwielder deals 1 damage to any target.$If a creature dealt damage by Frostwielder this turn would die, exile it instead.|
+Glacial Ray|Champions of Kamigawa|168|C|{1}{R}|Instant - Arcane|||Glacial Ray deals 2 damage to any target.$Splice onto Arcane {1}{R} (As you cast an Arcane spell, you may reveal this card from your hand and pay its splice cost. If you do, add this card's effects to that spell.)|
Godo, Bandit Warlord|Champions of Kamigawa|169|R|{5}{R}|Legendary Creature - Human Barbarian|3|3|When Godo, Bandit Warlord enters the battlefield, you may search your library for an Equipment card and put it onto the battlefield. If you do, shuffle your library.$Whenever Godo attacks for the first time each turn, untap it and all Samurai you control. After this phase, there is an additional combat phase.|
Indomitable Will|Champions of Kamigawa|17|C|{1}{W}|Enchantment - Aura|||Flash$Enchant creature$Enchanted creature gets +1/+2.|
-Hanabi Blast|Champions of Kamigawa|170|U|{1}{R}{R}|Instant|||Hanabi Blast deals 2 damage to target creature or player. Return Hanabi Blast to its owner's hand, then discard a card at random.|
+Hanabi Blast|Champions of Kamigawa|170|U|{1}{R}{R}|Instant|||Hanabi Blast deals 2 damage to any target. Return Hanabi Blast to its owner's hand, then discard a card at random.|
Hearth Kami|Champions of Kamigawa|171|C|{1}{R}|Creature - Spirit|2|1|{X}, Sacrifice Hearth Kami: Destroy target artifact with converted mana cost X.|
-Honden of Infinite Rage|Champions of Kamigawa|172|U|{2}{R}|Legendary Enchantment - Shrine|||At the beginning of your upkeep, Honden of Infinite Rage deals damage to target creature or player equal to the number of Shrines you control.|
+Honden of Infinite Rage|Champions of Kamigawa|172|U|{2}{R}|Legendary Enchantment - Shrine|||At the beginning of your upkeep, Honden of Infinite Rage deals damage to any target equal to the number of Shrines you control.|
Initiate of Blood|Champions of Kamigawa|173a|U|{3}{R}|Creature - Ogre Shaman|2|2|{T}: Initiate of Blood deals 1 damage to target creature that was dealt damage this turn. When that creature dies this turn, flip Initiate of Blood.$|
Goka the Unjust|Champions of Kamigawa|173b|U|{3}{R}|Legendary Creature - Ogre Shaman|4|4|{T}: Goka the Unjust deals 4 damage to target creature that was dealt damage this turn.|
Kami of Fire's Roar|Champions of Kamigawa|174|C|{3}{R}|Creature - Spirit|2|3|Whenever you cast a Spirit or Arcane spell, target creature can't block this turn.|
Kiki-Jiki, Mirror Breaker|Champions of Kamigawa|175|R|{2}{R}{R}{R}|Legendary Creature - Goblin Shaman|2|2|Haste${T}: Put a token that's a copy of target nonlegendary creature you control onto the battlefield. That token has haste. Sacrifice it at the beginning of the next end step.|
-Kumano, Master Yamabushi|Champions of Kamigawa|176|R|{3}{R}{R}|Legendary Creature - Human Shaman|4|4|{1}{R}: Kumano, Master Yamabushi deals 1 damage to target creature or player.$If a creature dealt damage by Kumano this turn would die, exile it instead.|
+Kumano, Master Yamabushi|Champions of Kamigawa|176|R|{3}{R}{R}|Legendary Creature - Human Shaman|4|4|{1}{R}: Kumano, Master Yamabushi deals 1 damage to any target.$If a creature dealt damage by Kumano this turn would die, exile it instead.|
Kumano's Pupils|Champions of Kamigawa|177|U|{4}{R}|Creature - Human Shaman|3|3|If a creature dealt damage by Kumano's Pupils this turn would die, exile it instead.|
Lava Spike|Champions of Kamigawa|178|C|{R}|Sorcery - Arcane|||Lava Spike deals 3 damage to target player.|
Mana Seism|Champions of Kamigawa|179|U|{1}{R}|Sorcery|||Sacrifice any number of lands. Add {C} for each land sacrificed this way.|
@@ -1626,7 +1626,7 @@ Sideswipe|Champions of Kamigawa|187|U|{1}{R}|Instant|||You may change any target
Sokenzan Bruiser|Champions of Kamigawa|188|C|{4}{R}|Creature - Ogre Warrior|3|3|Mountainwalk|
Soul of Magma|Champions of Kamigawa|189|C|{3}{R}{R}|Creature - Spirit|2|2|Whenever you cast a Spirit or Arcane spell, Soul of Magma deals 1 damage to target creature.|
Isamaru, Hound of Konda|Champions of Kamigawa|19|R|{W}|Legendary Creature - Hound|2|2||
-Soulblast|Champions of Kamigawa|190|R|{3}{R}{R}{R}|Instant|||As an additional cost to cast Soulblast, sacrifice all creatures you control.$Soulblast deals damage to target creature or player equal to the total power of the sacrificed creatures.|
+Soulblast|Champions of Kamigawa|190|R|{3}{R}{R}{R}|Instant|||As an additional cost to cast Soulblast, sacrifice all creatures you control.$Soulblast deals damage to any target equal to the total power of the sacrificed creatures.|
Stone Rain|Champions of Kamigawa|191|C|{2}{R}|Sorcery|||Destroy target land.|
Strange Inversion|Champions of Kamigawa|192|U|{2}{R}|Instant - Arcane|||Switch target creature's power and toughness until end of turn.$Splice onto Arcane {1}{R} (As you cast an Arcane spell, you may reveal this card from your hand and pay its splice cost. If you do, add this card's effects to that spell.)|
Through the Breach|Champions of Kamigawa|193|R|{4}{R}|Instant - Arcane|||You may put a creature card from your hand onto the battlefield. That creature gains haste. Sacrifice that creature at the beginning of the next end step.$Splice onto Arcane {2}{R}{R} (As you cast an Arcane spell, you may reveal this card from your hand and pay its splice cost. If you do, add this card's effects to that spell.)|
@@ -1634,7 +1634,7 @@ Tide of War|Champions of Kamigawa|194|R|{4}{R}{R}|Enchantment|||Whenever one or
Uncontrollable Anger|Champions of Kamigawa|195|C|{2}{R}{R}|Enchantment - Aura|||Flash (You may cast this spell any time you could cast an instant.)$Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Enchanted creature gets +2/+2 and attacks each turn if able.|
Unearthly Blizzard|Champions of Kamigawa|196|C|{2}{R}|Sorcery - Arcane|||Up to three target creatures can't block this turn.|
Unnatural Speed|Champions of Kamigawa|197|C|{R}|Instant - Arcane|||Target creature gains haste until end of turn.|
-Yamabushi's Flame|Champions of Kamigawa|198|C|{2}{R}|Instant|||Yamabushi's Flame deals 3 damage to target creature or player. If a creature dealt damage this way would die this turn, exile it instead.|
+Yamabushi's Flame|Champions of Kamigawa|198|C|{2}{R}|Instant|||Yamabushi's Flame deals 3 damage to any target. If a creature dealt damage this way would die this turn, exile it instead.|
Yamabushi's Storm|Champions of Kamigawa|199|C|{1}{R}|Sorcery|||Yamabushi's Storm deals 1 damage to each creature. If a creature dealt damage this way would die this turn, exile it instead.|
Kabuto Moth|Champions of Kamigawa|20|C|{2}{W}|Creature - Spirit|1|2|Flying${T}: Target creature gets +1/+2 until end of turn.|
Zo-Zu the Punisher|Champions of Kamigawa|200|R|{1}{R}{R}|Legendary Creature - Goblin Warrior|2|2|Whenever a land enters the battlefield, Zo-Zu the Punisher deals 2 damage to that land's controller.|
@@ -1676,7 +1676,7 @@ Orbweaver Kumo|Champions of Kamigawa|231|U|{4}{G}{G}|Creature - Spirit|3|4|Reach
Order of the Sacred Bell|Champions of Kamigawa|232|C|{3}{G}|Creature - Human Monk|4|3||
Orochi Eggwatcher|Champions of Kamigawa|233a|U|{2}{G}|Creature - Snake Shaman|1|1|{2}{G}, {T}: Put a 1/1 green Snake creature token onto the battlefield. If you control ten or more creatures, flip Orochi Eggwatcher.$|
Shidako, Broodmistress|Champions of Kamigawa|233b|U|{2}{G}|Legendary Creature - Snake Shaman|3|3|{G}, Sacrifice a creature: Target creature gets +3/+3 until end of turn.|
-Orochi Leafcaller|Champions of Kamigawa|234|C|{G}|Creature - Snake Shaman|1|1|{G}: Add one mana of any color to your mana pool.|
+Orochi Leafcaller|Champions of Kamigawa|234|C|{G}|Creature - Snake Shaman|1|1|{G}: Add one mana of any color.|
Orochi Ranger|Champions of Kamigawa|235|C|{1}{G}|Creature - Snake Warrior|2|1|Whenever Orochi Ranger deals combat damage to a creature, tap that creature and it doesn't untap during its controller's next untap step.|
Orochi Sustainer|Champions of Kamigawa|236|C|{1}{G}|Creature - Snake Shaman|1|2|{T}: Add {G}.|
Rootrunner|Champions of Kamigawa|237|U|{2}{G}{G}|Creature - Spirit|3|3|{G}{G}, Sacrifice Rootrunner: Put target land on top of its owner's library.$Soulshift 3 (When this creature dies, you may return target Spirit card with converted mana cost 3 or less from your graveyard to your hand.)|
@@ -1697,7 +1697,7 @@ Kitsune Blademaster|Champions of Kamigawa|25|C|{2}{W}|Creature - Fox Samurai|2|2
Wear Away|Champions of Kamigawa|250|C|{G}{G}|Instant - Arcane|||Destroy target artifact or enchantment.$Splice onto Arcane {3}{G} (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.)|
General's Kabuto|Champions of Kamigawa|251|R|{4}|Artifact - Equipment|||Equipped creature has shroud. (It can't be the target of spells or abilities.)$Prevent all combat damage that would be dealt to equipped creature.$Equip {2} ({2}: Attach to target creature you control. Equip only as a sorcery.)|
Hair-Strung Koto|Champions of Kamigawa|252|R|{6}|Artifact|||Tap an untapped creature you control: Target player puts the top card of his or her library into his or her graveyard.|
-Hankyu|Champions of Kamigawa|253|U|{1}|Artifact - Equipment|||Equipped creature has "{T}: Put an aim counter on Hankyu" and "{T}, Remove all aim counters from Hankyu: This creature deals damage to target creature or player equal to the number of aim counters removed this way."$Equip {4} ({4}: Attach to target creature you control. Equip only as a sorcery.)|
+Hankyu|Champions of Kamigawa|253|U|{1}|Artifact - Equipment|||Equipped creature has "{T}: Put an aim counter on Hankyu" and "{T}, Remove all aim counters from Hankyu: This creature deals damage to any target equal to the number of aim counters removed this way."$Equip {4} ({4}: Attach to target creature you control. Equip only as a sorcery.)|
Honor-Worn Shaku|Champions of Kamigawa|254|U|{3}|Artifact|||{T}: Add {C}.$Tap an untapped legendary permanent you control: Untap Honor-Worn Shaku.|
Imi Statue|Champions of Kamigawa|255|R|{3}|Artifact|||Players can't untap more than one artifact during their untap steps.|
Jade Idol|Champions of Kamigawa|256|U|{4}|Artifact|||Whenever you cast a Spirit or Arcane spell, Jade Idol becomes a 4/4 Spirit artifact creature until end of turn.|
@@ -1715,14 +1715,14 @@ Orochi Hatchery|Champions of Kamigawa|266|R|{X}{X}|Artifact|||Orochi Hatchery en
Reito Lantern|Champions of Kamigawa|267|U|{2}|Artifact|||{3}: Put target card from a graveyard on the bottom of its owner's library.|
Sensei's Divining Top|Champions of Kamigawa|268|U|{1}|Artifact|||{1}: Look at the top three cards of your library, then put them back in any order.${T}: Draw a card, then put Sensei's Divining Top on top of its owner's library.|
Shell of the Last Kappa|Champions of Kamigawa|269|R|{3}|Legendary Artifact|||{3}, {T}: Exile target instant or sorcery spell that targets you. (The spell has no effect.)${3}, {T}, Sacrifice Shell of the Last Kappa: You may cast a card exiled with Shell of the Last Kappa without paying its mana cost.|
-Kitsune Healer|Champions of Kamigawa|27|C|{3}{W}|Creature - Fox Cleric|2|2|{T}: Prevent the next 1 damage that would be dealt to target creature or player this turn.${T}: Prevent all damage that would be dealt to target legendary creature this turn.|
+Kitsune Healer|Champions of Kamigawa|27|C|{3}{W}|Creature - Fox Cleric|2|2|{T}: Prevent the next 1 damage that would be dealt to any target this turn.${T}: Prevent all damage that would be dealt to target legendary creature this turn.|
Tatsumasa, the Dragon's Fang|Champions of Kamigawa|270|R|{6}|Legendary Artifact - Equipment|||Equipped creature gets +5/+5.${6}, Exile Tatsumasa, the Dragon's Fang: Put a 5/5 blue Dragon Spirit creature token with flying onto the battlefield. Return Tatsumasa to the battlefield under its owner's control when that token dies.$Equip {3}|
Tenza, Godo's Maul|Champions of Kamigawa|271|U|{3}|Legendary Artifact - Equipment|||Equipped creature gets +1/+1. As long as it's legendary, it gets an additional +2/+2. As long as it's red, it has trample.$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)|
Uba Mask|Champions of Kamigawa|272|R|{4}|Artifact|||If a player would draw a card, that player exiles that card face up instead.$Each player may play cards he or she exiled with Uba Mask this turn.|
Boseiju, Who Shelters All|Champions of Kamigawa|273|R||Legendary Land|||Boseiju, Who Shelters All enters the battlefield tapped.${T}, Pay 2 life: Add {C}. If that mana is spent on an instant or sorcery spell, that spell can't be countered by spells or abilities.|
Cloudcrest Lake|Champions of Kamigawa|274|U||Land|||{T}: Add {C}.${T}: Add {W} or {U}. Cloudcrest Lake doesn't untap during your next untap step.|
Eiganjo Castle|Champions of Kamigawa|275|R||Legendary Land|||{T}: Add {W}.${W}, {T}: Prevent the next 2 damage that would be dealt to target legendary creature this turn.|
-Forbidden Orchard|Champions of Kamigawa|276|R||Land|||{T}: Add one mana of any color to your mana pool.$Whenever you tap Forbidden Orchard for mana, put a 1/1 colorless Spirit creature token onto the battlefield under target opponent's control.|
+Forbidden Orchard|Champions of Kamigawa|276|R||Land|||{T}: Add one mana of any color.$Whenever you tap Forbidden Orchard for mana, put a 1/1 colorless Spirit creature token onto the battlefield under target opponent's control.|
Hall of the Bandit Lord|Champions of Kamigawa|277|R||Legendary Land|||Hall of the Bandit Lord enters the battlefield tapped.${T}, Pay 3 life: Add {C}. If that mana is spent on a creature spell, it gains haste.|
Lantern-Lit Graveyard|Champions of Kamigawa|278|U||Land|||{T}: Add {C}.${T}: Add {B} or {R}. Lantern-Lit Graveyard doesn't untap during your next untap step.|
Minamo, School at Water's Edge|Champions of Kamigawa|279|R||Legendary Land|||{T}: Add {U}.${U}, {T}: Untap target legendary permanent.|
@@ -1780,7 +1780,7 @@ Takeno, Samurai General|Champions of Kamigawa|46|R|{5}{W}|Legendary Creature - H
Terashi's Cry|Champions of Kamigawa|47|C|{3}{W}|Sorcery - Arcane|||Tap up to three target creatures.|
Vassal's Duty|Champions of Kamigawa|48|R|{3}{W}|Enchantment|||{1}: The next 1 damage that would be dealt to target legendary creature you control this turn is dealt to you instead.|
Vigilance|Champions of Kamigawa|49|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature has vigilance. (Attacking doesn't cause it to tap.)|
-Candles' Glow|Champions of Kamigawa|5|U|{1}{W}|Instant - Arcane|||Prevent the next 3 damage that would be dealt to target creature or player this turn. You gain life equal to the damage prevented this way.$Splice onto Arcane {1}{W} (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.)|
+Candles' Glow|Champions of Kamigawa|5|U|{1}{W}|Instant - Arcane|||Prevent the next 3 damage that would be dealt to any target this turn. You gain life equal to the damage prevented this way.$Splice onto Arcane {1}{W} (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.)|
Yosei, the Morning Star|Champions of Kamigawa|50|R|{4}{W}{W}|Legendary Creature - Dragon Spirit|5|5|Flying$When Yosei, the Morning Star dies, target player skips his or her next untap step. Tap up to five target permanents that player controls.|
Aura of Dominion|Champions of Kamigawa|51|U|{U}{U}|Enchantment - Aura|||Enchant creature${1}, Tap an untapped creature you control: Untap enchanted creature.|
Azami, Lady of Scrolls|Champions of Kamigawa|52|R|{2}{U}{U}{U}|Legendary Creature - Human Wizard|0|2|Tap an untapped Wizard you control: Draw a card.|
@@ -1837,7 +1837,7 @@ Thoughtbind|Champions of Kamigawa|96|C|{2}{U}|Instant|||Counter target spell wit
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.)|
The Unspeakable|Champions of Kamigawa|98|R|{6}{U}{U}{U}|Legendary Creature - Spirit|6|7|Flying, trample$Whenever The Unspeakable deals combat damage to a player, you may return target Arcane card from your graveyard to your hand.|
Uyo, Silent Prophet|Champions of Kamigawa|99|R|{4}{U}{U}|Legendary Creature - Moonfolk Wizard|4|4|Flying${2}, Return two lands you control to their owner's hand: Copy target instant or sorcery spell. You may choose new targets for the copy.|
-Banshee|Chronicles|1|U|{2}{B}{B}|Creature - Spirit|0|1|{X}, {T}: Banshee deals half X damage, rounded down, to target creature or player, and half X damage, rounded up, to you.|
+Banshee|Chronicles|1|U|{2}{B}{B}|Creature - Spirit|0|1|{X}, {T}: Banshee deals half X damage, rounded down, to any target, and half X damage, rounded up, to you.|
Urza's Tower|Chronicles|102|U||Land - Urza s Tower|||{T}: Add {C}. If you control an Urza's Mine and an Urza's Power-Plant, add {C}{C}{C} instead.|
Arcades Sabboth|Chronicles|106|R|{2}{G}{G}{W}{W}{U}{U}|Legendary Creature - Elder Dragon|7|7|Flying$At the beginning of your upkeep, sacrifice Arcades Sabboth unless you pay {G}{W}{U}.$Each untapped creature you control gets +0/+2 as long as it's not attacking.${W}: Arcades Sabboth gets +0/+1 until end of turn.|
Axelrod Gunnarson|Chronicles|107|R|{4}{B}{B}{R}{R}|Legendary Creature - Giant|5|5|Trample$Whenever a creature dealt damage by Axelrod Gunnarson this turn dies, you gain 1 life and Axelrod deals 1 damage to target player.|
@@ -1881,7 +1881,7 @@ Wall of Vapor|Chronicles|27|C|{3}{U}|Creature - Wall|0|1|Defender (This creat
Wall of Wonder|Chronicles|28|U|{2}{U}{U}|Creature - Wall|1|5|Defender (This creature can't attack.)${2}{U}{U}: Wall of Wonder gets +4/-4 until end of turn and can attack this turn as though it didn't have defender.|
Sentinel|Chronicles|281|R|{4}|Artifact Creature - Shapeshifter|1|1|{0}: Sentinel's toughness becomes 1 plus the power of target creature blocking or blocked by Sentinel. (This effect lasts indefinitely.)|
Argothian Pixies|Chronicles|29|C|{1}{G}|Creature - Faerie|2|1|Argothian Pixies can't be blocked by artifact creatures.$Prevent all damage that would be dealt to Argothian Pixies by artifact creatures.|
-Cuombajj Witches|Chronicles|3|C|{B}{B}|Creature - Human Wizard|1|3|{T}: Cuombajj Witches deals 1 damage to target creature or player and 1 damage to target creature or player of an opponent's choice.|
+Cuombajj Witches|Chronicles|3|C|{B}{B}|Creature - Human Wizard|1|3|{T}: Cuombajj Witches deals 1 damage to any target and 1 damage to any target of an opponent's choice.|
Cat Warriors|Chronicles|30|C|{1}{G}{G}|Creature - Cat Warrior|2|2|Forestwalk|
Cocoon|Chronicles|31|U|{G}|Enchantment - Aura|||Enchant creature you control$Enchanted creature doesn't untap during your untap step if Cocoon has a pupa counter on it.$When Cocoon enters the battlefield, tap enchanted creature and put three pupa counters on Cocoon.$At the beginning of your upkeep, remove a pupa counter from Cocoon. If you can't, sacrifice it, put a +1/+1 counter on enchanted creature, and that creature gains flying. (This effect lasts indefinitely.)|
Concordant Crossroads|Chronicles|32|R|{G}|World Enchantment|||All creatures have haste.|
@@ -1890,7 +1890,7 @@ Cyclone|Chronicles|34|R|{2}{G}{G}|Enchantment|||At the beginning of your upkeep,
Emerald Dragonfly|Chronicles|35|C|{1}{G}|Creature - Insect|1|1|Flying${G}{G}: Emerald Dragonfly gains first strike until end of turn.|
Erhnam Djinn|Chronicles|36|U|{3}{G}|Creature - Djinn|4|5|At the beginning of your upkeep, target non-Wall creature an opponent controls gains forestwalk until your next upkeep.|
Ghazban Ogre|Chronicles|37|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.|
-Metamorphosis|Chronicles|38|C|{G}|Sorcery|||As an additional cost to cast Metamorphosis, sacrifice a creature.$Add X mana of any one color to your mana pool, where X is one plus the sacrificed creature's converted mana cost. Spend this mana only to cast creature spells.|
+Metamorphosis|Chronicles|38|C|{G}|Sorcery|||As an additional cost to cast Metamorphosis, sacrifice a creature.$Add X mana of any one color, where X is one plus the sacrificed creature's converted mana cost. Spend this mana only to cast creature spells.|
Rabid Wombat|Chronicles|39|U|{2}{G}{G}|Creature - Wombat|0|1|Vigilance$Rabid Wombat gets +2/+2 for each Aura attached to it.|
Fallen Angel|Chronicles|4|U|{3}{B}{B}|Creature - Angel|3|3|Flying$Sacrifice a creature: Fallen Angel gets +2/+1 until end of turn.|
Scavenger Folk|Chronicles|41|C|{G}|Creature - Human|1|1|{G}, {T}, Sacrifice Scavenger Folk: Destroy target artifact.|
@@ -1941,15 +1941,15 @@ Jalum Tome|Chronicles|81|R|{3}|Artifact|||{2}, {T}: Draw a card, then discard a
Jeweled Bird|Chronicles|82|R|{1}|Artifact|||Remove Jeweled Bird from your deck before playing if you're not playing for ante.${T}: Put Jeweled Bird into the ante. If you do, put all other cards you own from the ante into your graveyard, then draw a card.|
Living Armor|Chronicles|83|C|{4}|Artifact|||{T}, Sacrifice Living Armor: Put X +0/+1 counters on target creature, where X is that creature's converted mana cost.|
Obelisk of Undoing|Chronicles|84|R|{1}|Artifact|||{6}, {T}: Return target permanent you both own and control to your hand.|
-Rakalite|Chronicles|85|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.|
+Rakalite|Chronicles|85|R|{6}|Artifact|||{2}: Prevent the next 1 damage that would be dealt to any target this turn. Return Rakalite to its owner's hand at the beginning of the next end step.|
Runesword|Chronicles|86|C|{6}|Artifact|||{3}, {T}: 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.|
Revelation|Chronicles|87|R|{G}|World Enchantment|||Players play with their hands revealed.|
Serpent Generator|Chronicles|88|R|{6}|Artifact|||{4}, {T}: Put a 1/1 colorless Snake artifact creature token onto the battlefield. It has "Whenever this creature deals damage to a player, that player gets a poison counter." (A player with ten or more poison counters loses the game.)|
Tormod's Crypt|Chronicles|89|C|{0}|Artifact|||{T}, Sacrifice Tormod's Crypt: Exile all cards from target player's graveyard.|
Takklemaggot|Chronicles|9|U|{2}{B}{B}|Enchantment - Aura|||Enchant creature$At the beginning of the upkeep of enchanted creature's controller, put a -0/-1 counter on that creature.$When enchanted creature dies, that creature's controller chooses a creature that Takklemaggot could enchant. If he or she does, return Takklemaggot to the battlefield under your control attached to that creature. If he or she doesn't, return Takklemaggot to the battlefield under your control as a non-Aura enchantment. It loses "enchant creature" and gains "At the beginning of that player's upkeep, Takklemaggot deals 1 damage to him or her."|
Triassic Egg|Chronicles|90|R|{4}|Artifact|||{3}, {T}: Put a hatchling counter on Triassic Egg.$Sacrifice Triassic Egg: Choose one - You may put a creature card from your hand onto the battlefield; or return target creature card from your graveyard to the battlefield. Activate this ability only if two or more hatchling counters are on Triassic Egg.|
-Voodoo Doll|Chronicles|91|R|{6}|Artifact|||At the beginning of your upkeep, put a pin counter on Voodoo Doll.$At the beginning of your end step, if Voodoo Doll is untapped, destroy Voodoo Doll and it deals damage to you equal to the number of pin counters on it.${X}{X}, {T}: Voodoo Doll deals damage equal to the number of pin counters on it to target creature or player. X is the number of pin counters on Voodoo Doll.|
-City of Brass|Chronicles|92|R||Land|||Whenever City of Brass becomes tapped, it deals 1 damage to you.${T}: Add one mana of any color to your mana pool.|
+Voodoo Doll|Chronicles|91|R|{6}|Artifact|||At the beginning of your upkeep, put a pin counter on Voodoo Doll.$At the beginning of your end step, if Voodoo Doll is untapped, destroy Voodoo Doll and it deals damage to you equal to the number of pin counters on it.${X}{X}, {T}: Voodoo Doll deals damage equal to the number of pin counters on it to any target. X is the number of pin counters on Voodoo Doll.|
+City of Brass|Chronicles|92|R||Land|||Whenever City of Brass becomes tapped, it deals 1 damage to you.${T}: Add one mana of any color.|
Safe Haven|Chronicles|93|R||Land|||{2}, {T}: Exile target creature you control.$At the beginning of your upkeep, you may sacrifice Safe Haven. If you do, return each card exiled with Safe Haven to the battlefield under its owner's control.|
Urza's Mine|Chronicles|94|U||Land - Urza s Mine|||{T}: Add {C}. If you control an Urza's Power-Plant and an Urza's Tower, add {C}{C} instead.|
Urza's Power Plant|Chronicles|98|U||Land - Urza s Power-Plant|||{T}: Add {C}. If you control an Urza's Mine and an Urza's Tower, add {C}{C} instead.|
@@ -2006,7 +2006,7 @@ Forbidden Crypt|Classic Sixth Edition|132|R|{3}{B}{B}|Enchantment|||If you would
Gravebane Zombie|Classic Sixth Edition|133|U|{3}{B}|Creature - Zombie|3|2|If Gravebane Zombie would die, put Gravebane Zombie on top of its owner's library instead.|
Gravedigger|Classic Sixth Edition|134|C|{3}{B}|Creature - Zombie|2|2|When Gravedigger enters the battlefield, you may return target creature card from your graveyard to your hand.|
Greed|Classic Sixth Edition|135|R|{3}{B}|Enchantment|||{B}, Pay 2 life: Draw a card.|
-Hecatomb|Classic Sixth Edition|136|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.|
+Hecatomb|Classic Sixth Edition|136|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 any target.|
Hidden Horror|Classic Sixth Edition|137|U|{1}{B}{B}|Creature - Horror|4|4|When Hidden Horror enters the battlefield, sacrifice it unless you discard a creature card.|
Howl from Beyond|Classic Sixth Edition|138|C|{X}{B}|Instant|||Target creature gets +X/+0 until end of turn.|
Infernal Contract|Classic Sixth Edition|139|R|{B}{B}{B}|Sorcery|||Draw four cards. You lose half your life, rounded up.|
@@ -2038,10 +2038,10 @@ Vampiric Tutor|Classic Sixth Edition|161|R|{B}|Instant|||Search your library for
Zombie Master|Classic Sixth Edition|162|R|{1}{B}{B}|Creature - Zombie|2|3|Other Zombie creatures have swampwalk.$Other Zombies have "{B}: Regenerate this permanent."|
AEther Flash|Classic Sixth Edition|163|U|{2}{R}{R}|Enchantment|||Whenever a creature enters the battlefield, Æther Flash deals 2 damage to it.|
Anaba Bodyguard|Classic Sixth Edition|164|C|{3}{R}|Creature - Minotaur|2|3|First strike (This creature deals combat damage before creatures without first strike.)|
-Anaba Shaman|Classic Sixth Edition|165|C|{3}{R}|Creature - Minotaur Shaman|2|2|{R}, {T}: Anaba Shaman deals 1 damage to target creature or player.|
+Anaba Shaman|Classic Sixth Edition|165|C|{3}{R}|Creature - Minotaur Shaman|2|2|{R}, {T}: Anaba Shaman deals 1 damage to any target.|
Balduvian Barbarians|Classic Sixth Edition|166|C|{1}{R}{R}|Creature - Human Barbarian|3|2||
Balduvian Horde|Classic Sixth Edition|167|R|{2}{R}{R}|Creature - Human Barbarian|5|5|When Balduvian Horde enters the battlefield, sacrifice it unless you discard a card at random.|
-Blaze|Classic Sixth Edition|168|U|{X}{R}|Sorcery|||Blaze deals X damage to target creature or player.|
+Blaze|Classic Sixth Edition|168|U|{X}{R}|Sorcery|||Blaze deals X damage to any target.|
Boil|Classic Sixth Edition|169|U|{3}{R}|Instant|||Destroy all Islands.|
Divine Transformation|Classic Sixth Edition|17|U|{2}{W}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +3/+3.|
Burrowing|Classic Sixth Edition|170|U|{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has mountainwalk.|
@@ -2063,28 +2063,28 @@ Goblin Hero|Classic Sixth Edition|184|C|{2}{R}|Creature - Goblin|2|2||
Goblin King|Classic Sixth Edition|185|R|{1}{R}{R}|Creature - Goblin|2|2|Other Goblin creatures get +1/+1 and have mountainwalk. (They're unblockable as long as defending player controls a Mountain.)|
Goblin Recruiter|Classic Sixth Edition|186|U|{1}{R}|Creature - Goblin|1|1|When Goblin Recruiter enters the battlefield, search your library for any number of Goblin cards and reveal those cards. Shuffle your library, then put them on top of it in any order.|
Goblin Warrens|Classic Sixth Edition|187|R|{2}{R}|Enchantment|||{2}{R}, Sacrifice two Goblins: Put three 1/1 red Goblin creature tokens onto the battlefield.|
-Hammer of Bogardan|Classic Sixth Edition|188|R|{1}{R}{R}|Sorcery|||Hammer of Bogardan deals 3 damage to target creature or player.${2}{R}{R}{R}: Return Hammer of Bogardan from your graveyard to your hand. Activate this ability only during your upkeep.|
+Hammer of Bogardan|Classic Sixth Edition|188|R|{1}{R}{R}|Sorcery|||Hammer of Bogardan deals 3 damage to any target.${2}{R}{R}{R}: Return Hammer of Bogardan from your graveyard to your hand. Activate this ability only during your upkeep.|
Hulking Cyclops|Classic Sixth Edition|189|U|{3}{R}{R}|Creature - Cyclops|5|5|Hulking Cyclops can't block.|
Enlightened Tutor|Classic Sixth Edition|19|U|{W}|Instant|||Search your library for an artifact or enchantment card and reveal that card. Shuffle your library, then put the card on top of it.|
Illicit Auction|Classic Sixth Edition|190|R|{3}{R}{R}|Sorcery|||Each player may bid life for control of target creature. You start the bidding with a bid of 0. In turn order, each player may top the high bid. The bidding ends if the high bid stands. The high bidder loses life equal to the high bid and gains control of the creature. (This effect lasts indefinitely.)|
Inferno|Classic Sixth Edition|191|R|{5}{R}{R}|Instant|||Inferno deals 6 damage to each creature and each player.|
Jokulhaups|Classic Sixth Edition|192|R|{4}{R}{R}|Sorcery|||Destroy all artifacts, creatures, and lands. They can't be regenerated.|
-Lightning Blast|Classic Sixth Edition|193|C|{3}{R}|Instant|||Lightning Blast deals 4 damage to target creature or player.|
+Lightning Blast|Classic Sixth Edition|193|C|{3}{R}|Instant|||Lightning Blast deals 4 damage to any target.|
Manabarbs|Classic Sixth Edition|194|R|{3}{R}|Enchantment|||Whenever a player taps a land for mana, Manabarbs deals 1 damage to that player.|
Mountain Goat|Classic Sixth Edition|195|C|{R}|Creature - Goat|1|1|Mountainwalk|
-Orcish Artillery|Classic Sixth Edition|196|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{T}: Orcish Artillery deals 2 damage to target creature or player and 3 damage to you.|
+Orcish Artillery|Classic Sixth Edition|196|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{T}: Orcish Artillery deals 2 damage to any target and 3 damage to you.|
Orcish Oriflamme|Classic Sixth Edition|197|U|{3}{R}|Enchantment|||Attacking creatures you control get +1/+0.|
Pillage|Classic Sixth Edition|198|U|{1}{R}{R}|Sorcery|||Destroy target artifact or land. It can't be regenerated.|
Pyrotechnics|Classic Sixth Edition|199|C|{4}{R}|Sorcery|||Pyrotechnics deals 4 damage divided as you choose among any number of target creatures and/or players.|
Archangel|Classic Sixth Edition|2|R|{5}{W}{W}|Creature - Angel|5|5|Flying, vigilance|
Ethereal Champion|Classic Sixth Edition|20|R|{2}{W}{W}{W}|Creature - Avatar|3|4|Pay 1 life: Prevent the next 1 damage that would be dealt to Ethereal Champion this turn.|
Raging Goblin|Classic Sixth Edition|200|C|{R}|Creature - Goblin Berserker|1|1|Haste (This creature can attack and {T} as soon as it comes under your control.)|
-Reckless Embermage|Classic Sixth Edition|201|R|{3}{R}|Creature - Human Wizard|2|2|{1}{R}: Reckless Embermage deals 1 damage to target creature or player and 1 damage to itself.|
+Reckless Embermage|Classic Sixth Edition|201|R|{3}{R}|Creature - Human Wizard|2|2|{1}{R}: Reckless Embermage deals 1 damage to any target and 1 damage to itself.|
Relentless Assault|Classic Sixth Edition|202|R|{2}{R}{R}|Sorcery|||Untap all creatures that attacked this turn. After this main phase, there is an additional combat phase followed by an additional main phase.|
Sabretooth Tiger|Classic Sixth Edition|203|C|{2}{R}|Creature - Cat|2|1|First strike|
Shatter|Classic Sixth Edition|204|C|{1}{R}|Instant|||Destroy target artifact.|
Shatterstorm|Classic Sixth Edition|205|R|{2}{R}{R}|Sorcery|||Destroy all artifacts. They can't be regenerated.|
-Shock|Classic Sixth Edition|206|C|{R}|Instant|||Shock deals 2 damage to target creature or player.|
+Shock|Classic Sixth Edition|206|C|{R}|Instant|||Shock deals 2 damage to any target.|
Spitting Drake|Classic Sixth Edition|207|U|{3}{R}|Creature - Drake|2|2|Flying${R}: Spitting Drake gets +1/+0 until end of turn. Activate this ability only once each turn.|
Spitting Earth|Classic Sixth Edition|208|C|{1}{R}|Sorcery|||Spitting Earth deals damage to target creature equal to the number of Mountains you control.|
Stone Rain|Classic Sixth Edition|209|C|{2}{R}|Sorcery|||Destroy target land.|
@@ -2094,12 +2094,12 @@ Tremor|Classic Sixth Edition|211|C|{R}|Sorcery|||Tremor deals 1 damage to each c
Vertigo|Classic Sixth Edition|212|U|{R}|Instant|||Vertigo deals 2 damage to target creature with flying. That creature loses flying until end of turn.|
Viashino Warrior|Classic Sixth Edition|213|C|{3}{R}|Creature - Viashino Warrior|4|2||
Volcanic Dragon|Classic Sixth Edition|214|R|{4}{R}{R}|Creature - Dragon|4|4|Flying$Haste (This creature can attack and {T} as soon as it comes under your control.)|
-Volcanic Geyser|Classic Sixth Edition|215|U|{X}{R}{R}|Instant|||Volcanic Geyser deals X damage to target creature or player.|
+Volcanic Geyser|Classic Sixth Edition|215|U|{X}{R}{R}|Instant|||Volcanic Geyser deals X damage to any target.|
Wall of Fire|Classic Sixth Edition|216|U|{1}{R}{R}|Creature - Wall|0|5|Defender (This creature can't attack.)${R}: Wall of Fire gets +1/+0 until end of turn.|
-Birds of Paradise|Classic Sixth Edition|217|R|{G}|Creature - Bird|0|1|Flying${T}: Add one mana of any color to your mana pool.|
+Birds of Paradise|Classic Sixth Edition|217|R|{G}|Creature - Bird|0|1|Flying${T}: Add one mana of any color.|
Call of the Wild|Classic Sixth Edition|218|R|{2}{G}{G}|Enchantment|||{2}{G}{G}: Reveal the top card of your library. If it's a creature card, put it onto the battlefield. Otherwise, put it into your graveyard.|
Cat Warriors|Classic Sixth Edition|219|C|{1}{G}{G}|Creature - Cat Warrior|2|2|Forestwalk|
-Healing Salve|Classic Sixth Edition|22|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to target creature or player this turn.|
+Healing Salve|Classic Sixth Edition|22|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to any target this turn.|
Creeping Mold|Classic Sixth Edition|220|U|{2}{G}{G}|Sorcery|||Destroy target artifact, enchantment, or land.|
Dense Foliage|Classic Sixth Edition|221|R|{2}{G}|Enchantment|||Creatures can't be the targets of spells.|
Early Harvest|Classic Sixth Edition|222|R|{1}{G}{G}|Instant|||Target player untaps all basic lands he or she controls.|
@@ -2156,7 +2156,7 @@ Wild Growth|Classic Sixth Edition|268|C|{G}|Enchantment - Aura|||Enchant land$Wh
Worldly Tutor|Classic Sixth Edition|269|U|{G}|Instant|||Search your library for a creature card and reveal that card. Shuffle your library, then put the card on top of it.|
Kismet|Classic Sixth Edition|27|U|{3}{W}|Enchantment|||Artifacts, creatures, and lands played by your opponents enter the battlefield tapped.|
Wyluli Wolf|Classic Sixth Edition|270|R|{1}{G}|Creature - Wolf|1|1|{T}: Target creature gets +1/+1 until end of turn.|
-Aladdin's Ring|Classic Sixth Edition|271|R|{8}|Artifact|||{8}, {T}: Aladdin's Ring deals 4 damage to target creature or player.|
+Aladdin's Ring|Classic Sixth Edition|271|R|{8}|Artifact|||{8}, {T}: Aladdin's Ring deals 4 damage to any target.|
Amber Prison|Classic Sixth Edition|272|R|{4}|Artifact|||You may choose not to untap Amber Prison during your untap step.${4}, {T}: Tap target artifact, creature, or land. That permanent doesn't untap during its controller's untap step for as long as Amber Prison remains tapped.|
Ankh of Mishra|Classic Sixth Edition|273|R|{2}|Artifact|||Whenever a land enters the battlefield, Ankh of Mishra deals 2 damage to that land's controller.|
Ashnod's Altar|Classic Sixth Edition|274|U|{3}|Artifact|||Sacrifice a creature: Add {C}{C}.|
@@ -2183,7 +2183,7 @@ Jade Monolith|Classic Sixth Edition|293|R|{4}|Artifact|||{1}: The next time a so
Jalum Tome|Classic Sixth Edition|294|R|{3}|Artifact|||{2}, {T}: Draw a card, then discard a card.|
Jayemdae Tome|Classic Sixth Edition|295|R|{4}|Artifact|||{4}, {T}: Draw a card.|
Lead Golem|Classic Sixth Edition|296|U|{5}|Artifact Creature - Golem|3|5|Whenever Lead Golem attacks, it doesn't untap during its controller's next untap step.|
-Mana Prism|Classic Sixth Edition|297|U|{3}|Artifact|||{T}: Add {C}.$${1}, {T}: Add one mana of any color to your mana pool.|
+Mana Prism|Classic Sixth Edition|297|U|{3}|Artifact|||{T}: Add {C}.$${1}, {T}: Add one mana of any color.|
Marble Diamond|Classic Sixth Edition|298|U|{2}|Artifact|||Marble Diamond enters the battlefield tapped.${T}: Add {W}.|
Meekstone|Classic Sixth Edition|299|R|{1}|Artifact|||Creatures with power 3 or greater don't untap during their controllers' untap steps.|
Millstone|Classic Sixth Edition|300|R|{2}|Artifact|||{2}, {T}: Target player puts the top two cards of his or her library into his or her graveyard.|
@@ -2197,8 +2197,8 @@ Patagia Golem|Classic Sixth Edition|305|U|{4}|Artifact Creature - Golem|2|3|{3}:
Pentagram of the Ages|Classic Sixth Edition|306|R|{4}|Artifact|||{4}, {T}: The next time a source of your choice would deal damage to you this turn, prevent that damage.|
Phyrexian Vault|Classic Sixth Edition|307|U|{3}|Artifact|||{2}, {T}, Sacrifice a creature: Draw a card.|
Primal Clay|Classic Sixth Edition|308|R|{4}|Artifact Creature - Shapeshifter|*|*|As Primal Clay enters the battlefield, it becomes your choice of a 3/3 artifact creature, a 2/2 artifact creature with flying, or a 1/6 Wall artifact creature with defender in addition to its other types. (A creature with defender can't attack.)|
-Rod of Ruin|Classic Sixth Edition|309|U|{4}|Artifact|||{3}, {T}: Rod of Ruin deals 1 damage to target creature or player.|
-Skull Catapult|Classic Sixth Edition|310|U|{4}|Artifact|||{1}, {T}, Sacrifice a creature: Skull Catapult deals 2 damage to target creature or player.|
+Rod of Ruin|Classic Sixth Edition|309|U|{4}|Artifact|||{3}, {T}: Rod of Ruin deals 1 damage to any target.|
+Skull Catapult|Classic Sixth Edition|310|U|{4}|Artifact|||{1}, {T}, Sacrifice a creature: Skull Catapult deals 2 damage to any target.|
Mesa Falcon|Classic Sixth Edition|31|C|{1}{W}|Creature - Bird|1|1|Flying${1}{W}: Mesa Falcon gets +0/+1 until end of turn.|
Sky Diamond|Classic Sixth Edition|311|U|{2}|Artifact|||Sky Diamond enters the battlefield tapped.${T}: Add {U}.|
Snake Basket|Classic Sixth Edition|312|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.|
@@ -2212,7 +2212,7 @@ Wooden Sphere|Classic Sixth Edition|318|U|{1}|Artifact|||Whenever a player casts
Adarkar Wastes|Classic Sixth Edition|319|R||Land|||{T}: Add {C}.${T}: Add {W} or {U}. Adarkar Wastes deals 1 damage to you.|
Order of the Sacred Torch|Classic Sixth Edition|32|R|{1}{W}{W}|Creature - Human Knight|2|2|{T}, Pay 1 life: Counter target black spell.|
Brushland|Classic Sixth Edition|320|R||Land|||{T}: Add {C}.${T}: Add {G} or {W}. Brushland deals 1 damage to you.|
-City of Brass|Classic Sixth Edition|321|R||Land|||Whenever City of Brass becomes tapped, it deals 1 damage to you.${T}: Add one mana of any color to your mana pool.|
+City of Brass|Classic Sixth Edition|321|R||Land|||Whenever City of Brass becomes tapped, it deals 1 damage to you.${T}: Add one mana of any color.|
Crystal Vein|Classic Sixth Edition|322|U||Land|||{T}: Add {C}.${T}, Sacrifice Crystal Vein: Add {C}{C}.|
Dwarven Ruins|Classic Sixth Edition|323|U||Land|||Dwarven Ruins enters the battlefield tapped.${T}: Add {R}.${T}, Sacrifice Dwarven Ruins: Add {R}{R}.|
Ebon Stronghold|Classic Sixth Edition|324|U||Land|||Ebon Stronghold enters the battlefield tapped.${T}: Add {B}.${T}, Sacrifice Ebon Stronghold: Add {B}{B}.|
@@ -2250,7 +2250,7 @@ Reprisal|Classic Sixth Edition|37|U|{1}{W}|Instant|||Destroy target creature wit
Resistance Fighter|Classic Sixth Edition|38|C|{W}|Creature - Human Soldier|1|1|Sacrifice Resistance Fighter: Prevent all combat damage target creature would deal this turn.|
Reverse Damage|Classic Sixth Edition|39|R|{1}{W}{W}|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.|
Armageddon|Classic Sixth Edition|4|R|{3}{W}|Sorcery|||Destroy all lands.|
-Samite Healer|Classic Sixth Edition|40|C|{1}{W}|Creature - Human Cleric|1|1|{T}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Samite Healer|Classic Sixth Edition|40|C|{1}{W}|Creature - Human Cleric|1|1|{T}: Prevent the next 1 damage that would be dealt to any target this turn.|
Serenity|Classic Sixth Edition|41|R|{1}{W}|Enchantment|||At the beginning of your upkeep, destroy all artifacts and enchantments. They can't be regenerated.|
Serra's Blessing|Classic Sixth Edition|42|U|{1}{W}|Enchantment|||Creatures you control have vigilance. (Attacking doesn't cause them to tap.)|
Spirit Link|Classic Sixth Edition|43|U|{W}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Whenever enchanted creature deals damage, you gain that much life.|
@@ -2302,7 +2302,7 @@ Phantasmal Terrain|Classic Sixth Edition|84|C|{U}{U}|Enchantment - Aura|||Enchan
Phantom Warrior|Classic Sixth Edition|85|U|{1}{U}{U}|Creature - Illusion Warrior|2|2|Phantom Warrior is unblockable.|
Polymorph|Classic Sixth Edition|86|R|{3}{U}|Sorcery|||Destroy target creature. It can't be regenerated. Its controller reveals cards from the top of his or her library until he or she reveals a creature card. The player puts that card onto the battlefield, then shuffles all other cards revealed this way into his or her library.|
Power Sink|Classic Sixth Edition|87|U|{X}{U}|Instant|||Counter target spell unless its controller pays {X}. If he or she doesn't, that player taps all lands with mana abilities he or she controls and empties his or her mana pool.|
-Prodigal Sorcerer|Classic Sixth Edition|88|C|{2}{U}|Creature - Human Wizard|1|1|{T}: Prodigal Sorcerer deals 1 damage to target creature or player.|
+Prodigal Sorcerer|Classic Sixth Edition|88|C|{2}{U}|Creature - Human Wizard|1|1|{T}: Prodigal Sorcerer deals 1 damage to any target.|
Prosperity|Classic Sixth Edition|89|U|{X}{U}|Sorcery|||Each player draws X cards.|
Circle of Protection: Blue|Classic Sixth Edition|9|C|{1}{W}|Enchantment|||{1}: The next time a blue source of your choice would deal damage to you this turn, prevent that damage.|
Psychic Transfer|Classic Sixth Edition|90|R|{4}{U}|Sorcery|||If the difference between your life total and target player's life total is 5 or less, exchange life totals with that player.|
@@ -2356,7 +2356,7 @@ Tamanoa|Coldsnap|132|R|{R}{G}{W}|Creature - Spirit|2|4|Whenever a noncreature so
Vanish into Memory|Coldsnap|133|U|{2}{W}{U}|Instant|||Exile target creature. You draw cards equal to that creature's power. At the beginning of your next upkeep, return that card to the battlefield under its owner's control. If you do, discard cards equal to that creature's toughness.|
Wilderness Elemental|Coldsnap|134|U|{1}{R}{G}|Creature - Elemental|*|3|Trample$Wilderness Elemental's power is equal to the number of nonbasic lands your opponents control.|
Zur the Enchanter|Coldsnap|135|R|{1}{W}{U}{B}|Legendary Creature - Human Wizard|1|4|Flying$Whenever Zur the Enchanter attacks, you may search your library for an enchantment card with converted mana cost 3 or less and put it onto the battlefield. If you do, shuffle your library.|
-Coldsteel Heart|Coldsnap|136|U|{2}|Snow Artifact|||Coldsteel Heart enters the battlefield tapped.$As Coldsteel Heart enters the battlefield, choose a color.${T}: Add one mana of the chosen color to your mana pool.|
+Coldsteel Heart|Coldsnap|136|U|{2}|Snow Artifact|||Coldsteel Heart enters the battlefield tapped.$As Coldsteel Heart enters the battlefield, choose a color.${T}: Add one mana of the chosen color.|
Jester's Scepter|Coldsnap|137|R|{3}|Artifact|||When Jester's Scepter enters the battlefield, exile the top five cards of target player's library face down. You may look at those cards for as long as they remain exiled.${2}, {T}, Put a card exiled with Jester's Scepter into its owner's graveyard: Counter target spell if it has the same name as that card.|
Mishra's Bauble|Coldsnap|138|U|{0}|Artifact|||{T}, Sacrifice Mishra's Bauble: Look at the top card of target player's library. Draw a card at the beginning of the next turn's upkeep.|
Phyrexian Ironfoot|Coldsnap|139|U|{3}|Snow Artifact Creature - Construct|3|4|Phyrexian Ironfoot doesn't untap during your untap step.${1}{snow}: Untap Phyrexian Ironfoot. ({snow} can be paid with one mana from a snow permanent.)|
@@ -2384,7 +2384,7 @@ Sun's Bounty|Coldsnap|18|C|{1}{W}|Instant|||You gain 4 life.$Recover {1}{W} (
Sunscour|Coldsnap|19|R|{5}{W}{W}|Sorcery|||You may exile two white cards from your hand rather than pay Sunscour's mana cost.$Destroy all creatures.|
Boreal Griffin|Coldsnap|2|C|{3}{W}{W}|Snow Creature - Griffin|3|2|Flying${snow}: Boreal Griffin gains first strike until end of turn. ({snow} can be paid with one mana from a snow permanent.)|
Surging Sentinels|Coldsnap|20|C|{2}{W}|Creature - Human Soldier|2|1|First strike$Ripple 4 (When you cast this spell, you may reveal the top four cards of your library. You may cast any revealed cards with the same name as this spell without paying their mana costs. Put the rest on the bottom of your library.)|
-Swift Maneuver|Coldsnap|21|C|{1}{W}|Instant|||Prevent the next 2 damage that would be dealt to target creature or player this turn.$Draw a card at the beginning of the next turn's upkeep.|
+Swift Maneuver|Coldsnap|21|C|{1}{W}|Instant|||Prevent the next 2 damage that would be dealt to any target this turn.$Draw a card at the beginning of the next turn's upkeep.|
Ursine Fylgja|Coldsnap|22|U|{4}{W}|Creature - Spirit Bear|3|3|Ursine Fylgja enters the battlefield with four healing counters on it.$Remove a healing counter from Ursine Fylgja: Prevent the next 1 damage that would be dealt to Ursine Fylgja this turn.${2}{W}: Put a healing counter on Ursine Fylgja.|
Wall of Shards|Coldsnap|23|U|{1}{W}|Snow Creature - Wall|1|8|Defender, flying$Cumulative upkeep-An opponent gains 1 life. (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.)|
White Shield Crusader|Coldsnap|24|U|{W}{W}|Creature - Human Knight|2|1|Protection from black${W}: White Shield Crusader gains flying until end of turn.${W}{W}: White Shield Crusader gets +1/+0 until end of turn.|
@@ -2438,7 +2438,7 @@ Phyrexian Etchings|Coldsnap|67|R|{B}{B}{B}|Enchantment|||Cumulative upkeep {B} <
Rime Transfusion|Coldsnap|68|U|{1}{B}|Snow Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+1 and has "{snow}: This creature can't be blocked this turn except by snow creatures." ({snow} can be paid with one mana from a snow permanent.)|
Rimebound Dead|Coldsnap|69|C|{B}|Snow Creature - Skeleton|1|1|{snow}: Regenerate Rimebound Dead. ({snow} can be paid with one mana from a snow permanent.)|
Glacial Plating|Coldsnap|7|U|{2}{W}{W}|Snow Enchantment - Aura|||Enchant creature$Cumulative upkeep {snow} (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. {snow} can be paid with one mana from a snow permanent.)$Enchanted creature gets +3/+3 for each age counter on Glacial Plating.|
-Soul Spike|Coldsnap|70|R|{5}{B}{B}|Instant|||You may exile two black cards from your hand rather than pay Soul Spike's mana cost.$Soul Spike deals 4 damage to target creature or player and you gain 4 life.|
+Soul Spike|Coldsnap|70|R|{5}{B}{B}|Instant|||You may exile two black cards from your hand rather than pay Soul Spike's mana cost.$Soul Spike deals 4 damage to any target and you gain 4 life.|
Stromgald Crusader|Coldsnap|71|U|{B}{B}|Creature - Zombie Knight|2|1|Protection from white${B}: Stromgald Crusader gains flying until end of turn.${B}{B}: Stromgald Crusader gets +1/+0 until end of turn.|
Surging Dementia|Coldsnap|72|C|{1}{B}|Sorcery|||Ripple 4 (When you cast this spell, you may reveal the top four cards of your library. You may cast any revealed cards with the same name as this spell without paying their mana costs. Put the rest on the bottom of your library.)$Target player discards a card.|
Tresserhorn Skyknight|Coldsnap|73|U|{5}{B}{B}|Creature - Zombie Knight|5|3|Flying$Prevent all damage that would be dealt to Tresserhorn Skyknight by creatures with first strike.|
@@ -2455,25 +2455,25 @@ Goblin Furrier|Coldsnap|82|C|{1}{R}|Creature - Goblin Warrior|2|2|Prevent all da
Goblin Rimerunner|Coldsnap|83|C|{2}{R}|Snow Creature - Goblin Warrior|2|2|{T}: Target creature can't block this turn.${snow}: Goblin Rimerunner gains haste until end of turn. ({snow} can be paid with one mana from a snow permanent.)|
Greater Stone Spirit|Coldsnap|84|U|{4}{R}{R}|Creature - Elemental Spirit|4|4|Greater Stone Spirit can't be blocked by creatures with flying.${2}{R}: Until end of turn, target creature gets +0/+2 and gains "{R}: This creature gets +1/+0 until end of turn."|
Icefall|Coldsnap|85|C|{2}{R}{R}|Sorcery|||Destroy target artifact or land.$Recover {R}{R} (When a creature is put into your graveyard from the battlefield, you may pay {R}{R}. If you do, return this card from your graveyard to your hand. Otherwise, exile this card.)|
-Karplusan Minotaur|Coldsnap|86|R|{2}{R}{R}|Creature - Minotaur Warrior|3|3|Cumulative upkeep-Flip a coin. (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 you win a coin flip, Karplusan Minotaur deals 1 damage to target creature or player.$Whenever you lose a coin flip, Karplusan Minotaur deals 1 damage to target creature or player of an opponent's choice.|
-Karplusan Wolverine|Coldsnap|87|C|{R}|Snow Creature - Wolverine Beast|1|1|Whenever Karplusan Wolverine becomes blocked, you may have it deal 1 damage to target creature or player.|
+Karplusan Minotaur|Coldsnap|86|R|{2}{R}{R}|Creature - Minotaur Warrior|3|3|Cumulative upkeep-Flip a coin. (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 you win a coin flip, Karplusan Minotaur deals 1 damage to any target.$Whenever you lose a coin flip, Karplusan Minotaur deals 1 damage to any target of an opponent's choice.|
+Karplusan Wolverine|Coldsnap|87|C|{R}|Snow Creature - Wolverine Beast|1|1|Whenever Karplusan Wolverine becomes blocked, you may have it deal 1 damage to any target.|
Lightning Serpent|Coldsnap|88|R|{X}{R}|Creature - Elemental Serpent|2|1|Trample, haste$Lightning Serpent enters the battlefield with X +1/+0 counters on it.$At the beginning of the end step, sacrifice Lightning Serpent.|
-Lightning Storm|Coldsnap|89|U|{1}{R}{R}|Instant|||Lightning Storm deals X damage to target creature or player, where X is 3 plus the number of charge counters on it.$Discard a land card: Put two charge counters on Lightning Storm. You may choose a new target for it. Any player may activate this ability but only if Lightning Storm is on the stack.|
+Lightning Storm|Coldsnap|89|U|{1}{R}{R}|Instant|||Lightning Storm deals X damage to any target, where X is 3 plus the number of charge counters on it.$Discard a land card: Put two charge counters on Lightning Storm. You may choose a new target for it. Any player may activate this ability but only if Lightning Storm is on the stack.|
Jotun Owl Keeper|Coldsnap|9|U|{2}{W}|Creature - Giant|3|3|Cumulative upkeep {W} or {U} (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 Jötun Owl Keeper dies, put a 1/1 white Bird creature token with flying onto the battlefield for each age counter on it.|
Lovisa Coldeyes|Coldsnap|90|R|{3}{R}{R}|Legendary Creature - Human|3|3|Each creature you control that's a Barbarian, a Warrior, or a Berserker gets +2/+2 and has haste.|
Magmatic Core|Coldsnap|91|U|{2}{R}{R}|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.)$At the beginning of your end step, Magmatic Core deals X damage divided as you choose among any number of target creatures, where X is the number of age counters on it.|
Martyr of Ashes|Coldsnap|92|C|{R}|Creature - Human Shaman|1|1|{2}, Reveal X red cards from your hand, Sacrifice Martyr of Ashes: Martyr of Ashes deals X damage to each creature without flying.|
Ohran Yeti|Coldsnap|93|C|{3}{R}|Snow Creature - Yeti|3|3|{2}{snow}: Target snow creature gains first strike until end of turn. ({snow} can be paid with one mana from a snow permanent.)|
-Orcish Bloodpainter|Coldsnap|94|C|{2}{R}|Creature - Orc Shaman|2|1|{T}, Sacrifice a creature: Orcish Bloodpainter deals 1 damage to target creature or player.|
+Orcish Bloodpainter|Coldsnap|94|C|{2}{R}|Creature - Orc Shaman|2|1|{T}, Sacrifice a creature: Orcish Bloodpainter deals 1 damage to any target.|
Rimescale Dragon|Coldsnap|95|R|{5}{R}{R}|Snow Creature - Dragon|5|5|Flying${2}{snow}: Tap target creature and put an ice counter on it. ({snow} can be paid with one mana from a snow permanent.)$Creatures with ice counters on them don't untap during their controllers' untap steps.|
Rite of Flame|Coldsnap|96|C|{R}|Sorcery|||Add {R}{R}, then add {R} for each card named Rite of Flame in each graveyard.|
Skred|Coldsnap|97|C|{R}|Instant|||Skred deals damage to target creature equal to the number of snow permanents you control.|
Stalking Yeti|Coldsnap|98|U|{2}{R}{R}|Snow Creature - Yeti|3|3|When Stalking Yeti enters the battlefield, if it's on the battlefield, it deals damage equal to its power to target creature an opponent controls and that creature deals damage equal to its power to Stalking Yeti.${2}{snow}: Return Stalking Yeti to its owner's hand. Activate this ability only any time you could cast a sorcery. ({snow} can be paid with one mana from a snow permanent.)|
-Surging Flame|Coldsnap|99|C|{1}{R}|Instant|||Ripple 4 (When you cast this spell, you may reveal the top four cards of your library. You may cast any revealed cards with the same name as this spell without paying their mana costs. Put the rest on the bottom of your library.)$Surging Flame deals 2 damage to target creature or player.|
+Surging Flame|Coldsnap|99|C|{1}{R}|Instant|||Ripple 4 (When you cast this spell, you may reveal the top four cards of your library. You may cast any revealed cards with the same name as this spell without paying their mana costs. Put the rest on the bottom of your library.)$Surging Flame deals 2 damage to any target.|
Act of Authority|Commander 2013 Edition|1|R|{1}{W}{W}|Enchantment|||When Act of Authority enters the battlefield, you may exile target artifact or enchantment.$At the beginning of your upkeep, you may exile target artifact or enchantment. If you do, its controller gains control of Act of Authority.|
Eternal Dragon|Commander 2013 Edition|10|R|{5}{W}{W}|Creature - Dragon Spirit|5|5|Flying${3}{W}{W}: Return Eternal Dragon from your graveyard to your hand. Activate this ability only during your upkeep.$Plainscycling {2} ({2}, Discard this card: Search your library for a Plains card, reveal it, and put it into your hand. Then shuffle your library.)|
Wight of Precinct Six|Commander 2013 Edition|100|U|{1}{B}|Creature - Zombie|1|1|Wight of Precinct Six gets +1/+1 for each creature card in your opponents' graveyards.|
-Blood Rites|Commander 2013 Edition|101|U|{3}{R}{R}|Enchantment|||{1}{R}, Sacrifice a creature: Blood Rites deals 2 damage to target creature or player.|
+Blood Rites|Commander 2013 Edition|101|U|{3}{R}{R}|Enchantment|||{1}{R}, Sacrifice a creature: Blood Rites deals 2 damage to any target.|
Capricious Efreet|Commander 2013 Edition|102|R|{4}{R}{R}|Creature - Efreet|6|4|At the beginning of your upkeep, choose target nonland permanent you control and up to two target nonland permanents you don't control. Destroy one of them at random.|
Charmbreaker Devils|Commander 2013 Edition|103|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.|
Crater Hellion|Commander 2013 Edition|104|R|{4}{R}{R}|Creature - Hellion Beast|6|6|Echo {4}{R}{R} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)$When Crater Hellion enters the battlefield, it deals 4 damage to each other creature.|
@@ -2481,10 +2481,10 @@ Curse of Chaos|Commander 2013 Edition|105|U|{2}{R}|Enchantment - Aura Curse|||En
Fireball|Commander 2013 Edition|106|U|{X}{R}|Sorcery|||Fireball deals X damage divided evenly, rounded down, among any number of target creatures and/or players.$Fireball costs {1} more to cast for each target beyond the first.|
Fissure Vent|Commander 2013 Edition|107|C|{3}{R}{R}|Sorcery|||Choose one or both - Destroy target artifact; and/or destroy target nonbasic land.|
From the Ashes|Commander 2013 Edition|108|R|{3}{R}|Sorcery|||Destroy all nonbasic lands. For each land destroyed this way, its controller may search his or her library for a basic land card and put it onto the battlefield. Then each player who searched his or her library this way shuffles it.|
-Furnace Celebration|Commander 2013 Edition|109|U|{1}{R}{R}|Enchantment|||Whenever you sacrifice another permanent, you may pay {2}. If you do, Furnace Celebration deals 2 damage to target creature or player.|
+Furnace Celebration|Commander 2013 Edition|109|U|{1}{R}{R}|Enchantment|||Whenever you sacrifice another permanent, you may pay {2}. If you do, Furnace Celebration deals 2 damage to any target.|
Fiend Hunter|Commander 2013 Edition|11|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.|
-Goblin Bombardment|Commander 2013 Edition|110|U|{1}{R}|Enchantment|||Sacrifice a creature: Goblin Bombardment deals 1 damage to target creature or player.|
-Goblin Sharpshooter|Commander 2013 Edition|111|R|{2}{R}|Creature - Goblin|1|1|Goblin Sharpshooter doesn't untap during your untap step.$Whenever a creature dies, untap Goblin Sharpshooter.${T}: Goblin Sharpshooter deals 1 damage to target creature or player.|
+Goblin Bombardment|Commander 2013 Edition|110|U|{1}{R}|Enchantment|||Sacrifice a creature: Goblin Bombardment deals 1 damage to any target.|
+Goblin Sharpshooter|Commander 2013 Edition|111|R|{2}{R}|Creature - Goblin|1|1|Goblin Sharpshooter doesn't untap during your untap step.$Whenever a creature dies, untap Goblin Sharpshooter.${T}: Goblin Sharpshooter deals 1 damage to any target.|
Guttersnipe|Commander 2013 Edition|112|U|{2}{R}|Creature - Goblin Shaman|2|2|Whenever you cast an instant or sorcery spell, Guttersnipe deals 2 damage to each opponent.|
Incendiary Command|Commander 2013 Edition|113|R|{3}{R}{R}|Sorcery|||Choose two - Incendiary Command deals 4 damage to target player; or Incendiary Command deals 2 damage to each creature; or destroy target nonbasic land; or each player discards all the cards in his or her hand, then draws that many cards.|
Inferno Titan|Commander 2013 Edition|114|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.|
@@ -2502,9 +2502,9 @@ Tempt with Vengeance|Commander 2013 Edition|125|R|{X}{R}|Sorcery|||Tempting offe
Terra Ravager|Commander 2013 Edition|126|U|{2}{R}{R}|Creature - Elemental Beast|0|4|Whenever Terra Ravager attacks, it gets +X/+0 until end of turn, where X is the number of lands defending player controls.|
Tooth and Claw|Commander 2013 Edition|127|R|{3}{R}|Enchantment|||Sacrifice two creatures: Put a 3/1 red Beast creature token named Carnivore onto the battlefield.|
War Cadence|Commander 2013 Edition|128|U|{2}{R}|Enchantment|||{X}{R}: This turn, creatures can't block unless their controller pays {X} for each blocking creature he or she controls.|
-Warstorm Surge|Commander 2013 Edition|129|R|{5}{R}|Enchantment|||Whenever a creature enters the battlefield under your control, it deals damage equal to its power to target creature or player.|
+Warstorm Surge|Commander 2013 Edition|129|R|{5}{R}|Enchantment|||Whenever a creature enters the battlefield under your control, it deals damage equal to its power to any target.|
Flickerwisp|Commander 2013 Edition|13|U|{1}{W}{W}|Creature - Elemental|3|1|Flying$When Flickerwisp enters the battlefield, exile another target permanent. Return that card to the battlefield under its owner's control at the beginning of the next end step.|
-Where Ancients Tread|Commander 2013 Edition|130|R|{4}{R}|Enchantment|||Whenever a creature with power 5 or greater enters the battlefield under your control, you may have Where Ancients Tread deal 5 damage to target creature or player.|
+Where Ancients Tread|Commander 2013 Edition|130|R|{4}{R}|Enchantment|||Whenever a creature with power 5 or greater enters the battlefield under your control, you may have Where Ancients Tread deal 5 damage to any target.|
Widespread Panic|Commander 2013 Edition|131|R|{2}{R}|Enchantment|||Whenever a spell or ability causes its controller to shuffle his or her library, that player puts a card from his or her hand on top of his or her library.|
Wild Ricochet|Commander 2013 Edition|132|R|{2}{R}{R}|Instant|||You may choose new targets for target instant or sorcery spell. Then copy that spell. You may choose new targets for the copy.|
Witch Hunt|Commander 2013 Edition|133|R|{4}{R}|Enchantment|||Players can't gain life.$At the beginning of your upkeep, Witch Hunt deals 4 damage to you.$At the beginning of your end step, target opponent chosen at random gains control of Witch Hunt.|
@@ -2562,8 +2562,8 @@ Mystic Barrier|Commander 2013 Edition|18|R|{4}{W}|Enchantment|||When Mystic Barr
Charnelhoard Wurm|Commander 2013 Edition|180|R|{4}{B}{R}{G}|Creature - Wurm|6|6|Trample$Whenever Charnelhoard Wurm deals damage to an opponent, you may return target card from your graveyard to your hand.|
Crosis's Charm|Commander 2013 Edition|181|U|{U}{B}{R}|Instant|||Choose one - Return target permanent to its owner's hand; or destroy target nonblack creature, and it can't be regenerated; or destroy target artifact.|
Cruel Ultimatum|Commander 2013 Edition|182|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.|
-Death Grasp|Commander 2013 Edition|183|R|{X}{W}{B}|Sorcery|||Death Grasp deals X damage to target creature or player. You gain X life.|
-Deathbringer Thoctar|Commander 2013 Edition|184|R|{4}{B}{R}|Creature - Zombie Beast|3|3|Whenever another creature dies, you may put a +1/+1 counter on Deathbringer Thoctar.$Remove a +1/+1 counter from Deathbringer Thoctar: Deathbringer Thoctar deals 1 damage to target creature or player.|
+Death Grasp|Commander 2013 Edition|183|R|{X}{W}{B}|Sorcery|||Death Grasp deals X damage to any target. You gain X life.|
+Deathbringer Thoctar|Commander 2013 Edition|184|R|{4}{B}{R}|Creature - Zombie Beast|3|3|Whenever another creature dies, you may put a +1/+1 counter on Deathbringer Thoctar.$Remove a +1/+1 counter from Deathbringer Thoctar: Deathbringer Thoctar deals 1 damage to any target.|
Deepfire Elemental|Commander 2013 Edition|185|U|{4}{B}{R}|Creature - Elemental|4|4|{X}{X}{1}: Destroy target artifact or creature with converted mana cost X.|
Derevi, Empyrial Tactician|Commander 2013 Edition|186|M|{G}{W}{U}|Legendary Creature - Bird Wizard|2|3|Flying$Whenever Derevi, Empyrial Tactician enters the battlefield or a creature you control deals combat damage to a player, you may tap or untap target permanent.${1}{G}{W}{U}: Put Derevi onto the battlefield from the command zone.|
Dromar's Charm|Commander 2013 Edition|187|U|{W}{U}{B}|Instant|||Choose one - You gain 5 life; or counter target spell; or target creature gets -2/-2 until end of turn.|
@@ -2578,7 +2578,7 @@ Jeleva, Nephalia's Scourge|Commander 2013 Edition|194|M|{1}{U}{B}{R}|Legendary C
Jund Charm|Commander 2013 Edition|195|U|{B}{R}{G}|Instant|||Choose one - Exile all cards from target player's graveyard; or Jund Charm deals 2 damage to each creature; or put two +1/+1 counters on target creature.|
Leafdrake Roost|Commander 2013 Edition|196|U|{3}{G}{U}|Enchantment - Aura|||Enchant land$Enchanted land has "{G}{U}, {T}: Put a 2/2 green and blue Drake creature token with flying onto the battlefield."|
Lim-Dul's Vault|Commander 2013 Edition|197|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.|
-Marath, Will of the Wild|Commander 2013 Edition|198|M|{R}{G}{W}|Legendary Creature - Elemental Beast|0|0|Marath, Will of the Wild enters the battlefield with a number of +1/+1 counters on it equal to the amount of mana spent to cast it.${X}, Remove X +1/+1 counters from Marath: Choose one - Put X +1/+1 counters on target creature; or Marath deals X damage to target creature or player; or put an X/X green Elemental creature token onto the battlefield. X can't be 0.|
+Marath, Will of the Wild|Commander 2013 Edition|198|M|{R}{G}{W}|Legendary Creature - Elemental Beast|0|0|Marath, Will of the Wild enters the battlefield with a number of +1/+1 counters on it equal to the amount of mana spent to cast it.${X}, Remove X +1/+1 counters from Marath: Choose one - Put X +1/+1 counters on target creature; or Marath deals X damage to any target; or put an X/X green Elemental creature token onto the battlefield. X can't be 0.|
Mayael the Anima|Commander 2013 Edition|199|M|{R}{G}{W}|Legendary Creature - Elf Shaman|2|3|{3}{R}{G}{W}, {T}: Look at the top five cards of your library. You may put a creature card with power 5 or greater from among them onto the battlefield. Put the rest on the bottom of your library in any order.|
Aerie Mystics|Commander 2013 Edition|2|U|{4}{W}|Creature - Bird Wizard|3|3|Flying${1}{G}{U}: Creatures you control gain shroud until end of turn. (They can't be the targets of spells or abilities.)|
Serene Master|Commander 2013 Edition|20|R|{1}{W}|Creature - Human Monk|0|2|Whenever Serene Master blocks, exchange its power and the power of target creature it's blocking until end of combat.|
@@ -2627,7 +2627,7 @@ Carnage Altar|Commander 2013 Edition|238|U|{2}|Artifact|||{3}, Sacrifice a creat
Conjurer's Closet|Commander 2013 Edition|239|R|{5}|Artifact|||At the beginning of your end step, you may exile target creature you control, then return that card to the battlefield under your control.|
Tempt with Glory|Commander 2013 Edition|24|R|{5}{W}|Sorcery|||Tempting offer - Put a +1/+1 counter on each creature you control. Each opponent may put a +1/+1 counter on each creature he or she controls. For each opponent who does, put a +1/+1 counter on each creature you control.|
Crawlspace|Commander 2013 Edition|240|R|{3}|Artifact|||No more than two creatures can attack you each combat.|
-Darksteel Ingot|Commander 2013 Edition|241|U|{3}|Artifact|||Indestructible${T}: Add one mana of any color to your mana pool.|
+Darksteel Ingot|Commander 2013 Edition|241|U|{3}|Artifact|||Indestructible${T}: Add one mana of any color.|
Druidic Satchel|Commander 2013 Edition|242|R|{3}|Artifact|||{2}, {T}: Reveal the top card of your library. If it's a creature card, put a 1/1 green Saproling creature token onto the battlefield. If it's a land card, put that card onto the battlefield under your control. If it's a noncreature, nonland card, you gain 2 life.|
Eye of Doom|Commander 2013 Edition|243|R|{4}|Artifact|||When Eye of Doom enters the battlefield, each player chooses a nonland permanent and puts a doom counter on it.${2}, {T}, Sacrifice Eye of Doom: Destroy each permanent with a doom counter on it.|
Jar of Eyeballs|Commander 2013 Edition|244|R|{3}|Artifact|||Whenever a creature you control dies, put two eyeball counters on Jar of Eyeballs.${3}, {T}, Remove all eyeball counters from Jar of Eyeballs: Look at the top X cards of your library, where X is the number of eyeball counters removed this way. Put one of them into your hand and the rest on the bottom of your library in any order.|
@@ -2671,7 +2671,7 @@ Bojuka Bog|Commander 2013 Edition|278|C||Land|||Bojuka Bog enters the battlefiel
Boros Garrison|Commander 2013 Edition|279|C||Land|||Boros Garrison enters the battlefield tapped.$When Boros Garrison enters the battlefield, return a land you control to its owner's hand.${T}: Add {R}{W}.|
Arcane Denial|Commander 2013 Edition|28|C|{1}{U}|Instant|||Counter target spell. Its controller may draw up to two cards at the beginning of the next turn's upkeep.$You draw a card at the beginning of the next turn's upkeep.|
Boros Guildgate|Commander 2013 Edition|280|C||Land - Gate|||Boros Guildgate enters the battlefield tapped.${T}: Add {R} or {W}.|
-Command Tower|Commander 2013 Edition|281|C||Land|||{T}: Add to your mana pool one mana of any color in your commander's color identity.|
+Command Tower|Commander 2013 Edition|281|C||Land|||{T}: Add one mana of any color in your commander's color identity.|
Contested Cliffs|Commander 2013 Edition|282|R||Land|||{T}: Add {C}.${R}{G}, {T}: Target Beast creature you control fights target creature an opponent controls. (Each deals damage equal to its power to the other.)|
Crumbling Necropolis|Commander 2013 Edition|283|U||Land|||Crumbling Necropolis enters the battlefield tapped.${T}: Add {U}, {B}, or {R}.|
Dimir Guildgate|Commander 2013 Edition|284|C||Land - Gate|||Dimir Guildgate enters the battlefield tapped.${T}: Add {U} or {B}.|
@@ -2704,12 +2704,12 @@ Mosswort Bridge|Commander 2013 Edition|307|R||Land|||Hideaway (This land ente
Naya Panorama|Commander 2013 Edition|308|C||Land|||{tap}: Add {C}.${1}, {tap}, Sacrifice Naya Panorama: Search your library for a basic Mountain, Forest, or Plains card and put it onto the battlefield tapped. Then shuffle your library.|
New Benalia|Commander 2013 Edition|309|U||Land|||New Benalia enters the battlefield tapped.$When New Benalia enters the battlefield, scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)${tap}: Add {W}.|
Azami, Lady of Scrolls|Commander 2013 Edition|31|R|{2}{U}{U}{U}|Legendary Creature - Human Wizard|0|2|Tap an untapped Wizard you control: Draw a card.|
-Opal Palace|Commander 2013 Edition|310|C||Land|||{tap}: Add {C}.${1}, {tap}: Add to your mana pool one mana of any color in your commander's color identity. If you spend this mana to cast your commander, it enters the battlefield with a number of +1/+1 counters on it equal to the number of times it's been cast from the command zone this game.|
+Opal Palace|Commander 2013 Edition|310|C||Land|||{tap}: Add {C}.${1}, {tap}: Add one mana of any color in your commander's color identity. If you spend this mana to cast your commander, it enters the battlefield with a number of +1/+1 counters on it equal to the number of times it's been cast from the command zone this game.|
Orzhov Basilica|Commander 2013 Edition|311|C||Land|||Orzhov Basilica enters the battlefield tapped.$When Orzhov Basilica enters the battlefield, return a land you control to its owner's hand.${tap}: Add {W}{B}.|
Orzhov Guildgate|Commander 2013 Edition|312|C||Land - Gate|||Orzhov Guildgate enters the battlefield tapped.${tap}: Add {W} or {B}.|
Rakdos Carnarium|Commander 2013 Edition|313|C||Land|||Rakdos Carnarium enters the battlefield tapped.$When Rakdos Carnarium enters the battlefield, return a land you control to its owner's hand.${tap}: Add {B}{R}.|
Rakdos Guildgate|Commander 2013 Edition|314|C||Land - Gate|||Rakdos Guildgate enters the battlefield tapped.${tap}: Add {B} or {R}.|
-Rupture Spire|Commander 2013 Edition|315|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.|
+Rupture Spire|Commander 2013 Edition|315|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.|
Saltcrusted Steppe|Commander 2013 Edition|316|U||Land|||{tap}: Add {C}.${1}, {tap}: Put a storage counter on Saltcrusted Steppe.${1}, Remove X storage counters from Saltcrusted Steppe: Add X mana in any combination of {G} and/or {W}.|
Savage Lands|Commander 2013 Edition|317|U||Land|||Savage Lands enters the battlefield tapped.${tap}: Add {B}, {R}, or {G}.|
Seaside Citadel|Commander 2013 Edition|318|U||Land|||Seaside Citadel enters the battlefield tapped.${tap}: Add {G}, {W}, or {U}.|
@@ -2721,18 +2721,18 @@ Selesnya Sanctuary|Commander 2013 Edition|322|C||Land|||Selesnya Sanctuary enter
Simic Guildgate|Commander 2013 Edition|323|C||Land - Gate|||Simic Guildgate enters the battlefield tapped.${tap}: Add {G} or {U}.|
Slippery Karst|Commander 2013 Edition|324|C||Land|||Slippery Karst enters the battlefield tapped.${tap}: Add {G}.$Cycling {2} ({2}, Discard this card: Draw a card.)|
Smoldering Crater|Commander 2013 Edition|325|C||Land|||Smoldering Crater enters the battlefield tapped.${tap}: Add {R}.$Cycling {2} ({2}, Discard this card: Draw a card.)|
-Springjack Pasture|Commander 2013 Edition|326|R||Land|||{tap}: Add {C}.${4}, {tap}: Put a 0/1 white Goat creature token onto the battlefield.${tap}, Sacrifice X Goats: Add X mana of any one color to your mana pool. You gain X life.|
+Springjack Pasture|Commander 2013 Edition|326|R||Land|||{tap}: Add {C}.${4}, {tap}: Put a 0/1 white Goat creature token onto the battlefield.${tap}, Sacrifice X Goats: Add X mana of any one color. You gain X life.|
Temple of the False God|Commander 2013 Edition|327|U||Land|||{tap}: Add {C}{C}. Activate this ability only if you control five or more lands.|
Terramorphic Expanse|Commander 2013 Edition|328|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.|
Tranquil Thicket|Commander 2013 Edition|329|C||Land|||Tranquil Thicket enters the battlefield tapped.${tap}: Add {G}.$Cycling {G} ({G}, Discard this card: Draw a card.)|
Borrowing 100,000 Arrows|Commander 2013 Edition|33|U|{2}{U}|Sorcery|||Draw a card for each tapped creature target opponent controls.|
-Transguild Promenade|Commander 2013 Edition|330|C||Land|||Transguild Promenade enters the battlefield tapped.$When Transguild Promenade enters the battlefield, sacrifice it unless you pay {1}.${tap}: Add one mana of any color to your mana pool.|
+Transguild Promenade|Commander 2013 Edition|330|C||Land|||Transguild Promenade enters the battlefield tapped.$When Transguild Promenade enters the battlefield, sacrifice it unless you pay {1}.${tap}: Add one mana of any color.|
Urza's Factory|Commander 2013 Edition|331|U||Land - Urza s|||{tap}: Add {C}.${7}, {tap}: Put a 2/2 colorless Assembly-Worker artifact creature token onto the battlefield.|
Vitu-Ghazi, the City-Tree|Commander 2013 Edition|332|U||Land|||{tap}: Add {C}.${2}{G}{W}, {tap}: Put a 1/1 green Saproling creature token onto the battlefield.|
-Vivid Crag|Commander 2013 Edition|333|U||Land|||Vivid Crag enters the battlefield tapped with two charge counters on it.${tap}: Add {R}.${tap}, Remove a charge counter from Vivid Crag: Add one mana of any color to your mana pool.|
-Vivid Creek|Commander 2013 Edition|334|U||Land|||Vivid Creek enters the battlefield tapped with two charge counters on it.${tap}: Add {U}.${tap}, Remove a charge counter from Vivid Creek: Add one mana of any color to your mana pool.|
-Vivid Grove|Commander 2013 Edition|335|U||Land|||Vivid Grove enters the battlefield tapped with two charge counters on it.${tap}: Add {G}.${tap}, Remove a charge counter from Vivid Grove: Add one mana of any color to your mana pool.|
-Vivid Marsh|Commander 2013 Edition|336|U||Land|||Vivid Marsh enters the battlefield tapped with two charge counters on it.${tap}: Add {B}.${tap}, Remove a charge counter from Vivid Marsh: Add one mana of any color to your mana pool.|
+Vivid Crag|Commander 2013 Edition|333|U||Land|||Vivid Crag enters the battlefield tapped with two charge counters on it.${tap}: Add {R}.${tap}, Remove a charge counter from Vivid Crag: Add one mana of any color.|
+Vivid Creek|Commander 2013 Edition|334|U||Land|||Vivid Creek enters the battlefield tapped with two charge counters on it.${tap}: Add {U}.${tap}, Remove a charge counter from Vivid Creek: Add one mana of any color.|
+Vivid Grove|Commander 2013 Edition|335|U||Land|||Vivid Grove enters the battlefield tapped with two charge counters on it.${tap}: Add {G}.${tap}, Remove a charge counter from Vivid Grove: Add one mana of any color.|
+Vivid Marsh|Commander 2013 Edition|336|U||Land|||Vivid Marsh enters the battlefield tapped with two charge counters on it.${tap}: Add {B}.${tap}, Remove a charge counter from Vivid Marsh: Add one mana of any color.|
Plains|Commander 2013 Edition|337|L||Basic Land - Plains|||W|
Plains|Commander 2013 Edition|338|L||Basic Land - Plains|||W|
Plains|Commander 2013 Edition|339|L||Basic Land - Plains|||W|
@@ -2783,7 +2783,7 @@ Stormscape Battlemage|Commander 2013 Edition|58|U|{2}{U}|Creature - Metathran Wi
Strategic Planning|Commander 2013 Edition|59|U|{1}{U}|Sorcery|||Look at the top three cards of your library. Put one of them into your hand and the rest into your graveyard.|
Azorius Herald|Commander 2013 Edition|6|U|{2}{W}|Creature - Spirit|2|1|Azorius Herald can't be blocked.$When Azorius Herald enters the battlefield, you gain 4 life.$When Azorius Herald enters the battlefield, sacrifice it unless {U} was spent to cast it.|
Tempt with Reflections|Commander 2013 Edition|60|R|{3}{U}|Sorcery|||Tempting offer - Choose target creature you control. Put a token onto the battlefield that's a copy of that creature. Each opponent may put a token onto the battlefield that's a copy of that creature. For each opponent who does, put a token onto the battlefield that's a copy of that creature.|
-Thornwind Faeries|Commander 2013 Edition|61|C|{1}{U}{U}|Creature - Faerie|1|1|Flying${tap}: Thornwind Faeries deals 1 damage to target creature or player.|
+Thornwind Faeries|Commander 2013 Edition|61|C|{1}{U}{U}|Creature - Faerie|1|1|Flying${tap}: Thornwind Faeries deals 1 damage to any target.|
Tidal Force|Commander 2013 Edition|62|R|{5}{U}{U}{U}|Creature - Elemental|7|7|At the beginning of each upkeep, you may tap or untap target permanent.|
True-Name Nemesis|Commander 2013 Edition|63|R|{1}{U}{U}|Creature - Merfolk Rogue|3|1|As True-Name Nemesis enters the battlefield, choose a player.$True-Name Nemesis has protection from the chosen player. (This creature can't be blocked, targeted, dealt damage, or enchanted by anything controlled by that player.)|
Uyo, Silent Prophet|Commander 2013 Edition|64|R|{4}{U}{U}|Legendary Creature - Moonfolk Wizard|4|4|Flying${2}, Return two lands you control to their owner's hand: Copy target instant or sorcery spell. You may choose new targets for the copy.|
@@ -2971,10 +2971,10 @@ Wren's Run Packmaster|Commander 2014 Edition|227|R|{3}{G}|Creature - Elf Warrior
Argentum Armor|Commander 2014 Edition|228|R|{6}|Artifact - Equipment|||Equipped creature gets +6/+6.$Whenever equipped creature attacks, destroy target permanent.$Equip {6}|
Bonehoard|Commander 2014 Edition|229|R|{4}|Artifact - Equipment|||Living weapon (When this Equipment enters the battlefield, put a 0/0 black Germ creature token onto the battlefield, then attach this to it.)$Equipped creature gets +X/+X, where X is the number of creature cards in all graveyards.$Equip {2}|
Ghoulcaller Gisa|Commander 2014 Edition|23|M|{3}{B}{B}|Legendary Creature - Human Wizard|3|4|{B}, {tap}, Sacrifice another creature: Put X 2/2 black Zombie creature tokens onto the battlefield, where X is the sacrificed creature's power.|
-Bosh, Iron Golem|Commander 2014 Edition|230|R|{8}|Legendary Artifact Creature - Golem|6|7|Trample${3}{R}, Sacrifice an artifact: Bosh, Iron Golem deals damage equal to the sacrificed artifact's converted mana cost to target creature or player.|
+Bosh, Iron Golem|Commander 2014 Edition|230|R|{8}|Legendary Artifact Creature - Golem|6|7|Trample${3}{R}, Sacrifice an artifact: Bosh, Iron Golem deals damage equal to the sacrificed artifact's converted mana cost to any target.|
Bottle Gnomes|Commander 2014 Edition|231|U|{3}|Artifact Creature - Gnome|1|3|Sacrifice Bottle Gnomes: You gain 3 life.|
Burnished Hart|Commander 2014 Edition|232|U|{3}|Artifact Creature - Elk|2|2|{3}, Sacrifice Burnished Hart: Search your library for up to two basic land cards, put them onto the battlefield tapped, then shuffle your library.|
-Caged Sun|Commander 2014 Edition|233|R|{6}|Artifact|||As Caged Sun enters the battlefield, choose a color.$Creatures you control of the chosen color get +1/+1.$Whenever a land's ability adds one or more mana of the chosen color to your mana pool, add one additional mana of that color to your mana pool.|
+Caged Sun|Commander 2014 Edition|233|R|{6}|Artifact|||As Caged Sun enters the battlefield, choose a color.$Creatures you control of the chosen color get +1/+1.$Whenever a land's ability adds one or more mana of the chosen color, add one additional mana of that color.|
Cathodion|Commander 2014 Edition|234|U|{3}|Artifact Creature - Construct|3|3|When Cathodion dies, add {C}{C}{C}.|
Charcoal Diamond|Commander 2014 Edition|235|U|{2}|Artifact|||Charcoal Diamond enters the battlefield tapped.${tap}: Add {B}.|
Dreamstone Hedron|Commander 2014 Edition|236|U|{6}|Artifact|||{tap}: Add {C}{C}{C}.${3}, {tap}, Sacrifice Dreamstone Hedron: Draw three cards.|
@@ -3112,7 +3112,7 @@ Titania, Protector of Argoth|Commander 2014 Edition|50|M|{3}{G}{G}|Legendary Cre
Wave of Vitriol|Commander 2014 Edition|51|R|{5}{G}{G}|Sorcery|||Each player sacrifices all artifacts, enchantments, and nonbasic lands he or she controls. For each land sacrificed this way, its controller may search his or her library for a basic land card and put it onto the battlefield tapped. Then each player who searched his or her library this way shuffles it.|
Wolfcaller's Howl|Commander 2014 Edition|52|R|{3}{G}|Enchantment|||At the beginning of your upkeep, put X 2/2 green Wolf creature tokens onto the battlefield, where X is the number of your opponents with four or more cards in hand.|
Assault Suit|Commander 2014 Edition|53|U|{4}|Artifact - Equipment|||Equipped creature gets +2/+2, has haste, can't attack you or a planeswalker you control, and can't be sacrificed.$At the beginning of each opponent's upkeep, you may have that player gain control of equipped creature until end of turn. If you do, untap it.$Equip {3}|
-Commander's Sphere|Commander 2014 Edition|54|C|{3}|Artifact|||{tap}: Add to your mana pool one mana of any color in your commander's color identity.$Sacrifice Commander's Sphere: Draw a card.|
+Commander's Sphere|Commander 2014 Edition|54|C|{3}|Artifact|||{tap}: Add one mana of any color in your commander's color identity.$Sacrifice Commander's Sphere: Draw a card.|
Crown of Doom|Commander 2014 Edition|55|R|{3}|Artifact|||Whenever a creature attacks you or a planeswalker you control, it gets +2/+0 until end of turn.${2}: Target player other than Crown of Doom's owner gains control of it. Activate this ability only during your turn.|
Loreseeker's Stone|Commander 2014 Edition|56|U|{6}|Artifact|||{3}, {tap}: Draw three cards. This ability costs {1} more to activate for each card in your hand.|
Masterwork of Ingenuity|Commander 2014 Edition|57|R|{1}|Artifact - Equipment|||You may have Masterwork of Ingenuity enter the battlefield as a copy of any Equipment on the battlefield.|
@@ -3167,12 +3167,12 @@ Loyal Retainers|Commander's Arsenal|10|U|{2}{W}|Creature - Human Advisor|1|1|Sac
Maelstrom Wanderer|Commander's Arsenal|11|M|{5}{U}{R}{G}|Legendary Creature - Elemental|7|5|Creatures you control have haste.$Cascade, cascade (When you cast this spell, exile cards from the top of your library until you exile a nonland card that costs less. You may cast it without paying its mana cost. Put the exiled cards on the bottom in a random order. Then do it again.)|
The Mimeoplasm|Commander's Arsenal|12|M|{2}{G}{U}{B}|Legendary Creature - Ooze|0|0|As The Mimeoplasm enters the battlefield, you may exile two creature cards from graveyards. If you do, it enters the battlefield as a copy of one of those cards with a number of additional +1/+1 counters on it equal to the power of the other card.|
Mind's Eye|Commander's Arsenal|13|R|{5}|Artifact|||Whenever an opponent draws a card, you may pay {1}. If you do, draw a card.|
-Mirari's Wake|Commander's Arsenal|14|R|{3}{G}{W}|Enchantment|||Creatures you control get +1/+1.$$Whenever you tap a land for mana, add one mana to your mana pool of any type that land produced.|
+Mirari's Wake|Commander's Arsenal|14|R|{3}{G}{W}|Enchantment|||Creatures you control get +1/+1.$$Whenever you tap a land for mana, add one mana of any type that land produced.|
Rhystic Study|Commander's Arsenal|15|C|{2}{U}|Enchantment|||Whenever an opponent casts a spell, you may draw a card unless that player pays {1}.|
Scroll Rack|Commander's Arsenal|16|R|{2}|Artifact|||{1}, {tap}: Exile any number of cards from your hand face down. Put that many cards from the top of your library into your hand. Then look at the exiled cards and put them on top of your library in any order.|
Sylvan Library|Commander's Arsenal|17|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.|
Vela the Night-Clad|Commander's Arsenal|18|M|{4}{U}{B}|Legendary Creature - Human Wizard|4|4|Intimidate$Other creatures you control have intimidate.$Whenever Vela the Night-Clad or another creature you control leaves the battlefield, each opponent loses 1 life.|
-Command Tower|Commander's Arsenal|2|C||Land|||{tap}: Add to your mana pool one mana of any color in your commander's color identity.|
+Command Tower|Commander's Arsenal|2|C||Land|||{tap}: Add one mana of any color in your commander's color identity.|
Decree of Pain|Commander's Arsenal|3|R|{6}{B}{B}|Sorcery|||Destroy all creatures. They can't be regenerated. Draw a card for each creature destroyed this way.$Cycling {3}{B}{B} ({3}{B}{B}, Discard this card: Draw a card.)$When you cycle Decree of Pain, all creatures get -2/-2 until end of turn.|
Desertion|Commander's Arsenal|4|R|{3}{U}{U}|Instant|||Counter target spell. If an artifact or creature spell is countered this way, put that card onto the battlefield under your control instead of into its owner's graveyard.|
Diaochan, Artful Beauty|Commander's Arsenal|5|R|{3}{R}|Legendary Creature - Human Advisor|1|1|{tap}: Destroy target creature of your choice, then destroy target creature of an opponent's choice. Activate this ability only during your turn, before attackers are declared.|
@@ -3195,7 +3195,7 @@ Goblin Outlander|Conflux|109|C|{B}{R}|Creature - Goblin Scout|2|2|Protection fro
Martial Coup|Conflux|11|R|{X}{W}{W}|Sorcery|||Put X 1/1 white Soldier creature tokens onto the battlefield. If X is 5 or more, destroy all other creatures.|
Gwafa Hazid, Profiteer|Conflux|110|R|{1}{W}{U}|Legendary Creature - Human Rogue|2|2|{W}{U}, {tap}: Put a bribery counter on target creature you don't control. Its controller draws a card.$Creatures with bribery counters on them can't attack or block.|
Hellkite Hatchling|Conflux|111|U|{2}{R}{G}|Creature - Dragon|2|2|Devour 1 (As this enters the battlefield, you may sacrifice any number of creatures. This creature enters the battlefield with that many +1/+1 counters on it.)$Hellkite Hatchling has flying and trample if it devoured a creature.|
-Jhessian Balmgiver|Conflux|112|U|{1}{W}{U}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.${tap}: Target creature is unblockable this turn.|
+Jhessian Balmgiver|Conflux|112|U|{1}{W}{U}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.${tap}: Target creature is unblockable this turn.|
Knight of the Reliquary|Conflux|113|R|{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.|
Knotvine Mystic|Conflux|114|U|{R}{G}{W}|Creature - Elf Druid|2|2|{1}, {tap}: Add {R}{G}{W}.|
Maelstrom Archangel|Conflux|115|M|{W}{U}{B}{R}{G}|Creature - Angel|5|5|Flying$Whenever Maelstrom Archangel deals combat damage to a player, you may cast a nonland card from your hand without paying its mana cost.|
@@ -3223,14 +3223,14 @@ Armillary Sphere|Conflux|134|C|{2}|Artifact|||{2}, {tap}, Sacrifice Armillary Sp
Bone Saw|Conflux|135|C|{0}|Artifact - Equipment|||Equipped creature gets +1/+0.$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)|
Font of Mythos|Conflux|136|R|{4}|Artifact|||At the beginning of each player's draw step, that player draws two additional cards.|
Kaleidostone|Conflux|137|C|{2}|Artifact|||When Kaleidostone enters the battlefield, draw a card.${5}, {tap}, Sacrifice Kaleidostone: Add {W}{U}{B}{R}{G}.|
-Mana Cylix|Conflux|138|C|{1}|Artifact|||{1}, {tap}: Add one mana of any color to your mana pool.|
+Mana Cylix|Conflux|138|C|{1}|Artifact|||{1}, {tap}: Add one mana of any color.|
Manaforce Mace|Conflux|139|U|{4}|Artifact - Equipment|||Domain - Equipped creature gets +1/+1 for each basic land type among lands you control.$Equip {3}|
Paragon of the Amesha|Conflux|14|U|{2}{W}|Creature - Human Knight|2|2|First strike${W}{U}{B}{R}{G}: Until end of turn, Paragon of the Amesha becomes an Angel, gets +3/+3, and gains flying and lifelink.|
Obelisk of Alara|Conflux|140|R|{6}|Artifact|||{1}{W}, {tap}: You gain 5 life.${1}{U}, {tap}: Draw a card, then discard a card.${1}{B}, {tap}: Target creature gets -2/-2 until end of turn.${1}{R}, {tap}: Obelisk of Alara deals 3 damage to target player.${1}{G}, {tap}: Target creature gets +4/+4 until end of turn.|
-Ancient Ziggurat|Conflux|141|U||Land|||{tap}: Add one mana of any color to your mana pool. Spend this mana only to cast a creature spell.|
-Exotic Orchard|Conflux|142|R||Land|||{tap}: Add to your mana pool one mana of any color that a land an opponent controls could produce.|
+Ancient Ziggurat|Conflux|141|U||Land|||{tap}: Add one mana of any color. Spend this mana only to cast a creature spell.|
+Exotic Orchard|Conflux|142|R||Land|||{tap}: Add one mana of any color that a land an opponent controls could produce.|
Reliquary Tower|Conflux|143|U||Land|||You have no maximum hand size.${tap}: Add {C}.|
-Rupture Spire|Conflux|144|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.|
+Rupture Spire|Conflux|144|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.|
Unstable Frontier|Conflux|145|U||Land|||{tap}: Add {C}.${tap}: Target land you control becomes the basic land type of your choice until end of turn.|
Path to Exile|Conflux|15|U|{W}|Instant|||Exile target creature. Its controller may search his or her library for a basic land card, put that card onto the battlefield tapped, then shuffle his or her library.|
Rhox Meditant|Conflux|16|C|{3}{W}|Creature - Rhino Monk|2|4|When Rhox Meditant enters the battlefield, if you control a green permanent, draw a card.|
@@ -3279,7 +3279,7 @@ Sedraxis Alchemist|Conflux|54|C|{2}{B}|Creature - Zombie Wizard|2|2|When Sedraxi
Voices from the Void|Conflux|55|U|{4}{B}|Sorcery|||Domain - Target player discards a card for each basic land type among lands you control.|
Wretched Banquet|Conflux|56|C|{B}|Sorcery|||Destroy target creature if it has the least power or is tied for least power among creatures on the battlefield.|
Yoke of the Damned|Conflux|57|C|{1}{B}|Enchantment - Aura|||Enchant creature$When a creature dies, destroy enchanted creature.|
-Banefire|Conflux|58|R|{X}{R}|Sorcery|||Banefire deals X damage to target creature or player.$If X is 5 or more, Banefire can't be countered by spells or abilities and the damage can't be prevented.|
+Banefire|Conflux|58|R|{X}{R}|Sorcery|||Banefire deals X damage to any target.$If X is 5 or more, Banefire can't be countered by spells or abilities and the damage can't be prevented.|
Bloodhall Ooze|Conflux|59|R|{R}|Creature - Ooze|1|1|At the beginning of your upkeep, if you control a black permanent, you may put a +1/+1 counter on Bloodhall Ooze.$At the beginning of your upkeep, if you control a green permanent, you may put a +1/+1 counter on Bloodhall Ooze.|
Court Homunculus|Conflux|6|C|{W}|Artifact Creature - Homunculus|1|1|Court Homunculus gets +1/+1 as long as you control another artifact.|
Canyon Minotaur|Conflux|60|C|{3}{R}|Creature - Minotaur Warrior|3|3||
@@ -3298,7 +3298,7 @@ Rakka Mar|Conflux|71|R|{2}{R}{R}|Legendary Creature - Human Shaman|2|2|Haste${R}
Toxic Iguanar|Conflux|72|C|{R}|Creature - Lizard|1|1|Toxic Iguanar has deathtouch as long as you control a green permanent. (Any amount of damage a creature with deathtouch deals to a creature is enough to destroy it.)|
Viashino Slaughtermaster|Conflux|73|U|{1}{R}|Creature - Viashino Warrior|1|1|Double strike${B}{G}: Viashino Slaughtermaster gets +1/+1 until end of turn. Activate this ability only once each turn.|
Volcanic Fallout|Conflux|74|U|{1}{R}{R}|Instant|||Volcanic Fallout can't be countered.$Volcanic Fallout deals 2 damage to each creature and each player.|
-Voracious Dragon|Conflux|75|R|{3}{R}{R}|Creature - Dragon|4|4|Flying$Devour 1 (As this enters the battlefield, you may sacrifice any number of creatures. This creature enters the battlefield with that many +1/+1 counters on it.)$When Voracious Dragon enters the battlefield, it deals damage to target creature or player equal to twice the number of Goblins it devoured.|
+Voracious Dragon|Conflux|75|R|{3}{R}{R}|Creature - Dragon|4|4|Flying$Devour 1 (As this enters the battlefield, you may sacrifice any number of creatures. This creature enters the battlefield with that many +1/+1 counters on it.)$When Voracious Dragon enters the battlefield, it deals damage to any target equal to twice the number of Goblins it devoured.|
Wandering Goblins|Conflux|76|C|{2}{R}|Creature - Goblin Warrior|0|3|Domain - {3}: Wandering Goblins gets +1/+0 until end of turn for each basic land type among lands you control.|
Worldheart Phoenix|Conflux|77|R|{3}{R}|Creature - Phoenix|2|2|Flying$You may cast Worldheart Phoenix from your graveyard by paying {W}{U}{B}{R}{G} rather than paying its mana cost. If you do, it enters the battlefield with two +1/+1 counters on it.|
Beacon Behemoth|Conflux|78|C|{3}{G}{G}|Creature - Beast|5|3|{1}: Target creature with power 5 or greater gains vigilance until end of turn.|
@@ -3323,7 +3323,7 @@ Sylvan Bounty|Conflux|94|C|{5}{G}|Instant|||Target player gains 8 life.$Basic la
Thornling|Conflux|95|M|{3}{G}{G}|Creature - Elemental Shapeshifter|4|4|{G}: Thornling gains haste until end of turn.${G}: Thornling gains trample until end of turn.${G}: Thornling is indestructible this turn.${1}: Thornling gets +1/-1 until end of turn.${1}: Thornling gets -1/+1 until end of turn.|
Tukatongue Thallid|Conflux|96|C|{G}|Creature - Fungus|1|1|When Tukatongue Thallid dies, put a 1/1 green Saproling creature token onto the battlefield.|
Wild Leotau|Conflux|97|C|{2}{G}{G}|Creature - Cat|5|4|At the beginning of your upkeep, sacrifice Wild Leotau unless you pay {G}.|
-Apocalypse Hydra|Conflux|98|M|{X}{R}{G}|Creature - Hydra|0|0|Apocalypse Hydra enters the battlefield with X +1/+1 counters on it. If X is 5 or more, it enters the battlefield with an additional X +1/+1 counters on it.${1}{R}, Remove a +1/+1 counter from Apocalypse Hydra: Apocalypse Hydra deals 1 damage to target creature or player.|
+Apocalypse Hydra|Conflux|98|M|{X}{R}{G}|Creature - Hydra|0|0|Apocalypse Hydra enters the battlefield with X +1/+1 counters on it. If X is 5 or more, it enters the battlefield with an additional X +1/+1 counters on it.${1}{R}, Remove a +1/+1 counter from Apocalypse Hydra: Apocalypse Hydra deals 1 damage to any target.|
Blood Tyrant|Conflux|99|R|{4}{U}{B}{R}|Creature - Vampire|5|5|Flying, trample$At the beginning of your upkeep, each player loses 1 life. Put a +1/+1 counter on Blood Tyrant for each 1 life lost this way.$Whenever a player loses the game, put five +1/+1 counters on Blood Tyrant.|
Adriana's Valor|Conspiracy: Take the Crown|1|C||Conspiracy|||Hidden agenda (Start the game with conspiracy face down in the command zone and secretly name a card. You may turn this conspiracy face up any time and reveal the chosen name.)$Whenever a creature you control with the chosen name attacks, you may pay {W}. If you do, that creature gains indestructible until end of turn. (Damage and effects that say "destroy" don't destroy it.)|
Assemble the Rank and Vile|Conspiracy: Take the Crown|2|C||Conspiracy|||Hidden agenda (Start the game with this conspiracy face down in the command zone and secretly name a card. You may turn this conspiracy face up any time and reveal the chosen name.)$Creatures you control with the chosen name have "When this creature dies, you may pay {B}. If you do, put a 2/2 black Zombie creature token onto the battlefield tapped."|
@@ -3334,7 +3334,7 @@ Hold the Perimeter|Conspiracy: Take the Crown|6|R||Conspiracy|||(Start the ga
Hymn of the Wilds|Conspiracy: Take the Crown|7|M||Conspiracy|||(Start the game with this conspiracy face up in the command zone.)$The first creature spell you cast each turn costs {1} less to cast.$You can't cast instant or sorcery spells.|
Incendiary Dissent|Conspiracy: Take the Crown|8|C||Conspiracy|||Hidden agenda (Start the game with this conspiracy face up in the command zone and secretly name a card. You may turn this conspiracy face up any time and reveal the chosen name.)$Creatures you control with the chosen name have "{R}: This creature gets +1/+0 until end of turn."|
Natural Unity|Conspiracy: Take the Crown|9|C||Conspiracy|||Hidden agenda (Start the game with this conspiracy face down in the command zone and secretly name a card. You may turn this conspiracy face up any time and reveal the chosen name.)$Creature you control with the chosen name have "At the beginning of combat on your turn, you may pay {G}. If you do, put a +1/+1 counter on this creature."|
-Sovereign's Realm|Conspiracy: Take the Crown|10|M||Conspiracy|||(Start the game with this conspiracy face up in the command zone.)$Your deck can't have basic land cards and your starting hand size is five.$Exile a card from you hand: This turn, you may play basic land cards from outside the game.$Basic lands you control have "{T}: Add one mana of any color to your mana pool."|
+Sovereign's Realm|Conspiracy: Take the Crown|10|M||Conspiracy|||(Start the game with this conspiracy face up in the command zone.)$Your deck can't have basic land cards and your starting hand size is five.$Exile a card from you hand: This turn, you may play basic land cards from outside the game.$Basic lands you control have "{T}: Add one mana of any color."|
Summoner's Bond|Conspiracy: Take the Crown|11|U||Conspiracy|||Double agenda (Start the game with this conspiracy face down in the command zone and secretly name two different cards. You may turn this conspiracy face up any time and reveal the chosen names.)$Whenever you cast a creature spell with one of the chosen names, you may search your library for a creature card with the other chosen name, reveal it, put it into your hand, then shuffle your library.|
Weight Advantage|Conspiracy: Take the Crown|12|R||Conspiracy|||(Start the game with this conspiracy face up in the command zone.)$Each creature you control assigns combat damage equal to its toughness rather than its power.|
Ballot Broker|Conspiracy: Take the Crown|13|C|{2}{W}|Creature - Human Advisor|2|3|While voting, you may vote an additional time. (The votes can be for different choices or for the same choice.)|
@@ -3393,8 +3393,8 @@ Fang of the Pack|Conspiracy: Take the Crown|65|U|{5}{G}|Creature - Wolf|5|3|Mele
Leovold's Operative|Conspiracy: Take the Crown|66|C|{2}{G}|Creature - Elf Rogue|3|2|Draft Leovold's Operative face up.$As you draft a card, you may draft an additional card from that booster pack. If you do, turn Leovold's Operative face down, then pass the next booster pack without drafting a card from it. (You may look at that booster pack.)|
Menagerie Liberator|Conspiracy: Take the Crown|67|C|{3}{G}|Creature - Human Warrior|3|2|Trample$Melee (Whenever this creature attacks, it gets +1/+1 until end of turn for each opponent you attacked with a creature this combat.)$|
Orchard Elemental|Conspiracy: Take the Crown|68|C|{5}{G}|Creature - Elemental|2|2|Council's dilemma &mdash When Orchard Elemental enters the battlefield, starting with you, each player votes for sprout or harvest. Put two +1/+1 counters on Orchard Elemental for each sprout vote. You gain 3 life for each harvest vote.|
-Regal Behemoth|Conspiracy: Take the Crown|69|R|{4}{G}{G}|Creature - Lizard|5|5|Trample$When Regal Behemoth enters the battlefield, you become the monarch.$Whenever you tap a land for mana while you're the monarch, add one mana of any color to your mana pool (in addition to the mana the land produces).|
-Selvala, Heart of the Wilds|Conspiracy: Take the Crown|70|M|{1}{G}{G}|Legendary Creature - Elf Scout|2|3|Whenever another creature enters the battlefield, its controller may draw a card if its power is greater than each other creature's power.${G}, {T}: Add X mana in any combination of colors to your mana pool, where X is the greatest power among creatures you control.|
+Regal Behemoth|Conspiracy: Take the Crown|69|R|{4}{G}{G}|Creature - Lizard|5|5|Trample$When Regal Behemoth enters the battlefield, you become the monarch.$Whenever you tap a land for mana while you're the monarch, add one mana of any color (in addition to the mana the land produces).|
+Selvala, Heart of the Wilds|Conspiracy: Take the Crown|70|M|{1}{G}{G}|Legendary Creature - Elf Scout|2|3|Whenever another creature enters the battlefield, its controller may draw a card if its power is greater than each other creature's power.${G}, {T}: Add X mana in any combination of colors, where X is the greatest power among creatures you control.|
Selvala's Stampede|Conspiracy: Take the Crown|71|R|{4}{G}{G}|Sorcery|||Council's dilemma &mdash Starting with you, each player votes for wild or free. Reveal cards from the top of your library until you reveal a creature card for each wild vote. Put those creature cards onto the battlefield, then shuffle the rest into your library. You may permanent card from your hand onto the battlefield for each free vote.|
Splitting Slime|Conspiracy: Take the Crown|72|R|{3}{G}{G}|Creature - Ooze|3|3|{4}{G}{G}: Monstrosity 3. (If this creature isn't monstrous, put three +1/+1 counters on it and it becomes monstrous.)$When Splitting Slime becomes monstrous, put a token onto the battlefield that's a copy of Splitting Slime. (The token has no counters and isn't monstrous.)|
Adriana, Captain of the Guard|Conspiracy: Take the Crown|73|R|{3}{R}{W}|Legendary Creature - Human Knight|4|4|Melee (Whenever this creature attacks, it gets +1/+1 until end of turn for each opponent you attacked with a creature this combat.)$Other creatures you control have melee. (If a creature has multiple instances of melee, each trigger separately.)|
@@ -3500,7 +3500,7 @@ Trumpet Blast|Conspiracy: Take the Crown|172|C|{2}{R}|Instant|||Attacking creatu
Twin Bolt|Conspiracy: Take the Crown|173|C|{1}{R}|Instant|||Twin Bolt deals 2 damage divided as you choose among one or two target creatures and/or players.|
Beast Within|Conspiracy: Take the Crown|174|U|{2}{G}|Instant|||Destroy target permanent. Its controller puts a 3/3 green Beast creature token onto the battlefield.|
Berserk|Conspiracy: Take the Crown|175|M|{G}|Instant|||Cast Berserk only before the combat damage step.$Target creature gains trample and gets +X/+0 until end of turn, where is its power. At the beginning of the next end step, destroy that creature if it attacked this turn.|
-Birds of Paradise|Conspiracy: Take the Crown|176|R|{G}|Creature - Bird|0|1|Flying${T}: Add one mana of any color to your mana pool.|
+Birds of Paradise|Conspiracy: Take the Crown|176|R|{G}|Creature - Bird|0|1|Flying${T}: Add one mana of any color.|
Brushstrider|Conspiracy: Take the Crown|177|U|{1}{G}|Creature - Beast|3|1|Vigilance|
Burgeoning|Conspiracy: Take the Crown|178|R|{G}|Enchantment|||Whenever an opponent plays a land, you may put a land card from your hand onto the battlefield.|
Copperhorn Scout|Conspiracy: Take the Crown|179|C|{G}|Creature - Elf Scout|1|1|Whenever Coppenhorn Scout attacks, untap each other creature you control.|
@@ -3537,15 +3537,15 @@ Hedron Matrix|Conspiracy: Take the Crown|209|R|{4}|Artifact - Equipment|||Equipp
Hexplate Golem|Conspiracy: Take the Crown|210|C|{7}|Artifact Creature - Golem|5|7||
Horn of Greed|Conspiracy: Take the Crown|211|R|{3}|Artifact|||Whenever a player plays a land, that player draws a card.|
Kitesail|Conspiracy: Take the Crown|212|C|{2}|Artifact - Equipment|||Equipped creature gets +1/+0 and has flying.$Equip {2}|
-Opaline Unicorn|Conspiracy: Take the Crown|213|C|{3}|Artifact Creature - Unicorn|1|2|{T}: Add one mana of any color to your mana pool.|
+Opaline Unicorn|Conspiracy: Take the Crown|213|C|{3}|Artifact Creature - Unicorn|1|2|{T}: Add one mana of any color.|
Platinum Angel|Conspiracy: Take the Crown|214|M|{7}|Artifact Creature - Angel|4|4|Flying$You can't lose the game and your opponents can't win the game.|
Psychosis Crawler|Conspiracy: Take the Crown|215|R|{5}|Artifact Creature - Horror|0|0|Psychosis Crawler's power and toughness are each equal to the number of cards in your hand.$Whenever you draw a card, each opponent loses 1 life.|
Runed Servitor|Conspiracy: Take the Crown|216|U|{2}|Artifact Creature - Construct|2|2|When Runed Servitor dies, each player draws a card.|
Dread Statuary|Conspiracy: Take the Crown|217|U||Land|||{T}: Add {C}.${4}: Dread Statuary becomes a 4/2 Golem artifact creature until end of turn. It's still a land.|
Evolving Wilds|Conspiracy: Take the Crown|218|C||Land|||{T}, Sacrifice Evolving Wilds: Search your library for a basic land card and put it onto the battlefield tapped. Then shuffle your library.|
-Exotic Orchard|Conspiracy: Take the Crown|219|R||Land|||{T}: Add to your mana pool one mana of any color that a land an opponent control could produce.|
+Exotic Orchard|Conspiracy: Take the Crown|219|R||Land|||{T}: Add one mana of any color that a land an opponent control could produce.|
Rogue's Passage|Conspiracy: Take the Crown|220|U||Land|||{T}: Add {C}.${4}, {T}: Target creature can't be blocked this turn.|
-Shimmering Grotto|Conspiracy: Take the Crown|221|C||Land|||{T} Add {C}.${1}, {T}: Add one mana of any color to your mana pool.|
+Shimmering Grotto|Conspiracy: Take the Crown|221|C||Land|||{T} Add {C}.${1}, {T}: Add one mana of any color.|
Archangel's Light|Dark Ascension|1|M|{7}{W}|Sorcery|||You gain 2 life for each card in your graveyard, then shuffle your graveyard into your library.|
Hollowhenge Spirit|Dark Ascension|10|U|{3}{W}|Creature - Spirit|2|2|Flash (You may cast this spell any time you could cast an instant.)$Flying$When Hollowhenge Spirit enters the battlefield, remove target attacking or blocking creature from combat.|
Nearheath Stalker|Dark Ascension|100|C|{4}{R}|Creature - Vampire Rogue|4|1|Undying (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.)|
@@ -3601,7 +3601,7 @@ Ravager of the Fells|Dark Ascension|140b|M||Creature - Werewolf|4|4|Trample$When
Immerwolf|Dark Ascension|141|U|{1}{R}{G}|Creature - Wolf|2|2|Intimidate (This creature can't be blocked except by artifact creatures and/or creatures that share a color with it.)$Each other creature you control that's a Wolf or a Werewolf gets +1/+1.$Non-Human Werewolves you control can't transform.|
Sorin, Lord of Innistrad|Dark Ascension|142|M|{2}{W}{B}|Legendary Planeswalker - Sorin|||+1: Put a 1/1 black Vampire creature token with lifelink onto the battlefield.$-2: You get an emblem with "Creatures you control get +1/+0."$-6: Destroy up to three target creatures and/or other planeswalkers. Return each card put into a graveyard this way to the battlefield under your control.|
Stromkirk Captain|Dark Ascension|143|U|{1}{B}{R}|Creature - Vampire Soldier|2|2|First strike$Other Vampire creatures you control get +1/+1 and have first strike.|
-Altar of the Lost|Dark Ascension|144|U|{3}|Artifact|||Altar of the Lost enters the battlefield tapped.${tap}: Add two mana in any combination of colors to your mana pool. Spend this mana only to cast spells with flashback from a graveyard.|
+Altar of the Lost|Dark Ascension|144|U|{3}|Artifact|||Altar of the Lost enters the battlefield tapped.${tap}: Add two mana in any combination of colors. Spend this mana only to cast spells with flashback from a graveyard.|
Avacyn's Collar|Dark Ascension|145|U|{1}|Artifact - Equipment|||Equipped creature gets +1/+0 and has vigilance.$Whenever equipped creature dies, if it was a Human, put a 1/1 white Spirit creature token with flying onto the battlefield.$Equip {2}|
Chalice of Life|Dark Ascension|146a|U|{3}|Artifact|||{tap}: You gain 1 life. Then if you have at least 10 life more than your starting life total, transform Chalice of Life.|
Chalice of Death|Dark Ascension|146b|U||Artifact|||{tap}: Target player loses 5 life.|
@@ -3614,7 +3614,7 @@ Heavy Mattock|Dark Ascension|150|C|{3}|Artifact - Equipment|||Equipped creature
Helvault|Dark Ascension|151|M|{3}|Legendary Artifact|||{1}, {tap}: Exile target creature you control.${7}, {tap}: Exile target creature you don't control.$When Helvault is put into a graveyard from the battlefield, return all cards exiled with it to the battlefield under their owners' control.|
Jar of Eyeballs|Dark Ascension|152|R|{3}|Artifact|||Whenever a creature you control dies, put two eyeball counters on Jar of Eyeballs.${3}, {tap}, Remove all eyeball counters from Jar of Eyeballs: Look at the top X cards of your library, where X is the number of eyeball counters removed this way. Put one of them into your hand and the rest on the bottom of your library in any order.|
Warden of the Wall|Dark Ascension|153|U|{3}|Artifact|||Warden of the Wall enters the battlefield tapped.${tap}: Add {C}.$As long as it's not your turn, Warden of the Wall is a 2/3 Gargoyle artifact creature with flying.|
-Wolfhunter's Quiver|Dark Ascension|154|U|{1}|Artifact - Equipment|||Equipped creature has "{tap}: This creature deals 1 damage to target creature or player" and "{tap}: This creature deals 3 damage to target Werewolf creature."$Equip {5}|
+Wolfhunter's Quiver|Dark Ascension|154|U|{1}|Artifact - Equipment|||Equipped creature has "{tap}: This creature deals 1 damage to any target" and "{tap}: This creature deals 3 damage to target Werewolf creature."$Equip {5}|
Evolving Wilds|Dark Ascension|155|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.|
Grim Backwoods|Dark Ascension|156|R||Land|||{tap}: Add {C}.${2}{B}{G}, {tap}, Sacrifice a creature: Draw a card.|
Haunted Fengraf|Dark Ascension|157|C||Land|||{tap}: Add {C}.${3}, {tap}, Sacrifice Haunted Fengraf: Return a creature card at random from your graveyard to your hand.|
@@ -3702,10 +3702,10 @@ Burning Oil|Dark Ascension|84|U|{1}{R}|Instant|||Burning Oil deals 3 damage to t
Curse of Bloodletting|Dark Ascension|85|R|{3}{R}{R}|Enchantment - Aura Curse|||Enchant player$If a source would deal damage to enchanted player, it deals double that damage to that player instead.|
Erdwal Ripper|Dark Ascension|86|C|{1}{R}{R}|Creature - Vampire|2|1|Haste$Whenever Erdwal Ripper deals combat damage to a player, put a +1/+1 counter on it.|
Faithless Looting|Dark Ascension|87|C|{R}|Sorcery|||Draw two cards, then discard two cards.$Flashback {2}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
-Fires of Undeath|Dark Ascension|88|C|{2}{R}|Instant|||Fires of Undeath deals 2 damage to target creature or player.$Flashback {5}{B} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
-Flayer of the Hatebound|Dark Ascension|89|R|{5}{R}|Creature - Devil|4|2|Undying (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.)$Whenever Flayer of the Hatebound or another creature enters the battlefield from your graveyard, that creature deals damage equal to its power to target creature or player.|
+Fires of Undeath|Dark Ascension|88|C|{2}{R}|Instant|||Fires of Undeath deals 2 damage to any target.$Flashback {5}{B} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
+Flayer of the Hatebound|Dark Ascension|89|R|{5}{R}|Creature - Devil|4|2|Undying (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.)$Whenever Flayer of the Hatebound or another creature enters the battlefield from your graveyard, that creature deals damage equal to its power to any target.|
Gavony Ironwright|Dark Ascension|9|U|{2}{W}|Creature - Human Soldier|1|4|Fateful hour - As long as you have 5 or less life, other creatures you control get +1/+4.|
-Fling|Dark Ascension|90|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.|
+Fling|Dark Ascension|90|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 any target.|
Forge Devil|Dark Ascension|91|C|{R}|Creature - Devil|1|1|When Forge Devil enters the battlefield, it deals 1 damage to target creature and 1 damage to you.|
Heckling Fiends|Dark Ascension|92|U|{2}{R}|Creature - Devil|2|2|{2}{R}: Target creature attacks this turn if able.|
Hellrider|Dark Ascension|93|R|{2}{R}{R}|Creature - Devil|3|3|Haste$Whenever a creature you control attacks, Hellrider deals 1 damage to defending player.|
@@ -3732,7 +3732,7 @@ Darksteel Colossus|Darksteel|109|R|{11}|Artifact Creature - Golem|11|11|Trample$
Pulse of the Fields|Darksteel|11|R|{1}{W}{W}|Instant|||You gain 4 life. Then if an opponent has more life than you, return Pulse of the Fields to its owner's hand.|
Darksteel Forge|Darksteel|110|R|{9}|Artifact|||Artifacts you control are indestructible. ("Destroy" effects and lethal damage don't destroy them.)|
Darksteel Gargoyle|Darksteel|111|U|{7}|Artifact Creature - Gargoyle|3|3|Flying$Darksteel Gargoyle is indestructible. ("Destroy" effects and lethal damage don't destroy it.)|
-Darksteel Ingot|Darksteel|112|C|{3}|Artifact|||Darksteel Ingot is indestructible. (Effects that say "destroy" don't destroy it.)${tap}: Add one mana of any color to your mana pool.|
+Darksteel Ingot|Darksteel|112|C|{3}|Artifact|||Darksteel Ingot is indestructible. (Effects that say "destroy" don't destroy it.)${tap}: Add one mana of any color.|
Darksteel Pendant|Darksteel|113|C|{2}|Artifact|||Darksteel Pendant is indestructible. ("Destroy" effects and lethal damage don't destroy it.)${1}, {tap}: Look at the top card of your library. You may put that card on the bottom of your library.|
Darksteel Reactor|Darksteel|114|R|{4}|Artifact|||Darksteel Reactor is indestructible. ("Destroy" effects and lethal damage don't destroy it.)$At the beginning of your upkeep, you may put a charge counter on Darksteel Reactor.$When Darksteel Reactor has twenty or more charge counters on it, you win the game.|
Death-Mask Duplicant|Darksteel|115|U|{7}|Artifact Creature - Shapeshifter|5|5|Imprint - {1}: Exile target creature card from your graveyard.$As long as a card exiled with Death-Mask Duplicant has flying, Death-Mask Duplicant has flying. The same is true for fear, first strike, double strike, haste, landwalk, protection, and trample.|
@@ -3771,10 +3771,10 @@ Spincrusher|Darksteel|144|U|{2}|Artifact Creature - Construct|0|2|Whenever Spinc
Spire Golem|Darksteel|145|C|{6}|Artifact Creature - Golem|2|4|Affinity for Islands (This spell costs {1} less to cast for each Island you control.)$Flying|
Sundering Titan|Darksteel|146|R|{8}|Artifact Creature - Golem|7|10|When Sundering Titan enters the battlefield or leaves the battlefield, choose a land of each basic land type, then destroy those lands.|
Surestrike Trident|Darksteel|147|U|{2}|Artifact - Equipment|||Equipped creature has first strike and "{tap}, Unattach Surestrike Trident: This creature deals damage equal to its power to target player."$Equip {4} ({4}: Attach to target creature you control. Equip only as a sorcery. This card enters the battlefield unattached and stays on the battlefield if the creature leaves.)|
-Sword of Fire and Ice|Darksteel|148|R|{3}|Artifact - Equipment|||Equipped creature gets +2/+2 and has protection from red and from blue.$Whenever equipped creature deals combat damage to a player, Sword of Fire and Ice deals 2 damage to target creature or player and you draw a card.$Equip {2}|
+Sword of Fire and Ice|Darksteel|148|R|{3}|Artifact - Equipment|||Equipped creature gets +2/+2 and has protection from red and from blue.$Whenever equipped creature deals combat damage to a player, Sword of Fire and Ice deals 2 damage to any target and you draw a card.$Equip {2}|
Sword of Light and Shadow|Darksteel|149|R|{3}|Artifact - Equipment|||Equipped creature gets +2/+2 and has protection from white and from black.$Whenever equipped creature deals combat damage to a player, you gain 3 life and you may return up to one target creature card from your graveyard to your hand.$Equip {2}|
Steelshaper Apprentice|Darksteel|15|R|{2}{W}{W}|Creature - Human Soldier|1|3|{W}, {tap}, Return Steelshaper Apprentice to its owner's hand: Search your library for an Equipment card, reveal that card, and put it into your hand. Then shuffle your library.|
-Talon of Pain|Darksteel|150|U|{4}|Artifact|||Whenever a source you control other than Talon of Pain deals damage to an opponent, put a charge counter on Talon of Pain.${X}, {tap}, Remove X charge counters from Talon of Pain: Talon of Pain deals X damage to target creature or player.|
+Talon of Pain|Darksteel|150|U|{4}|Artifact|||Whenever a source you control other than Talon of Pain deals damage to an opponent, put a charge counter on Talon of Pain.${X}, {tap}, Remove X charge counters from Talon of Pain: Talon of Pain deals X damage to any target.|
Tangle Golem|Darksteel|151|C|{7}|Artifact Creature - Golem|5|4|Affinity for Forests (This spell costs {1} less to cast for each Forest you control.)|
Thought Dissector|Darksteel|152|R|{4}|Artifact|||{X}, {tap}: Target opponent reveals cards from the top of his or her library until an artifact card or X cards are revealed, whichever comes first. If an artifact card is revealed this way, put it onto the battlefield under your control and sacrifice Thought Dissector. Put the rest of the revealed cards into that player's graveyard.|
Thunderstaff|Darksteel|153|U|{3}|Artifact|||As long as Thunderstaff is untapped, if a creature would deal combat damage to you, prevent 1 of that damage.${2}, {tap}: Attacking creatures get +1/+0 until end of turn.|
@@ -3790,7 +3790,7 @@ Wirefly Hive|Darksteel|161|U|{3}|Artifact|||{3}, {tap}: Flip a coin. If you win
Wurm's Tooth|Darksteel|162|U|{2}|Artifact|||Whenever a player casts a green spell, you may gain 1 life.|
Blinkmoth Nexus|Darksteel|163|R||Land|||{tap}: Add {C}.${1}: Blinkmoth Nexus becomes a 1/1 Blinkmoth artifact creature with flying until end of turn. It's still a land.${1}, {tap}: Target Blinkmoth creature gets +1/+1 until end of turn.|
Darksteel Citadel|Darksteel|164|C||Artifact Land|||Darksteel Citadel is indestructible. ("Destroy" effects and lethal damage don't destroy it.)${tap}: Add {C}.|
-Mirrodin's Core|Darksteel|165|U||Land|||{tap}: Add {C}.${tap}: Put a charge counter on Mirrodin's Core.${tap}, Remove a charge counter from Mirrodin's Core: Add one mana of any color to your mana pool.|
+Mirrodin's Core|Darksteel|165|U||Land|||{tap}: Add {C}.${tap}: Put a charge counter on Mirrodin's Core.${tap}, Remove a charge counter from Mirrodin's Core: Add one mana of any color.|
Test of Faith|Darksteel|17|U|{1}{W}|Instant|||Prevent the next 3 damage that would be dealt to target creature this turn, and put a +1/+1 counter on that creature for each 1 damage prevented this way.|
Turn the Tables|Darksteel|18|R|{3}{W}{W}|Instant|||All combat damage that would be dealt to you this turn is dealt to target attacking creature instead.|
Carry Away|Darksteel|19|U|{U}{U}|Enchantment - Aura|||Enchant Equipment$When Carry Away enters the battlefield, unattach enchanted Equipment.$You control enchanted Equipment.|
@@ -3811,7 +3811,7 @@ Reshape|Darksteel|31|R|{X}{U}{U}|Sorcery|||As an additional cost to cast Reshape
Retract|Darksteel|32|R|{U}|Instant|||Return all artifacts you control to their owner's hand.|
Second Sight|Darksteel|33|U|{2}{U}|Instant|||Choose one - Look at the top five cards of target opponent's library, then put them back in any order; or look at the top five cards of your library, then put them back in any order.$Entwine {U} (Choose both if you pay the entwine cost.)|
Synod Artificer|Darksteel|34|R|{2}{U}|Creature - Vedalken Artificer|1|2|{X}, {tap}: Tap X target noncreature artifacts.${X}, {tap}: Untap X target noncreature artifacts.|
-Vedalken Engineer|Darksteel|35|C|{1}{U}|Creature - Vedalken Artificer|1|1|{tap}: Add two mana of any one color to your mana pool. Spend this mana only to cast artifact spells or activate abilities of artifacts.|
+Vedalken Engineer|Darksteel|35|C|{1}{U}|Creature - Vedalken Artificer|1|1|{tap}: Add two mana of any one color. Spend this mana only to cast artifact spells or activate abilities of artifacts.|
Vex|Darksteel|36|C|{2}{U}|Instant|||Counter target spell. That spell's controller may draw a card.|
AEther Snap|Darksteel|37|R|{3}{B}{B}|Sorcery|||Remove all counters from all permanents and exile all tokens.|
Burden of Greed|Darksteel|38|C|{3}{B}|Instant|||Target player loses 1 life for each tapped artifact he or she controls.|
@@ -3820,7 +3820,7 @@ Hallow|Darksteel|4|C|{W}|Instant|||Prevent all damage target spell would deal th
Death Cloud|Darksteel|40|R|{X}{B}{B}{B}|Sorcery|||Each player loses X life, discards X cards, sacrifices X creatures, then sacrifices X lands.|
Echoing Decay|Darksteel|41|C|{1}{B}|Instant|||Target creature and all other creatures with the same name as that creature get -2/-2 until end of turn.|
Emissary of Despair|Darksteel|42|U|{1}{B}{B}|Creature - Spirit|2|1|Flying$Whenever Emissary of Despair deals combat damage to a player, that player loses 1 life for each artifact he or she controls.|
-Essence Drain|Darksteel|43|C|{4}{B}|Sorcery|||Essence Drain deals 3 damage to target creature or player and you gain 3 life.|
+Essence Drain|Darksteel|43|C|{4}{B}|Sorcery|||Essence Drain deals 3 damage to any target and you gain 3 life.|
Greater Harvester|Darksteel|44|R|{2}{B}{B}{B}|Creature - Horror|5|6|At the beginning of your upkeep, sacrifice a permanent.$Whenever Greater Harvester deals combat damage to a player, that player sacrifices two permanents.|
Grimclaw Bats|Darksteel|45|C|{1}{B}|Creature - Bat|1|1|Flying${B}, Pay 1 life: Grimclaw Bats gets +1/+1 until end of turn.|
Hunger of the Nim|Darksteel|46|C|{1}{B}|Sorcery|||Target creature gets +1/+0 until end of turn for each artifact you control.|
@@ -3870,7 +3870,7 @@ Tangle Spider|Darksteel|85|C|{4}{G}{G}|Creature - Spider|3|4|Flash (You may c
Tanglewalker|Darksteel|86|U|{2}{G}|Creature - Dryad|2|2|Each creature you control is unblockable as long as defending player controls an artifact land.|
Tel-Jilad Outrider|Darksteel|87|C|{3}{G}|Creature - Elf Warrior|3|1|Protection from artifacts|
Tel-Jilad Wolf|Darksteel|88|C|{2}{G}|Creature - Wolf|2|2|Whenever Tel-Jilad Wolf becomes blocked by an artifact creature, Tel-Jilad Wolf gets +3/+3 until end of turn.|
-Viridian Acolyte|Darksteel|89|C|{G}|Creature - Elf Shaman|1|1|{1}, {tap}: Add one mana of any color to your mana pool.|
+Viridian Acolyte|Darksteel|89|C|{G}|Creature - Elf Shaman|1|1|{1}, {tap}: Add one mana of any color.|
Pristine Angel|Darksteel|9|R|{4}{W}{W}|Creature - Angel|4|4|Flying$As long as Pristine Angel is untapped, it has protection from artifacts and from all colors.$Whenever you cast a spell, you may untap Pristine Angel.|
Viridian Zealot|Darksteel|90|R|{G}{G}|Creature - Elf Warrior|2|1|{1}{G}, Sacrifice Viridian Zealot: Destroy target artifact or enchantment.|
AEther Vial|Darksteel|91|U|{1}|Artifact|||At the beginning of your upkeep, you may put a charge counter on Æther Vial.${tap}: You may put a creature card with converted mana cost equal to the number of charge counters on Æther Vial from your hand onto the battlefield.|
@@ -3882,9 +3882,9 @@ Arcbound Fiend|Darksteel|96|U|{6}|Artifact Creature - Horror|0|0|Fear (This c
Arcbound Hybrid|Darksteel|97|C|{4}|Artifact Creature - Beast|0|0|Haste$Modular 2 (This enters the battlefield with two +1/+1 counters on it. When it dies, you may put its +1/+1 counters on target artifact creature.)|
Arcbound Lancer|Darksteel|98|U|{7}|Artifact Creature - Beast|0|0|First strike$Modular 4 (This enters the battlefield with four +1/+1 counters on it. When it dies, you may put its +1/+1 counters on target artifact creature.)|
Arcbound Overseer|Darksteel|99|R|{8}|Artifact Creature - Golem|0|0|At the beginning of your upkeep, put a +1/+1 counter on each creature with modular you control.$Modular 6 (This enters the battlefield with six +1/+1 counters on it. When it dies, you may put its +1/+1 counters on target artifact creature.)|
-Aurora Eidolon|Dissension|1|C|{3}{W}|Creature - Spirit|2|2|{W}, Sacrifice Aurora Eidolon: Prevent the next 3 damage that would be dealt to target creature or player this turn.$Whenever you cast a multicolored spell, you may return Aurora Eidolon from your graveyard to your hand.|
+Aurora Eidolon|Dissension|1|C|{3}{W}|Creature - Spirit|2|2|{W}, Sacrifice Aurora Eidolon: Prevent the next 3 damage that would be dealt to any target this turn.$Whenever you cast a multicolored spell, you may return Aurora Eidolon from your graveyard to your hand.|
Guardian of the Guildpact|Dissension|10|C|{3}{W}|Creature - Spirit|2|3|Protection from monocolored|
-Verdant Eidolon|Dissension|100|C|{3}{G}|Creature - Spirit|2|2|{G}, Sacrifice Verdant Eidolon: Add three mana of any one color to your mana pool.$Whenever you cast a multicolored spell, you may return Verdant Eidolon from your graveyard to your hand.|
+Verdant Eidolon|Dissension|100|C|{3}{G}|Creature - Spirit|2|2|{G}, Sacrifice Verdant Eidolon: Add three mana of any one color.$Whenever you cast a multicolored spell, you may return Verdant Eidolon from your graveyard to your hand.|
AEthermage's Touch|Dissension|101|R|{2}{W}{U}|Instant|||Reveal the top four cards of your library. You may put a creature card from among them onto the battlefield. It has "At the beginning of your end step, return this creature to its owner's hand." Then put the rest of the cards revealed this way on the bottom of your library in any order.|
Anthem of Rakdos|Dissension|102|R|{2}{B}{R}{R}|Enchantment|||Whenever a creature you control attacks, it gets +2/+0 until end of turn and Anthem of Rakdos deals 1 damage to you.$Hellbent - As long as you have no cards in hand, if a source you control would deal damage to a creature or player, it deals double that damage to that creature or player instead.|
Assault Zeppelid|Dissension|103|C|{2}{G}{U}|Creature - Beast|3|3|Flying, trample|
@@ -3902,7 +3902,7 @@ Hellhole Rats|Dissension|113|U|{2}{B}{R}|Creature - Rat|2|2|Haste$When Hellhole
Isperia the Inscrutable|Dissension|114|R|{1}{W}{W}{U}{U}|Legendary Creature - Sphinx|3|6|Flying$Whenever Isperia the Inscrutable deals combat damage to a player, name a card. That player reveals his or her hand. If he or she reveals the named card, search your library for a creature card with flying, reveal it, put it into your hand, then shuffle your library.|
Jagged Poppet|Dissension|115|U|{1}{B}{R}|Creature - Ogre Warrior|3|4|Whenever Jagged Poppet is dealt damage, discard that many cards.$Hellbent - Whenever Jagged Poppet deals combat damage to a player, if you have no cards in hand, that player discards cards equal to the damage.|
Leafdrake Roost|Dissension|116|U|{3}{G}{U}|Enchantment - Aura|||Enchant land$Enchanted land has "{G}{U}, {tap}: Put a 2/2 green and blue Drake creature token with flying onto the battlefield."|
-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.|
+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 any target if the sacrificed creature was red. Draw a card if the sacrificed creature was black.|
Momir Vig, Simic Visionary|Dissension|118|R|{3}{G}{U}|Legendary Creature - Elf Wizard|2|2|Whenever you cast a green creature spell, you may search your library for a creature card and reveal it. If you do, shuffle your library and put that card on top of it.$Whenever you cast a blue creature spell, reveal the top card of your library. If it's a creature card, put that card into your hand.|
Omnibian|Dissension|119|R|{1}{G}{G}{U}|Creature - Frog|3|3|{tap}: Target creature becomes a 3/3 Frog until end of turn.|
Haazda Shield Mate|Dissension|12|R|{2}{W}|Creature - Human Soldier|1|1|At the beginning of your upkeep, sacrifice Haazda Shield Mate unless you pay {W}{W}.${W}: The next time a source of your choice would deal damage to you this turn, prevent that damage.|
@@ -3977,7 +3977,7 @@ Breeding Pool|Dissension|172|R||Land - Forest Island|||({tap}: Add {G} or {U}
Ghost Quarter|Dissension|173|U||Land|||{tap}: Add {C}.${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.|
Hallowed Fountain|Dissension|174|R||Land - Plains Island|||({tap}: Add {W} or {U}.)$As Hallowed Fountain enters the battlefield, you may pay 2 life. If you don't, Hallowed Fountain enters the battlefield tapped.|
Novijen, Heart of Progress|Dissension|175|U||Land|||{tap}: Add {C}.${G}{U}, {tap}: Put a +1/+1 counter on each creature that entered the battlefield this turn.|
-Pillar of the Paruns|Dissension|176|R||Land|||{tap}: Add one mana of any color to your mana pool. Spend this mana only to cast a multicolored spell.|
+Pillar of the Paruns|Dissension|176|R||Land|||{tap}: Add one mana of any color. Spend this mana only to cast a multicolored spell.|
Prahv, Spires of Order|Dissension|177|U||Land|||{tap}: Add {C}.${4}{W}{U}, {tap}: Prevent all damage a source of your choice would deal this turn.|
Rakdos Carnarium|Dissension|178|C||Land|||Rakdos Carnarium enters the battlefield tapped.$When Rakdos Carnarium enters the battlefield, return a land you control to its owner's hand.${tap}: Add {B}{R}.|
Rix Maadi, Dungeon Palace|Dissension|179|U||Land|||{tap}: Add {C}.${1}{B}{R}, {tap}: Each player discards a card. Activate this ability only any time you could cast a sorcery.|
@@ -4025,11 +4025,11 @@ Seal of Doom|Dissension|53|C|{2}{B}|Enchantment|||Sacrifice Seal of Doom: Destro
Slaughterhouse Bouncer|Dissension|54|C|{4}{B}|Creature - Ogre Warrior|3|3|Hellbent - When Slaughterhouse Bouncer dies, if you have no cards in hand, target creature gets -3/-3 until end of turn.|
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.|
Unliving Psychopath|Dissension|56|R|{2}{B}{B}|Creature - Zombie Assassin|0|4|{B}: Unliving Psychopath gets +1/-1 until end of turn.${B}, {tap}: Destroy target creature with power less than Unliving Psychopath's power.|
-Vesper Ghoul|Dissension|57|C|{2}{B}|Creature - Zombie Druid|1|1|{tap}, Pay 1 life: Add one mana of any color to your mana pool.|
+Vesper Ghoul|Dissension|57|C|{2}{B}|Creature - Zombie Druid|1|1|{tap}, Pay 1 life: Add one mana of any color.|
Wit's End|Dissension|58|R|{5}{B}{B}|Sorcery|||Target player discards his or her hand.|
-Cackling Flames|Dissension|59|C|{3}{R}|Instant|||Cackling Flames deals 3 damage to target creature or player.$Hellbent - Cackling Flames deals 5 damage to that creature or player instead if you have no cards in hand.|
+Cackling Flames|Dissension|59|C|{3}{R}|Instant|||Cackling Flames deals 3 damage to any target.$Hellbent - Cackling Flames deals 5 damage to that creature or player instead if you have no cards in hand.|
Carom|Dissension|6|C|{1}{W}|Instant|||The next 1 damage that would be dealt to target creature this turn is dealt to another target creature instead.$Draw a card.|
-Demonfire|Dissension|60|R|{X}{R}|Sorcery|||Demonfire deals X damage to target creature or player. If a creature dealt damage this way would die this turn, exile it instead.$Hellbent - If you have no cards in hand, Demonfire can't be countered by spells or abilities and the damage can't be prevented.|
+Demonfire|Dissension|60|R|{X}{R}|Sorcery|||Demonfire deals X damage to any target. If a creature dealt damage this way would die this turn, exile it instead.$Hellbent - If you have no cards in hand, Demonfire can't be countered by spells or abilities and the damage can't be prevented.|
Flame-Kin War Scout|Dissension|61|U|{3}{R}|Creature - Elemental Scout|2|4|When another creature enters the battlefield, sacrifice Flame-Kin War Scout. If you do, Flame-Kin War Scout deals 4 damage to that creature.|
Flaring Flame-Kin|Dissension|62|U|{2}{R}|Creature - Elemental Warrior|2|2|As long as Flaring Flame-Kin is enchanted, it gets +2/+2, has trample, and has "{R}: Flaring Flame-Kin gets +1/+0 until end of turn."|
Gnat Alley Creeper|Dissension|63|U|{2}{R}|Creature - Human Rogue|3|1|Gnat Alley Creeper can't be blocked by creatures with flying.|
@@ -4041,10 +4041,10 @@ Psychotic Fury|Dissension|68|C|{1}{R}|Instant|||Target multicolored creature gai
Rakdos Pit Dragon|Dissension|69|R|{2}{R}{R}|Creature - Dragon|3|3|{R}{R}: Rakdos Pit Dragon gains flying until end of turn.${R}: Rakdos Pit Dragon gets +1/+0 until end of turn.$Hellbent - Rakdos Pit Dragon has double strike as long as you have no cards in hand.|
Celestial Ancient|Dissension|7|R|{3}{W}{W}|Creature - Elemental|3|3|Flying$Whenever you cast an enchantment spell, put a +1/+1 counter on each creature you control.|
Sandstorm Eidolon|Dissension|70|C|{3}{R}|Creature - Spirit|2|2|{R}, Sacrifice Sandstorm Eidolon: Target creature can't block this turn.$Whenever you cast a multicolored spell, you may return Sandstorm Eidolon from your graveyard to your hand.|
-Seal of Fire|Dissension|71|C|{R}|Enchantment|||Sacrifice Seal of Fire: Seal of Fire deals 2 damage to target creature or player.|
+Seal of Fire|Dissension|71|C|{R}|Enchantment|||Sacrifice Seal of Fire: Seal of Fire deals 2 damage to any target.|
Squealing Devil|Dissension|72|U|{1}{R}|Creature - Devil|2|1|Fear (This creature can't be blocked except by artifact creatures and/or black creatures.)$When Squealing Devil enters the battlefield, you may pay {X}. If you do, target creature gets +X/+0 until end of turn.$When Squealing Devil enters the battlefield, sacrifice it unless {B} was spent to cast it.|
Stalking Vengeance|Dissension|73|R|{5}{R}{R}|Creature - Avatar|5|5|Haste$Whenever another creature you control dies, it deals damage equal to its power to target player.|
-Stormscale Anarch|Dissension|74|R|{2}{R}{R}|Creature - Viashino Shaman|2|2|{2}{R}, Discard a card at random: Stormscale Anarch deals 2 damage to target creature or player. If the discarded card was multicolored, Stormscale Anarch deals 4 damage to that creature or player instead.|
+Stormscale Anarch|Dissension|74|R|{2}{R}{R}|Creature - Viashino Shaman|2|2|{2}{R}, Discard a card at random: Stormscale Anarch deals 2 damage to any target. If the discarded card was multicolored, Stormscale Anarch deals 4 damage to that creature or player instead.|
Taste for Mayhem|Dissension|75|C|{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+0.$Hellbent - Enchanted creature gets an additional +2/+0 as long as you have no cards in hand.|
Utvara Scalper|Dissension|76|C|{1}{R}|Creature - Goblin Scout|1|2|Flying$Utvara Scalper attacks each turn if able.|
War's Toll|Dissension|77|R|{3}{R}|Enchantment|||Whenever an opponent taps a land for mana, tap all lands that player controls.$If a creature an opponent controls attacks, all creatures that opponent controls attack if able.|
@@ -4054,7 +4054,7 @@ Condemn|Dissension|8|U|{W}|Instant|||Put target attacking creature on the bottom
Aquastrand Spider|Dissension|80|C|{1}{G}|Creature - Spider 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.)${G}: Target creature with a +1/+1 counter on it gains reach until end of turn. (It can block creatures with flying.)|
Cytoplast Root-Kin|Dissension|81|R|{2}{G}{G}|Creature - Elemental Mutant|0|0|Graft 4 (This creature enters the battlefield with four +1/+1 counters on it. Whenever another creature enters the battlefield, you may move a +1/+1 counter from this creature onto it.)$When Cytoplast Root-Kin enters the battlefield, put a +1/+1 counter on each other creature you control that has a +1/+1 counter on it.${2}: Move a +1/+1 counter from target creature you control onto Cytoplast Root-Kin.|
Cytospawn Shambler|Dissension|82|C|{6}{G}|Creature - Elemental Mutant|0|0|Graft 6 (This creature enters the battlefield with six +1/+1 counters on it. Whenever another creature enters the battlefield, you may move a +1/+1 counter from this creature onto it.)${G}: Target creature with a +1/+1 counter on it gains trample until end of turn.|
-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.)|
+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. (Mana cost includes color. If a mana symbol has multiple colors, choose one.)|
Fertile Imagination|Dissension|84|U|{2}{G}{G}|Sorcery|||Choose a card type. Target opponent reveals his or her hand. Put two 1/1 green Saproling creature tokens onto the battlefield for each card of the chosen type revealed this way. (Artifact, creature, enchantment, instant, land, planeswalker, sorcery, and tribal are card types.)|
Flash Foliage|Dissension|85|U|{2}{G}|Instant|||Cast Flash Foliage only during combat after blockers are declared.$Put a 1/1 green Saproling creature token onto the battlefield blocking target creature attacking you.$Draw a card.|
Indrik Stomphowler|Dissension|86|U|{4}{G}|Creature - Beast|4|4|When Indrik Stomphowler enters the battlefield, destroy target artifact or enchantment.|
@@ -4091,7 +4091,7 @@ Varolz, the Scar-Striped|Dragon's Maze|112|R|{1}{B}{G}|Legendary Creature - Trol
Viashino Firstblade|Dragon's Maze|113|C|{1}{R}{W}|Creature - Viashino Soldier|2|2|Haste$When Viashino Firstblade enters the battlefield, it gets +2/+2 until end of turn.|
Voice of Resurgence|Dragon's Maze|114|M|{G}{W}|Creature - Elemental|2|2|Whenever an opponent casts a spell during your turn or when Voice of Resurgence dies, put a green and white Elemental creature token onto the battlefield with "This creature's power and toughness are each equal to the number of creatures you control."|
Vorel of the Hull Clade|Dragon's Maze|115|R|{1}{G}{U}|Legendary Creature - Human Merfolk|1|4|{G}{U}, {tap}: For each counter on target artifact, creature, or land, put another of those counters on that permanent.|
-Warleader's Helix|Dragon's Maze|116|U|{2}{R}{W}|Instant|||Warleader's Helix deals 4 damage to target creature or player and you gain 4 life.|
+Warleader's Helix|Dragon's Maze|116|U|{2}{R}{W}|Instant|||Warleader's Helix deals 4 damage to any target and you gain 4 life.|
Warped Physique|Dragon's Maze|117|U|{U}{B}|Instant|||Target creature gets +X/-X until end of turn, where X is the number of cards in your hand.|
Woodlot Crawler|Dragon's Maze|118|U|{U}{B}|Creature - Insect|2|1|Forestwalk, protection from green|
Zhur-Taa Ancient|Dragon's Maze|119|R|{3}{R}{G}|Creature - Beast|7|5|Whenever a player taps a land for mana, that player adds one mana to his or her mana pool of any type that land produced.|
@@ -4112,7 +4112,7 @@ Down|Dragon's Maze|126b|U|{3}{B}|Sorcery|||Target player discards two cards.$Fus
Far|Dragon's Maze|127a|U|{1}{U}|Instant|||Return target creature to its owner's hand.$Fuse (You may cast one or both halves of this card from your hand.)|
Away|Dragon's Maze|127b|U|{2}{B}|Instant|||Target player sacrifices a creature.$Fuse (You may cast one or both halves of this card from your hand.)|
Flesh|Dragon's Maze|128a|R|{3}{B}{G}|Sorcery|||Exile target creature card from a graveyard. Put X +1/+1 counters on target creature, where X is the power of the card you exiled.$Fuse (You may cast one or both halves of this card from your hand.)|
-Blood|Dragon's Maze|128b|R|{R}{G}|Sorcery|||Target creature you control deals damage equal to its power to target creature or player.$Fuse (You may cast one or both halves of this card from your hand.)|
+Blood|Dragon's Maze|128b|R|{R}{G}|Sorcery|||Target creature you control deals damage equal to its power to any target.$Fuse (You may cast one or both halves of this card from your hand.)|
Give|Dragon's Maze|129a|U|{2}{G}|Sorcery|||Put three +1/+1 counters on target creature.$Fuse (You may cast one or both halves of this card from your hand.)|
Take|Dragon's Maze|129b|U|{2}{U}|Sorcery|||Remove all +1/+1 counters from target creature you control. Draw that many cards.$Fuse (You may cast one or both halves of this card from your hand.)|
Maze Glider|Dragon's Maze|13|C|{5}{U}|Creature - Elemental|3|5|Flying$Multicolored creatures you control have flying.|
@@ -4124,7 +4124,7 @@ Ready|Dragon's Maze|132a|R|{1}{G}{W}|Instant|||Creatures you control are indestr
Willing|Dragon's Maze|132b|R|{1}{W}{B}|Instant|||Creatures you control gain deathtouch and lifelink until end of turn.$Fuse (You may cast one or both halves of this card from your hand.)|
Trouble|Dragon's Maze|133a|U|{2}{R}|Sorcery|||Trouble deals damage to target player equal to the number of cards in that player's hand.$Fuse (You may cast one or both halves of this card from your hand.)|
Toil|Dragon's Maze|133b|U|{2}{B}|Sorcery|||Target player draws two cards and loses 2 life.$Fuse (You may cast one or both halves of this card from your hand.)|
-Burn|Dragon's Maze|134a|U|{1}{R}|Instant|||Burn deals 2 damage to target creature or player.$Fuse (You may cast one or both halves of this card from your hand.)|
+Burn|Dragon's Maze|134a|U|{1}{R}|Instant|||Burn deals 2 damage to any target.$Fuse (You may cast one or both halves of this card from your hand.)|
Turn|Dragon's Maze|134b|U|{2}{U}|Instant|||Target creature loses all abilities and becomes a 0/1 red Weird until end of turn.$Fuse (You may cast one or both halves of this card from your hand.)|
Tear|Dragon's Maze|135a|U|{W}|Instant|||Destroy target enchantment.$Fuse (You may cast one or both halves of this card from your hand.)|
Wear|Dragon's Maze|135b|U|{1}{R}|Instant|||Destroy target artifact.$Fuse (You may cast one or both halves of this card from your hand.)|
@@ -4194,7 +4194,7 @@ Advent of the Wurm|Dragon's Maze|51|R|{1}{G}{G}{W}|Instant|||Put a 5/5 green Wur
Armored Wolf-Rider|Dragon's Maze|52|C|{3}{G}{W}|Creature - Elf Knight|4|6||
Ascended Lawmage|Dragon's Maze|53|U|{2}{W}{U}|Creature - Vedalken Wizard|3|2|Flying, hexproof|
Beetleform Mage|Dragon's Maze|54|C|{1}{G}{U}|Creature - Human Insect Wizard|2|2|{G}{U}: Beetleform Mage gets +2/+2 and gains flying until end of turn. Activate this ability only once each turn.|
-Blast of Genius|Dragon's Maze|55|U|{4}{U}{R}|Sorcery|||Choose target creature or player. Draw three cards, then discard a card. Blast of Genius deals damage equal to the discarded card's converted mana cost to that creature or player.|
+Blast of Genius|Dragon's Maze|55|U|{4}{U}{R}|Sorcery|||Choose any target. Draw three cards, then discard a card. Blast of Genius deals damage equal to the discarded card's converted mana cost to that creature or player.|
Blaze Commando|Dragon's Maze|56|U|{3}{R}{W}|Creature - Minotaur Soldier|5|3|Whenever an instant or sorcery spell you control deals damage, put two 1/1 red and white Soldier creature tokens with haste onto the battlefield.|
Blood Baron of Vizkopa|Dragon's Maze|57|M|{3}{W}{B}|Creature - Vampire|4|4|Lifelink, protection from white and from black$As long as you have 30 or more life and an opponent has 10 or less life, Blood Baron of Vizkopa gets +6/+6 and has flying.|
Boros Battleshaper|Dragon's Maze|58|R|{5}{R}{W}|Creature - Minotaur Soldier|5|5|At the beginning of each combat, up to one target creature attacks or blocks this combat if able and up to one target creature can't attack or block this combat.|
@@ -4215,7 +4215,7 @@ Feral Animist|Dragon's Maze|70|U|{1}{R}{G}|Creature - Goblin Shaman|2|1|{3}: Fer
Fluxcharger|Dragon's Maze|71|U|{2}{U}{R}|Creature - Weird|1|5|Flying$Whenever you cast an instant or sorcery spell, you may switch Fluxcharger's power and toughness until end of turn.|
Gaze of Granite|Dragon's Maze|72|R|{X}{B}{B}{G}|Sorcery|||Destroy each nonland permanent with converted mana cost X or less.|
Gleam of Battle|Dragon's Maze|73|U|{4}{R}{W}|Enchantment|||Whenever a creature you control attacks, put a +1/+1 counter on it.|
-Goblin Test Pilot|Dragon's Maze|74|U|{1}{U}{R}|Creature - Goblin Wizard|0|2|Flying${tap}: Goblin Test Pilot deals 2 damage to target creature or player chosen at random.|
+Goblin Test Pilot|Dragon's Maze|74|U|{1}{U}{R}|Creature - Goblin Wizard|0|2|Flying${tap}: Goblin Test Pilot deals 2 damage to any target chosen at random.|
Gruul War Chant|Dragon's Maze|75|U|{2}{R}{G}|Enchantment|||Each attacking creature you control gets +1/+0 and can't be blocked except by two or more creatures.|
Haunter of Nightveil|Dragon's Maze|76|U|{3}{U}{B}|Creature - Spirit|3|4|Creatures your opponents control get -1/-0.|
Jelenn Sphinx|Dragon's Maze|77|U|{3}{W}{U}|Creature - Sphinx|1|5|Flying, vigilance$Whenever Jelenn Sphinx attacks, other attacking creatures get +1/+1 until end of turn.|
@@ -4228,16 +4228,16 @@ Master of Cruelties|Dragon's Maze|82|M|{3}{B}{R}|Creature - Demon|1|4|First stri
Maw of the Obzedat|Dragon's Maze|83|U|{3}{W}{B}|Creature - Thrull|3|3|Sacrifice a creature: Creatures you control get +1/+1 until end of turn.|
Melek, Izzet Paragon|Dragon's Maze|84|R|{4}{U}{R}|Legendary Creature - Weird Wizard|2|4|Play with the top card of your library revealed.$You may cast the top card of your library if it's an instant or sorcery card.$Whenever you cast an instant or sorcery spell from your library, copy it. You may choose new targets for the copy.|
Mirko Vosk, Mind Drinker|Dragon's Maze|85|R|{3}{U}{B}|Legendary Creature - Vampire|2|4|Flying$Whenever Mirko Vosk, Mind Drinker deals combat damage to a player, that player reveals cards from the top of his or her library until he or she reveals four land cards, then puts those cards into his or her graveyard.|
-Morgue Burst|Dragon's Maze|86|C|{4}{B}{R}|Sorcery|||Return target creature card from your graveyard to your hand. Morgue Burst deals damage to target creature or player equal to the power of the card returned this way.|
+Morgue Burst|Dragon's Maze|86|C|{4}{B}{R}|Sorcery|||Return target creature card from your graveyard to your hand. Morgue Burst deals damage to any target equal to the power of the card returned this way.|
Nivix Cyclops|Dragon's Maze|87|C|{1}{U}{R}|Creature - Cyclops|1|4|Defender$Whenever you cast an instant or sorcery spell, Nivix Cyclops gets +3/+0 until end of turn and can attack this turn as though it didn't have defender.|
Notion Thief|Dragon's Maze|88|R|{2}{U}{B}|Creature - Human Rogue|3|1|Flash$If an opponent would draw a card except the first one he or she draws in each of his or her draw steps, instead that player skips that draw and you draw a card.|
Obzedat's Aid|Dragon's Maze|89|R|{3}{W}{B}|Sorcery|||Return target permanent card from your graveyard to the battlefield.|
Sunspire Gatekeepers|Dragon's Maze|9|C|{3}{W}|Creature - Human Soldier|2|4|When Sunspire Gatekeepers enters the battlefield, if you control two or more Gates, put a 2/2 white Knight creature token with vigilance onto the battlefield.|
Pilfered Plans|Dragon's Maze|90|C|{1}{U}{B}|Sorcery|||Target player puts the top two cards of his or her library into his or her graveyard. Draw two cards.|
-Plasm Capture|Dragon's Maze|91|R|{G}{G}{U}{U}|Instant|||Counter target spell. At the beginning of your next precombat main phase, add X mana in any combination of colors to your mana pool, where X is that spell's converted mana cost.|
+Plasm Capture|Dragon's Maze|91|R|{G}{G}{U}{U}|Instant|||Counter target spell. At the beginning of your next precombat main phase, add X mana in any combination of colors, where X is that spell's converted mana cost.|
Progenitor Mimic|Dragon's Maze|92|M|{4}{G}{U}|Creature - Shapeshifter|0|0|You may have Progenitor Mimic enter the battlefield as a copy of any creature on the battlefield except it gains "At the beginning of your upkeep, if this creature isn't a token, put a token onto the battlefield that's a copy of this creature."|
Putrefy|Dragon's Maze|93|U|{1}{B}{G}|Instant|||Destroy target artifact or creature. It can't be regenerated.|
-Ral Zarek|Dragon's Maze|94|M|{2}{U}{R}|Legendary Planeswalker - Ral|||+1: Tap target permanent, then untap another target permanent.$-2: Ral Zarek deals 3 damage to target creature or player.$-7: Flip five coins. Take an extra turn after this one for each coin that comes up heads.|
+Ral Zarek|Dragon's Maze|94|M|{2}{U}{R}|Legendary Planeswalker - Ral|||+1: Tap target permanent, then untap another target permanent.$-2: Ral Zarek deals 3 damage to any target.$-7: Flip five coins. Take an extra turn after this one for each coin that comes up heads.|
Reap Intellect|Dragon's Maze|95|M|{X}{2}{U}{B}|Sorcery|||Target opponent reveals his or her hand. You choose up to X nonland cards from it and exile them. For each card exiled this way, search that player's graveyard, hand, and library for any number of cards with the same name as that card and exile them. Then that player shuffles his or her library.|
Render Silent|Dragon's Maze|96|R|{W}{U}{U}|Instant|||Counter target spell. Its controller can't cast spells this turn.|
Restore the Peace|Dragon's Maze|97|U|{1}{W}{U}|Instant|||Return each creature that dealt damage this turn to its owner's hand.|
@@ -4370,7 +4370,7 @@ Ultimate Price|Dragons of Tarkir|124|U|{1}{B}|Instant|||Destroy target monocolor
Virulent Plague|Dragons of Tarkir|125|U|{2}{B}|Enchantment|||Creature tokens get -2/-2|
Vulturous Aven|Dragons of Tarkir|126|C|{3}{B}|Creature - Bird Shaman|2|3|Flying$Exploit (When this creature enters the battlefield, you may sacrifice a creature.)$When Vulturous Aven explots a creature, you draw two cards and you lose 2 life.|
Wandering Tombshell|Dragons of Tarkir|127|C|{3}{B}|Creature - Zombie Turtle|1|6||
-Atarka Efreet|Dragons of Tarkir|128|C|{3}{R}|Creature - Efreet Shaman|5|1|Megamorph {2}{R} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)$When Atarka Efreet is turned face up, it deals 1 damage to target creature or player.|
+Atarka Efreet|Dragons of Tarkir|128|C|{3}{R}|Creature - Efreet Shaman|5|1|Megamorph {2}{R} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)$When Atarka Efreet is turned face up, it deals 1 damage to any target.|
Atarka Pummeler|Dragons of Tarkir|129|U|{4}{R}|Creature - Ogre Warrior|4|5|Formidable - {3}{R}{R}: Each creature you control can't be blocked this turn except by two or more creatures. Activate this ability only if creature you control have total power 8 or greater,|
Berserkers' Onslaught|Dragons of Tarkir|130|R|{3}{R}{R}|Enchantment|||Attacking creatures you control have double strike.|
Commune with Lava|Dragons of Tarkir|131|R|{X}{R}{R}|Instant|||Exile the top X cards of your library. Until the end of your next turn, you may play those cards.|
@@ -4378,7 +4378,7 @@ Crater Elemental|Dragons of Tarkir|132|R|{2}{R}|Creature - Elemental|0|6|{R}, {T
Descent of the Dragons|Dragons of Tarkir|133|M|{4}{R}{R}|Sorcery||Destroy any number of target creatures. For each creature destroyed this way, its controller puts a 4/4 red Dragon creature token with flying onto the battlefield.|
Draconic Roar|Dragons of Tarkir|134|U|{1}{R}|Instant|||As an additional cost to cast Draconic Roar, you may reveal a Dragon card from your hand.$Draconic Roar deals 3 damage to target creature. If you revealed a Dragon card or controlled a Dragon as you cast Draconic Roar, Draconic Roar deals 3 damage to that creature's controller.|
Dragon Fodder|Dragons of Tarkir|135|C|{1}{R}|Sorcery|||Put two 1/1 red Goblin creature tokens onto the battlefield.|
-Dragon Tempest|Dragons of Tarkir|136|R|{1}{R}|Enchantment|||Whenever a creature with flying enters the battlefield under your control, it gains haste until the end of turn.$Whenever a Dragon enters the battlefield under your control, it deals X damage to target creature or player, where X is the number of Dragons you control.|
+Dragon Tempest|Dragons of Tarkir|136|R|{1}{R}|Enchantment|||Whenever a creature with flying enters the battlefield under your control, it gains haste until the end of turn.$Whenever a Dragon enters the battlefield under your control, it deals X damage to any target, where X is the number of Dragons you control.|
Dragon Whisperer|Dragons of Tarkir|137|M|{R}{R}|Creature - Human Shaman|2|2|{R}: Dragon Whisperer gains flying until end of turn.${1}{R}: Dragon Whisperer get +1/+0 until end of turn$ - {4}{R}{R}: Put a 4/4 red Dragon creature token with flying onto the battlefield. Activate this ability only if creatures you control have total power 8 or greater.|
Dragonlord's Servant|Dragons of Tarkir|138|U|{1}{R}|Creature - Goblin Shaman|1|3|Dragon spells you cast cost {1} less to cast.|
Hardened Berserker|Dragons of Tarkir|139|C|{2}{R}|Creature - Human Berserker|3|2|Whenever Hardened Berserker attacks the next spell you cast this turn costs {1} less to cast.|
@@ -4395,7 +4395,7 @@ Qal Sisma Behemoth|Dragons of Tarkir|149|U|{2}{R}|Creature - Ogre Warrior|5|5|Qa
Rending Volley|Dragons of Tarkir|150|U|{R}|Instant|||Rending Volley can't be countered by spells or abilities.$Rending Volley deals 4 damage to target white or blue creature.|
Roast|Dragons of Tarkir|151|U|{1}{R}|Sorcery|||Roast deals 5 damage to target creature without flying.|
Sabertooth Outrider|Dragons of Tarkir|152|C|{3}{R}|Creature - Human Warrior|4|2|Trample$Formidable - Whenever Sabertooth Outrider attacks, if creatures you control have total power 8 or greater, Sabertooth Outrider gains first strike until end of turn.|
-Sarkhan's Rage|Dragons of Tarkir|153|C|{4}{R}|Instant|||Sarkhan's Rage deals 5 damage to target creature or player. If you control no Dragons, Sarkhan's Rage deals 2 damage to you.|
+Sarkhan's Rage|Dragons of Tarkir|153|C|{4}{R}|Instant|||Sarkhan's Rage deals 5 damage to any target. If you control no Dragons, Sarkhan's Rage deals 2 damage to you.|
Sarkhan's Triumph|Dragons of Tarkir|154|U|{2}{R}|Instant|||Search your library for a Dragon creature card, reveal it, put it into your hand, then shuffle your library.|
Screamreach Brawler|Dragons of Tarkir|155|C|{2}{R}|Creature - Orc Berserker|2|3|Dash {1}{R} (You may cast this spell for its dash cost. If you do, it gains haste, and it's returned from the battlefield to its owner's hand at the beginning of the next end step.)|
Seismic Rupture|Dragons of Tarkir|156|U|{2}{R}|Sorcery|||Seismic Rupture deals 2 damage to each creature without flying.|
@@ -4446,9 +4446,9 @@ Sandsteppe Scavenger|Dragons of Tarkir|200|C|{4}{G}|Creature - Hound Scount|2|2|
Scaleguard Sentinels|Dragons of Tarkir|201|U|{G}{G}|Creature - Human Soldier|2|3|As an additional cost to cast Scaleguard Sentinels, you may reveal a Dragon card from your hand.$Scaleguard Sentinels enters the battlefield with a +1/+1 counter on it if you revealed a Dragon card or controlled a Dragon as you cast Scaleguard Sentinels.|
Segmented Krotiq|Dragons of Tarkir|202|C|{5}{G}|Creature - Insect|6|5|Megamorph {6}{G} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)|
Servant of the Scale|Dragons of Tarkir|203|C|{G}|Creature - Human Soldier|0|0|Servant of the Scale enters the battlefield with a +1/+1 counter on it.$When Servant of the Scale dies, put X +1/+1 counters on target creature you control, where X is the number of +1/+1 counter on Servant of the Scale.|
-Shaman of Forgotten Ways|Dragons of Tarkir|204|M|{2}G}|Creature - Human Shaman| 2|3|{T}:Add two mana in any combination of colors to your mana pool. Spend this mana only to cast creature spells.$Formidable - {9}{G}{G},{T}:Each player's life total becomes the number of creatures he or she controls. Acitave the ability only if creatures you control have total power 8 or greater.|
+Shaman of Forgotten Ways|Dragons of Tarkir|204|M|{2}G}|Creature - Human Shaman| 2|3|{T}:Add two mana in any combination of colors. Spend this mana only to cast creature spells.$Formidable - {9}{G}{G},{T}:Each player's life total becomes the number of creatures he or she controls. Acitave the ability only if creatures you control have total power 8 or greater.|
Shape the Sands|Dragons of Tarkir|205|C|{G}|Instant|||Target creature gets +0/+5 and gains reach until end of turn. (It can block creatures with flying.)|
-Sheltered Aerie|Dragons of Tarkir|206|C|{2}{G}|Enchantment - Aura|||Enchant land$Enchanted land has "{T}: Add two mana of any one color to your mana pool."|
+Sheltered Aerie|Dragons of Tarkir|206|C|{2}{G}|Enchantment - Aura|||Enchant land$Enchanted land has "{T}: Add two mana of any one color."|
Sight of the Scalelords|Dragons of Tarkir|207|U|{4}{G}|Enchantment|||At the beginning of combat on your turn, creature you control with toughness 4 or greater get +2/+2 and gain vigilance until end of turn.|
Stampeding Elk Herd|Dragons of Tarkir|208|C|{3}{G}{G}|Creature - Elk|5|5|Formidable - Whenever Stampeding Elk Herd attacks, if creatures you control have total power 8 or greater, creatures you control gain trample until end of turn.|
Sunbringer's Touch|Dragons of Tarkir|209|R|{2}{G}{G}|Sorcery|||Bolster X, where X is the number of cards in your hand. Each creature you control with a +1/+1 counter on it gains trample until end of turn. (To bolster X, choose a creature with the least toughness among creature you control and put X +1/+1 counters on it.)|
@@ -4466,13 +4466,13 @@ Dragonlord Silumgar|Dragons of Tarkir|220|M|{4}{U}{B}|Legendary Creature - Elder
Dromoka's Command|Dragons of Tarkir|221|R|{G}{W}|Instant|||Choose two - Prevent all damage target instant or sorcery spell would deal this turn; Target player sacrifices an enchantment; Put a +1/+1 counter on target creature; or Target creature you control fights target creature you don't control.|
Enduring Scalelord|Dragons of Tarkir|222|U|{4}{G}{W}|Creature - Dragon|4|4|Flying$Whenever one or more +1/+1 counters are place on another creature you control, you may put a +1/+1 counter on Enduring Scaleguard.|
Harbinger of the Hunt|Dragons of Tarkir|223|R|{3}{R}{G}|Creature - Dragon|5|3|Flying${2}{R}: Harbinger of the Hunt deals 1 damage to each creature without flying.${2}{G}: Harbinger of the Hunt deals 1 damage to each other creature with flying.|
-Kolaghan's Command|Dragons of Tarkir|224|R|{1}{B}{R}|Instant|||Choose two - Return target creature card from your graveyard to your hand; or Target player discards a card; or Destroy target artifact; or Kolaghan's Command deals 2 damage to target creature or player.|
+Kolaghan's Command|Dragons of Tarkir|224|R|{1}{B}{R}|Instant|||Choose two - Return target creature card from your graveyard to your hand; or Target player discards a card; or Destroy target artifact; or Kolaghan's Command deals 2 damage to any target.|
Narset Transcendent|Dragons of Tarkir|225|M|{2}{W}{U}|Legendary Planeswalker - Narset|||+1: Look at the top card of your library. If it's a noncreature, nonland card, you may reveal it and put it into your hand.$-2: When you cast your next instant or sorcery spell from your hand this turn, it gains rebound.$-9:You get an emblem with "Your opponents can't cast noncreature spells."|
Necromaster Dragon|Dragons of Tarkir|226|R|{3}{U}{B}|Creature - Dragon|4|4|Flying$Whenever Necromaster Dragon deals combat damage to a player, you may pay {2}. If you do, put a 2/2 black Zombie creature token onto the battlefield and each opponent puts the top two cards of his or her library into his or her graveyard.|
Ojutai's Command|Dragons of Tarkir|227|R|{2}{W}{U}|Instant|||Choose two - Return target creature card with converted mana cost 2 or less from your graveyard to the battlefield; or You gain 4 life; or Counter target creature spell; or Draw a card|
Pristine Skywise|Dragons of Tarkir|228|R|{4}{W}{U}|Creature - Dragon|6|4|Flying$Whenever you cast a noncreature spell, untap Pristine Skywise. It gains protection from the color of your choice until the end of turn.|
Ruthless Deathfang|Dragons of Tarkir|229|U|{4}{U}{B}|Creature - Dragon|4|4|Flying$Whenever you sacrifice a creature, target opponent sacrifices a creature.|
-Sarkhan Unbroken|Dragons of Tarkir|230|M|{2}{G}{U}{R}|Legendary Planeswalker - Sarkhan|||+1: Draw a card, then add one mana of any color to your mana pool.$-2: Put a 4/4 red Dragon creature token with flying onto the battlefield.$-8: Search your library for any number of Dragon creature cards and put them onto the battlefield. Then shuffle your library.|
+Sarkhan Unbroken|Dragons of Tarkir|230|M|{2}{G}{U}{R}|Legendary Planeswalker - Sarkhan|||+1: Draw a card, then add one mana of any color.$-2: Put a 4/4 red Dragon creature token with flying onto the battlefield.$-8: Search your library for any number of Dragon creature cards and put them onto the battlefield. Then shuffle your library.|
Savage Ventmaw|Dragons of Tarkir|231|U|{4}{R}{G}|Creature - Dragon|4|4|Flying$Whenever Savage Ventmaw attacks, add {R}{R}{R}{G}{G}{G}. Until end of turn, this mana doesn't empty from your mana pool as steps and phases end.|
Silumgar's Command|Dragons of Tarkir|232|R|{3}{U}{B}|Instant|||Choose two - Counter target noncreature spell; or Return target permanent to its owner's hand; or Target creature gets -3/-3 until end of turn; or Destroy target planeswalker.|
Swift Warkite|Dragons of Tarkir|233|U|{4}{B}{R}|Creature - Dragon|4|4|Flying$When Swift Warkite enters the battlefield, you may put a creature card with converted mana cost 3 or less from your hand or graveyard onto the battlefield. That creature gains haste. Return it to your hand at the beginning of the next end step.|
@@ -4491,7 +4491,7 @@ Stormrider Rig|Dragons of Tarkir|245|U|{2}|Artifact - Equipment|||Equipped creat
Tapestry of the Ages|Dragons of Tarkir|246|U|Artifact|||{2}, {T}: Draw a card. Activate this ability only if you've cast a noncreature spell this turn.|
Vial of Dragonfire|Dragons of Tarkir|247|C|{2}|Artifact|||{2}, {T}, Sacrifice Vial of Dragonfire: Vial of Dragonfire deals 2 damage to target creature.|
Evolving Wilds|Dragons of Tarkir|248|C||Land|||{T}, Sacrifice Evolving Wilds: Search your library for a basic land card and put it onto the battlefield tapped. Then shuffle your library.|
-Haven of the Spirit Dragon|Dragons of Tarkir|249|R||Land|||{T}: Add {C}.${T}: add one mana of any color to your mana pool. Spend this mana only to cast a Dragon creature spell.${2}, {T}, Sacrifice Haven of the Spirit Dragon: Return target Dragon creature card or Ugin planeswalker card from your graveyard to your hand.|
+Haven of the Spirit Dragon|Dragons of Tarkir|249|R||Land|||{T}: Add {C}.${T}: add one mana of any color. Spend this mana only to cast a Dragon creature spell.${2}, {T}, Sacrifice Haven of the Spirit Dragon: Return target Dragon creature card or Ugin planeswalker card from your graveyard to your hand.|
Plains|Dragons of Tarkir|250|L||Basic Land - Plains|||W|
Plains|Dragons of Tarkir|251|L||Basic Land - Plains|||W|
Plains|Dragons of Tarkir|252|L||Basic Land - Plains|||W|
@@ -4507,14 +4507,14 @@ Mountain|Dragons of Tarkir|261|L||Basic Land - Mountain|||R|
Forest|Dragons of Tarkir|262|L||Basic Land - Forest|||G|
Forest|Dragons of Tarkir|263|L||Basic Land - Forest|||G|
Forest|Dragons of Tarkir|264|L||Basic Land - Forest|||G|
-Ajani Vengeant|Duel Decks: Ajani vs. Nicol Bolas|1|M|{2}{R}{W}|Legendary 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.|
+Ajani Vengeant|Duel Decks: Ajani vs. Nicol Bolas|1|M|{2}{R}{W}|Legendary Planeswalker - Ajani|||+1: Target permanent doesn't untap during its controller's next untap step.$-2: Ajani Vengeant deals 3 damage to any target and you gain 3 life.$-7: Destroy all lands target player controls.|
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.|
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.|
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.|
Woolly Thoctar|Duel Decks: Ajani vs. Nicol Bolas|13|U|{R}{G}{W}|Creature - Beast|5|4||
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.)|
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.|
-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.|
+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 any target.|
Marisi's Twinclaws|Duel Decks: Ajani vs. Nicol Bolas|17|U|{2}{RW}{G}|Creature - Cat Warrior|2|4|Double strike|
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.|
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.|
@@ -4522,11 +4522,11 @@ Kird Ape|Duel Decks: Ajani vs. Nicol Bolas|2|U|{R}|Creature - Ape|1|1|Kird Ape g
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.|
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.|
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.|
-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.|
+Lightning Helix|Duel Decks: Ajani vs. Nicol Bolas|23|U|{R}{W}|Instant|||Lightning Helix deals 3 damage to any target and you gain 3 life.|
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.|
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.|
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.|
-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.|
+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 any target.|
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}|
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.|
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.|
@@ -4552,7 +4552,7 @@ Morgue Toad|Duel Decks: Ajani vs. Nicol Bolas|47|C|{2}{B}|Creature - Frog|2|2|Sa
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.|
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.|
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.|
-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.|
+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 any target.|
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.|
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.|
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.)|
@@ -4582,7 +4582,7 @@ Suffering|Duel Decks: Ajani vs. Nicol Bolas|72b|U|{3}{R}|Sorcery|||$Destroy targ
Rise|Duel Decks: Ajani vs. Nicol Bolas|73a|U|{U}{B}|Sorcery|||Return target creature card from a graveyard and target creature on the battlefield to their owners' hands.$|
Fall|Duel Decks: Ajani vs. Nicol Bolas|73b|U|{B}{R}|Sorcery|||$Target player reveals two cards at random from his or her hand, then discards each nonland card revealed this way.|
Crumbling Necropolis|Duel Decks: Ajani vs. Nicol Bolas|74|U||Land|||Crumbling Necropolis enters the battlefield tapped.${tap}: Add {U}, {B}, or {R}.|
-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.|
+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.|
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.|
Swamp|Duel Decks: Ajani vs. Nicol Bolas|77|L||Basic Land - Swamp|||B|
Swamp|Duel Decks: Ajani vs. Nicol Bolas|78|L||Basic Land - Swamp|||B|
@@ -4606,7 +4606,7 @@ Elvish Promenade|Duel Decks: Anthology, Elves vs. Goblins|20|U|{3}{G}|Tribal Sor
Giant Growth|Duel Decks: Anthology, Elves vs. Goblins|21|C|{G}|Instant|||Target creature gets +3/+3 until end of turn.|
Harmonize|Duel Decks: Anthology, Elves vs. Goblins|22|U|{2}{G}{G}|Sorcery|||Draw three cards.|
Wildsize|Duel Decks: Anthology, Elves vs. Goblins|23|C|{2}{G}|Instant|||Target creature gets +2/+2 and gains trample until end of turn.$Draw a card.|
-Moonglove Extract|Duel Decks: Anthology, Elves vs. Goblins|24|C|{3}|Artifact|||Sacrifice Moonglove Extract: Moonglove Extract deals 2 damage to target creature or player.|
+Moonglove Extract|Duel Decks: Anthology, Elves vs. Goblins|24|C|{3}|Artifact|||Sacrifice Moonglove Extract: Moonglove Extract deals 2 damage to any target.|
Slate of Ancestry|Duel Decks: Anthology, Elves vs. Goblins|25|R|{4}|Artifact|||{4}, {tap}, Discard your hand: Draw a card for each creature you control.|
Wirewood Lodge|Duel Decks: Anthology, Elves vs. Goblins|26|U||Land|||{tap}: Add {C}.${G}, {tap}: Untap target Elf.|
Tranquil Thicket|Duel Decks: Anthology, Elves vs. Goblins|27|C||Land|||Tranquil Thicket enters the battlefield tapped.${tap}: Add {G}.$Cycling {G} ({G}, Discard this card: Draw a card.)|
@@ -4615,7 +4615,7 @@ Forest|Duel Decks: Anthology, Elves vs. Goblins|29|L||Basic Land - Forest|||G|
Elvish Eulogist|Duel Decks: Anthology, Elves vs. Goblins|3|C|{G}|Creature - Elf Shaman|1|1|Sacrifice Elvish Eulogist: You gain 1 life for each Elf card in your graveyard.|
Forest|Duel Decks: Anthology, Elves vs. Goblins|30|L||Basic Land - Forest|||G|
Forest|Duel Decks: Anthology, Elves vs. Goblins|31|L||Basic Land - Forest|||G|
-Siege-Gang Commander|Duel Decks: Anthology, Elves vs. Goblins|32|R|{3}{R}{R}|Creature - Goblin|2|2|When Siege-Gang Commander enters the battlefield, put three 1/1 red Goblin creature tokens onto the battlefield.${1}{R}, Sacrifice a Goblin: Siege-Gang Commander deals 2 damage to target creature or player.|
+Siege-Gang Commander|Duel Decks: Anthology, Elves vs. Goblins|32|R|{3}{R}{R}|Creature - Goblin|2|2|When Siege-Gang Commander enters the battlefield, put three 1/1 red Goblin creature tokens onto the battlefield.${1}{R}, Sacrifice a Goblin: Siege-Gang Commander deals 2 damage to any target.|
Akki Coalflinger|Duel Decks: Anthology, Elves vs. Goblins|33|U|{1}{R}{R}|Creature - Goblin Shaman|2|2|First strike${R}, {tap}: Attacking creatures gain first strike until end of turn.|
Clickslither|Duel Decks: Anthology, Elves vs. Goblins|34|R|{1}{R}{R}{R}|Creature - Insect|3|3|Haste$Sacrifice a Goblin: Clickslither gets +2/+2 and gains trample until end of turn.|
Emberwilde Augur|Duel Decks: Anthology, Elves vs. Goblins|35|C|{1}{R}|Creature - Goblin Shaman|2|1|Sacrifice Emberwilde Augur: Emberwilde Augur deals 3 damage to target player. Activate this ability only during your upkeep.|
@@ -4623,14 +4623,14 @@ Flamewave Invoker|Duel Decks: Anthology, Elves vs. Goblins|36|U|{2}{R}|Creature
Gempalm Incinerator|Duel Decks: Anthology, Elves vs. Goblins|37|U|{2}{R}|Creature - Goblin|2|1|Cycling {1}{R} ({1}{R}, Discard this card: Draw a card.)$When you cycle Gempalm Incinerator, you may have it deal X damage to target creature, where X is the number of Goblins on the battlefield.|
Goblin Cohort|Duel Decks: Anthology, Elves vs. Goblins|38|C|{R}|Creature - Goblin Warrior|2|2|Goblin Cohort can't attack unless you've cast a creature spell this turn.|
Goblin Matron|Duel Decks: Anthology, Elves vs. Goblins|39|U|{2}{R}|Creature - Goblin|1|1|When Goblin Matron enters the battlefield, you may search your library for a Goblin card, reveal that card, and put it into your hand. If you do, shuffle your library.|
-Elvish Harbinger|Duel Decks: Anthology, Elves vs. Goblins|4|U|{2}{G}|Creature - Elf Druid|1|2|When Elvish Harbinger enters the battlefield, you may search your library for an Elf card, reveal it, then shuffle your library and put that card on top of it.${tap}: Add one mana of any color to your mana pool.|
+Elvish Harbinger|Duel Decks: Anthology, Elves vs. Goblins|4|U|{2}{G}|Creature - Elf Druid|1|2|When Elvish Harbinger enters the battlefield, you may search your library for an Elf card, reveal it, then shuffle your library and put that card on top of it.${tap}: Add one mana of any color.|
Goblin Ringleader|Duel Decks: Anthology, Elves vs. Goblins|40|U|{3}{R}|Creature - Goblin|2|2|Haste$When Goblin Ringleader enters the battlefield, reveal the top four cards of your library. Put all Goblin cards revealed this way into your hand and the rest on the bottom of your library in any order.|
Goblin Sledder|Duel Decks: Anthology, Elves vs. Goblins|41|C|{R}|Creature - Goblin|1|1|Sacrifice a Goblin: Target creature gets +1/+1 until end of turn.|
Goblin Warchief|Duel Decks: Anthology, Elves vs. Goblins|42|U|{1}{R}{R}|Creature - Goblin|2|2|Goblin spells you cast cost {1} less to cast.$Goblin creatures you control have haste.|
Ib Halfheart, Goblin Tactician|Duel Decks: Anthology, Elves vs. Goblins|43|R|{3}{R}|Legendary Creature - Goblin Advisor|3|2|Whenever another Goblin you control becomes blocked, sacrifice it. If you do, it deals 4 damage to each creature blocking it.$Sacrifice two Mountains: Put two 1/1 red Goblin creature tokens onto the battlefield.|
-Mogg Fanatic|Duel Decks: Anthology, Elves vs. Goblins|44|U|{R}|Creature - Goblin|1|1|Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to target creature or player.|
+Mogg Fanatic|Duel Decks: Anthology, Elves vs. Goblins|44|U|{R}|Creature - Goblin|1|1|Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to any target.|
Mogg War Marshal|Duel Decks: Anthology, Elves vs. Goblins|45|C|{1}{R}|Creature - Goblin Warrior|1|1|Echo {1}{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 Mogg War Marshal enters the battlefield or dies, put a 1/1 red Goblin creature token onto the battlefield.|
-Mudbutton Torchrunner|Duel Decks: Anthology, Elves vs. Goblins|46|C|{2}{R}|Creature - Goblin Warrior|1|1|When Mudbutton Torchrunner dies, it deals 3 damage to target creature or player.|
+Mudbutton Torchrunner|Duel Decks: Anthology, Elves vs. Goblins|46|C|{2}{R}|Creature - Goblin Warrior|1|1|When Mudbutton Torchrunner dies, it deals 3 damage to any target.|
Raging Goblin|Duel Decks: Anthology, Elves vs. Goblins|47|C|{R}|Creature - Goblin Berserker|1|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)|
Reckless One|Duel Decks: Anthology, Elves vs. Goblins|48|U|{3}{R}|Creature - Goblin Avatar|*|*|Haste$Reckless One's power and toughness are each equal to the number of Goblins on the battlefield.|
Skirk Drill Sergeant|Duel Decks: Anthology, Elves vs. Goblins|49|U|{1}{R}|Creature - Goblin|2|1|Whenever Skirk Drill Sergeant or another Goblin dies, you may pay {2}{R}. If you do, reveal the top card of your library. If it's a Goblin permanent card, put it onto the battlefield. Otherwise, put it into your graveyard.|
@@ -4638,10 +4638,10 @@ Elvish Warrior|Duel Decks: Anthology, Elves vs. Goblins|5|C|{G}{G}|Creature - El
Skirk Fire Marshal|Duel Decks: Anthology, Elves vs. Goblins|50|R|{3}{R}{R}|Creature - Goblin|2|2|Protection from red$Tap five untapped Goblins you control: Skirk Fire Marshal deals 10 damage to each creature and each player.|
Skirk Prospector|Duel Decks: Anthology, Elves vs. Goblins|51|C|{R}|Creature - Goblin|1|1|Sacrifice a Goblin: Add {R}.|
Skirk Shaman|Duel Decks: Anthology, Elves vs. Goblins|52|C|{1}{R}{R}|Creature - Goblin Shaman|2|2|Skirk Shaman can't be blocked except by artifact creatures and/or red creatures.|
-Tar Pitcher|Duel Decks: Anthology, Elves vs. Goblins|53|U|{3}{R}|Creature - Goblin Shaman|2|2|{tap}, Sacrifice a Goblin: Tar Pitcher deals 2 damage to target creature or player.|
+Tar Pitcher|Duel Decks: Anthology, Elves vs. Goblins|53|U|{3}{R}|Creature - Goblin Shaman|2|2|{tap}, Sacrifice a Goblin: Tar Pitcher deals 2 damage to any target.|
Boggart Shenanigans|Duel Decks: Anthology, Elves vs. Goblins|54|U|{2}{R}|Tribal Enchantment - Goblin|||Whenever another Goblin you control dies, you may have Boggart Shenanigans deal 1 damage to target player.|
Spitting Earth|Duel Decks: Anthology, Elves vs. Goblins|55|C|{1}{R}|Sorcery|||Spitting Earth deals damage to target creature equal to the number of Mountains you control.|
-Tarfire|Duel Decks: Anthology, Elves vs. Goblins|56|C|{R}|Tribal Instant - Goblin|||Tarfire deals 2 damage to target creature or player.|
+Tarfire|Duel Decks: Anthology, Elves vs. Goblins|56|C|{R}|Tribal Instant - Goblin|||Tarfire deals 2 damage to any target.|
Forgotten Cave|Duel Decks: Anthology, Elves vs. Goblins|57|C||Land|||Forgotten Cave enters the battlefield tapped.${tap}: Add {R}.$Cycling {R} ({R}, Discard this card: Draw a card.)|
Goblin Burrows|Duel Decks: Anthology, Elves vs. Goblins|58|U||Land|||{tap}: Add {C}.${1}{R}, {tap}: Target Goblin creature gets +2/+0 until end of turn.|
Mountain|Duel Decks: Anthology, Elves vs. Goblins|59|L||Basic Land - Mountain|||R|
@@ -4704,7 +4704,7 @@ Snuff Out|Duel Decks: Anthology, Garruk vs. Liliana|53|C|{3}{B}|Instant|||If you
Tendrils of Corruption|Duel Decks: Anthology, Garruk vs. Liliana|54|C|{3}{B}|Instant|||Tendrils of Corruption deals X damage to target creature and you gain X life, where X is the number of Swamps you control.|
Mutilate|Duel Decks: Anthology, Garruk vs. Liliana|55|R|{2}{B}{B}|Sorcery|||All creatures get -1/-1 until end of turn for each Swamp you control.|
Rise from the Grave|Duel Decks: Anthology, Garruk vs. Liliana|56|U|{4}{B}|Sorcery|||Put target creature card from a graveyard onto the battlefield under your control. That creature is a black Zombie in addition to its other colors and types.|
-Corrupt|Duel Decks: Anthology, Garruk vs. Liliana|57|U|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to target creature or player. You gain life equal to the damage dealt this way.|
+Corrupt|Duel Decks: Anthology, Garruk vs. Liliana|57|U|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to any target. You gain life equal to the damage dealt this way.|
Enslave|Duel Decks: Anthology, Garruk vs. Liliana|58|U|{4}{B}{B}|Enchantment - Aura|||Enchant creature$You control enchanted creature.$At the beginning of your upkeep, enchanted creature deals 1 damage to its owner.|
Polluted Mire|Duel Decks: Anthology, Garruk vs. Liliana|59|C||Land|||Polluted Mire enters the battlefield tapped.${tap}: Add {B}.$Cycling {2} ({2}, Discard this card: Draw a card.)|
Wirewood Savage|Duel Decks: Anthology, Garruk vs. Liliana|6|C|{2}{G}|Creature - Elf|2|2|Whenever a Beast enters the battlefield, you may draw a card.|
@@ -4720,7 +4720,7 @@ Serra Angel|Duel Decks: Anthology, Divine vs. Demonic|10|R|{3}{W}{W}|Creature -
Twilight Shepherd|Duel Decks: Anthology, Divine vs. Demonic|11|R|{3}{W}{W}{W}|Creature - Angel|5|5|Flying, vigilance$When Twilight Shepherd enters the battlefield, return to your hand all cards in your graveyard that were put there from the battlefield this turn.$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.)|
Luminous Angel|Duel Decks: Anthology, Divine vs. Demonic|12|R|{4}{W}{W}{W}|Creature - Angel|4|4|Flying$At the beginning of your upkeep, you may put a 1/1 white Spirit creature token with flying onto the battlefield.|
Reya Dawnbringer|Duel Decks: Anthology, Divine vs. Demonic|13|R|{6}{W}{W}{W}|Legendary Creature - Angel|4|6|Flying$At the beginning of your upkeep, you may return target creature card from your graveyard to the battlefield.|
-Healing Salve|Duel Decks: Anthology, Divine vs. Demonic|14|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to target creature or player this turn.|
+Healing Salve|Duel Decks: Anthology, Divine vs. Demonic|14|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to any target this turn.|
Angelsong|Duel Decks: Anthology, Divine vs. Demonic|15|C|{1}{W}|Instant|||Prevent all combat damage that would be dealt this turn.$Cycling {2} ({2}, Discard this card: Draw a card.)|
Otherworldly Journey|Duel Decks: Anthology, Divine vs. Demonic|16|U|{1}{W}|Instant - Arcane|||Exile target creature. At the beginning of the next end step, return that card to the battlefield under its owner's control with a +1/+1 counter on it.|
Pacifism|Duel Decks: Anthology, Divine vs. Demonic|17|C|{1}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature can't attack or block.|
@@ -4765,8 +4765,8 @@ Oni Possession|Duel Decks: Anthology, Divine vs. Demonic|51|U|{2}{B}|Enchantment
Barter in Blood|Duel Decks: Anthology, Divine vs. Demonic|52|U|{2}{B}{B}|Sorcery|||Each player sacrifices two creatures.|
Breeding Pit|Duel Decks: Anthology, Divine vs. Demonic|53|U|{3}{B}|Enchantment|||At the beginning of your upkeep, sacrifice Breeding Pit unless you pay {B}{B}.$At the beginning of your end step, put a 0/1 black Thrull creature token onto the battlefield.|
Promise of Power|Duel Decks: Anthology, Divine vs. Demonic|54|R|{2}{B}{B}{B}|Sorcery|||Choose one - You draw five cards and you lose 5 life; or put an X/X black Demon creature token with flying onto the battlefield, where X is the number of cards in your hand as the token enters the battlefield.$Entwine {4} (Choose both if you pay the entwine cost.)|
-Corrupt|Duel Decks: Anthology, Divine vs. Demonic|55|U|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to target creature or player. You gain life equal to the damage dealt this way.|
-Consume Spirit|Duel Decks: Anthology, Divine vs. Demonic|56|U|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Consume Spirit deals X damage to target creature or player and you gain X life.|
+Corrupt|Duel Decks: Anthology, Divine vs. Demonic|55|U|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to any target. You gain life equal to the damage dealt this way.|
+Consume Spirit|Duel Decks: Anthology, Divine vs. Demonic|56|U|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Consume Spirit deals X damage to any target and you gain X life.|
Demon's Horn|Duel Decks: Anthology, Divine vs. Demonic|57|U|{2}|Artifact|||Whenever a player casts a black spell, you may gain 1 life.|
Barren Moor|Duel Decks: Anthology, Divine vs. Demonic|58|C||Land|||Barren Moor enters the battlefield tapped.${tap}: Add {B}.$Cycling {B} ({B}, Discard this card: Draw a card.)|
Swamp|Duel Decks: Anthology, Divine vs. Demonic|59|L||Basic Land - Swamp|||B|
@@ -4778,7 +4778,7 @@ Serra Advocate|Duel Decks: Anthology, Divine vs. Demonic|7|U|{3}{W}|Creature - A
Sustainer of the Realm|Duel Decks: Anthology, Divine vs. Demonic|8|U|{2}{W}{W}|Creature - Angel|2|3|Flying$Whenever Sustainer of the Realm blocks, it gets +0/+2 until end of turn.|
Angel of Mercy|Duel Decks: Anthology, Divine vs. Demonic|9|U|{4}{W}|Creature - Angel|3|3|Flying$When Angel of Mercy enters the battlefield, you gain 3 life.|
Jace Beleren|Duel Decks: Anthology, Jace vs. Chandra|1|M|{1}{U}{U}|Legendary Planeswalker - Jace|||+2: Each player draws a card.$-1: Target player draws a card.$-10: Target player puts the top twenty cards of his or her library into his or her graveyard.|
-Fledgling Mawcor|Duel Decks: Anthology, Jace vs. Chandra|10|U|{3}{U}|Creature - Beast|2|2|Flying${tap}: Fledgling Mawcor deals 1 damage to target creature or player.$Morph {U}{U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
+Fledgling Mawcor|Duel Decks: Anthology, Jace vs. Chandra|10|U|{3}{U}|Creature - Beast|2|2|Flying${tap}: Fledgling Mawcor deals 1 damage to any target.$Morph {U}{U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
Waterspout Djinn|Duel Decks: Anthology, 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.|
Mulldrifter|Duel Decks: Anthology, Jace vs. Chandra|12|C|{4}{U}|Creature - Elemental|2|2|Flying$When Mulldrifter enters the battlefield, draw two cards.$Evoke {2}{U} (You may cast this spell for its evoke cost. If you do, it's sacrificed when it enters the battlefield.)|
Air Elemental|Duel Decks: Anthology, Jace vs. Chandra|13|U|{3}{U}{U}|Creature - Elemental|4|4|Flying|
@@ -4806,7 +4806,7 @@ Island|Duel Decks: Anthology, Jace vs. Chandra|32|L||Basic Land - Island|||U|
Island|Duel Decks: Anthology, Jace vs. Chandra|33|L||Basic Land - Island|||U|
Chandra Nalaar|Duel Decks: Anthology, Jace vs. Chandra|34|M|{3}{R}{R}|Legendary Planeswalker - Chandra|||+1: Chandra Nalaar deals 1 damage to target player.$-X: Chandra Nalaar deals X damage to target creature.$-8: Chandra Nalaar deals 10 damage to target player and each creature he or she controls.|
Flamekin Brawler|Duel Decks: Anthology, Jace vs. Chandra|35|C|{R}|Creature - Elemental Warrior|0|2|{R}: Flamekin Brawler gets +1/+0 until end of turn.|
-Fireslinger|Duel Decks: Anthology, Jace vs. Chandra|36|C|{1}{R}|Creature - Human Wizard|1|1|{tap}: Fireslinger deals 1 damage to target creature or player and 1 damage to you.|
+Fireslinger|Duel Decks: Anthology, Jace vs. Chandra|36|C|{1}{R}|Creature - Human Wizard|1|1|{tap}: Fireslinger deals 1 damage to any target and 1 damage to you.|
Soulbright Flamekin|Duel Decks: Anthology, Jace vs. Chandra|37|C|{1}{R}|Creature - Elemental Shaman|2|1|{2}: Target creature gains trample until end of turn. If this is the third time this ability has resolved this turn, you may add {R}{R}{R}{R}{R}{R}{R}{R}.|
Pyre Charger|Duel Decks: Anthology, Jace vs. Chandra|38|U|{R}{R}|Creature - Elemental Warrior|1|1|Haste${R}: Pyre Charger gets +1/+0 until end of turn.|
Slith Firewalker|Duel Decks: Anthology, Jace vs. Chandra|39|U|{R}{R}|Creature - Slith|1|1|Haste$Whenever Slith Firewalker deals combat damage to a player, put a +1/+1 counter on it.|
@@ -4820,17 +4820,17 @@ Ingot Chewer|Duel Decks: Anthology, Jace vs. Chandra|45|C|{4}{R}|Creature - Elem
Oxidda Golem|Duel Decks: Anthology, Jace vs. Chandra|46|C|{6}|Artifact Creature - Golem|3|2|Affinity for Mountains (This spell costs {1} less to cast for each Mountain you control.)$Haste|
Chartooth Cougar|Duel Decks: Anthology, Jace vs. Chandra|47|C|{5}{R}|Creature - Cat Beast|4|4|{R}: Chartooth Cougar gets +1/+0 until end of turn.$Mountaincycling {2} ({2}, Discard this card: Search your library for a Mountain card, reveal it, and put it into your hand. Then shuffle your library.)|
Hostility|Duel Decks: Anthology, Jace vs. Chandra|48|R|{3}{R}{R}{R}|Creature - Elemental Incarnation|6|6|Haste$If a spell you control would deal damage to an opponent, prevent that damage. Put a 3/1 red Elemental Shaman creature token with haste onto the battlefield for each 1 damage prevented this way.$When Hostility is put into a graveyard from anywhere, shuffle it into its owner's library.|
-Firebolt|Duel Decks: Anthology, Jace vs. Chandra|49|C|{R}|Sorcery|||Firebolt deals 2 damage to target creature or player.$Flashback {4}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
+Firebolt|Duel Decks: Anthology, Jace vs. Chandra|49|C|{R}|Sorcery|||Firebolt deals 2 damage to any target.$Flashback {4}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Wall of Deceit|Duel Decks: Anthology, Jace vs. Chandra|5|U|{1}{U}|Creature - Wall|0|5|Defender (This creature can't attack.)${3}: Turn Wall of Deceit face down.$Morph {U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
-Seal of Fire|Duel Decks: Anthology, Jace vs. Chandra|50|C|{R}|Enchantment|||Sacrifice Seal of Fire: Seal of Fire deals 2 damage to target creature or player.|
-Incinerate|Duel Decks: Anthology, Jace vs. Chandra|51|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.|
-Magma Jet|Duel Decks: Anthology, Jace vs. Chandra|52|U|{1}{R}|Instant|||Magma Jet deals 2 damage to target creature or player.$Scry 2. (To scry 2, look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)|
-Flame Javelin|Duel Decks: Anthology, Jace vs. Chandra|53|U|{2R}{2R}{2R}|Instant|||({2R} can be paid with any two mana or with {R}. This card's converted mana cost is 6.)$Flame Javelin deals 4 damage to target creature or player.|
-Cone of Flame|Duel Decks: Anthology, Jace vs. Chandra|54|U|{3}{R}{R}|Sorcery|||Cone of Flame deals 1 damage to target creature or player, 2 damage to another target creature or player, and 3 damage to a third target creature or player.|
-Fireblast|Duel Decks: Anthology, Jace vs. Chandra|55|C|{4}{R}{R}|Instant|||You may sacrifice two Mountains rather than pay Fireblast's mana cost.$Fireblast deals 4 damage to target creature or player.|
+Seal of Fire|Duel Decks: Anthology, Jace vs. Chandra|50|C|{R}|Enchantment|||Sacrifice Seal of Fire: Seal of Fire deals 2 damage to any target.|
+Incinerate|Duel Decks: Anthology, Jace vs. Chandra|51|C|{1}{R}|Instant|||Incinerate deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.|
+Magma Jet|Duel Decks: Anthology, Jace vs. Chandra|52|U|{1}{R}|Instant|||Magma Jet deals 2 damage to any target.$Scry 2. (To scry 2, look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)|
+Flame Javelin|Duel Decks: Anthology, Jace vs. Chandra|53|U|{2R}{2R}{2R}|Instant|||({2R} can be paid with any two mana or with {R}. This card's converted mana cost is 6.)$Flame Javelin deals 4 damage to any target.|
+Cone of Flame|Duel Decks: Anthology, Jace vs. Chandra|54|U|{3}{R}{R}|Sorcery|||Cone of Flame deals 1 damage to any target, 2 damage to another any target, and 3 damage to a third any target.|
+Fireblast|Duel Decks: Anthology, Jace vs. Chandra|55|C|{4}{R}{R}|Instant|||You may sacrifice two Mountains rather than pay Fireblast's mana cost.$Fireblast deals 4 damage to any target.|
Fireball|Duel Decks: Anthology, Jace vs. Chandra|56|U|{X}{R}|Sorcery|||Fireball deals X damage divided evenly, rounded down, among any number of target creatures and/or players.$Fireball costs {1} more to cast for each target beyond the first.|
-Demonfire|Duel Decks: Anthology, Jace vs. Chandra|57|R|{X}{R}|Sorcery|||Demonfire deals X damage to target creature or player. If a creature dealt damage this way would die this turn, exile it instead.$Hellbent - If you have no cards in hand, Demonfire can't be countered by spells or abilities and the damage can't be prevented.|
-Keldon Megaliths|Duel Decks: Anthology, Jace vs. Chandra|58|U||Land|||Keldon Megaliths enters the battlefield tapped.${tap}: Add {R}.$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.|
+Demonfire|Duel Decks: Anthology, Jace vs. Chandra|57|R|{X}{R}|Sorcery|||Demonfire deals X damage to any target. If a creature dealt damage this way would die this turn, exile it instead.$Hellbent - If you have no cards in hand, Demonfire can't be countered by spells or abilities and the damage can't be prevented.|
+Keldon Megaliths|Duel Decks: Anthology, Jace vs. Chandra|58|U||Land|||Keldon Megaliths enters the battlefield tapped.${tap}: Add {R}.$Hellbent - {1}{R}, {tap}: Keldon Megaliths deals 1 damage to any target. Activate this ability only if you have no cards in hand.|
Mountain|Duel Decks: Anthology, Jace vs. Chandra|59|L||Basic Land - Mountain|||R|
Willbender|Duel Decks: Anthology, Jace vs. Chandra|6|U|{1}{U}|Creature - Human Wizard|1|2|Morph {1}{U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Willbender is turned face up, change the target of target spell or ability with a single target.|
Mountain|Duel Decks: Anthology, Jace vs. Chandra|60|L||Basic Land - Mountain|||R|
@@ -4844,7 +4844,7 @@ Serra Angel|Duel Decks: Divine vs. Demonic|10|R|{3}{W}{W}|Creature - Angel|4|4|F
Twilight Shepherd|Duel Decks: Divine vs. Demonic|11|R|{3}{W}{W}{W}|Creature - Angel|5|5|Flying, vigilance$When Twilight Shepherd enters the battlefield, return to your hand all cards in your graveyard that were put there from the battlefield this turn.$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.)|
Luminous Angel|Duel Decks: Divine vs. Demonic|12|R|{4}{W}{W}{W}|Creature - Angel|4|4|Flying$At the beginning of your upkeep, you may put a 1/1 white Spirit creature token with flying onto the battlefield.|
Reya Dawnbringer|Duel Decks: Divine vs. Demonic|13|R|{6}{W}{W}{W}|Legendary Creature - Angel|4|6|Flying$At the beginning of your upkeep, you may return target creature card from your graveyard to the battlefield.|
-Healing Salve|Duel Decks: Divine vs. Demonic|14|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to target creature or player this turn.|
+Healing Salve|Duel Decks: Divine vs. Demonic|14|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to any target this turn.|
Angelsong|Duel Decks: Divine vs. Demonic|15|C|{1}{W}|Instant|||Prevent all combat damage that would be dealt this turn.$Cycling {2} ({2}, Discard this card: Draw a card.)|
Otherworldly Journey|Duel Decks: Divine vs. Demonic|16|U|{1}{W}|Instant - Arcane|||Exile target creature. At the beginning of the next end step, return that card to the battlefield under its owner's control with a +1/+1 counter on it.|
Pacifism|Duel Decks: Divine vs. Demonic|17|C|{1}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature can't attack or block.|
@@ -4889,8 +4889,8 @@ Oni Possession|Duel Decks: Divine vs. Demonic|51|U|{2}{B}|Enchantment - Aura|||E
Barter in Blood|Duel Decks: Divine vs. Demonic|52|U|{2}{B}{B}|Sorcery|||Each player sacrifices two creatures.|
Breeding Pit|Duel Decks: Divine vs. Demonic|53|U|{3}{B}|Enchantment|||At the beginning of your upkeep, sacrifice Breeding Pit unless you pay {B}{B}.$At the beginning of your end step, put a 0/1 black Thrull creature token onto the battlefield.|
Promise of Power|Duel Decks: Divine vs. Demonic|54|R|{2}{B}{B}{B}|Sorcery|||Choose one - You draw five cards and you lose 5 life; or put an X/X black Demon creature token with flying onto the battlefield, where X is the number of cards in your hand as the token enters the battlefield.$Entwine {4} (Choose both if you pay the entwine cost.)|
-Corrupt|Duel Decks: Divine vs. Demonic|55|U|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to target creature or player. You gain life equal to the damage dealt this way.|
-Consume Spirit|Duel Decks: Divine vs. Demonic|56|U|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Consume Spirit deals X damage to target creature or player and you gain X life.|
+Corrupt|Duel Decks: Divine vs. Demonic|55|U|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to any target. You gain life equal to the damage dealt this way.|
+Consume Spirit|Duel Decks: Divine vs. Demonic|56|U|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Consume Spirit deals X damage to any target and you gain X life.|
Demon's Horn|Duel Decks: Divine vs. Demonic|57|U|{2}|Artifact|||Whenever a player casts a black spell, you may gain 1 life.|
Barren Moor|Duel Decks: Divine vs. Demonic|58|C||Land|||Barren Moor enters the battlefield tapped.${tap}: Add {B}.$Cycling {B} ({B}, Discard this card: Draw a card.)|
Swamp|Duel Decks: Divine vs. Demonic|59|L||Basic Land - Swamp|||B|
@@ -4914,7 +4914,7 @@ Gustcloak Harrier|Duel Decks: Elspeth vs. Kiora|10|C|{1}{W}{W}|Creature - Bird S
Gustcloak Savior|Duel Decks: Elspeth vs. Kiora|11|R|{4}{W}|Creature - Bird Soldier|3|4|Flying$Whenever a creature you control becomes blocked, you may untap that creature and remove it from combat.|
Gustcloak Sentinel|Duel Decks: Elspeth vs. Kiora|12|U|{2}{W}{W}|Creature - Human Soldier|3|3|Whenever Gustcloak Sentinel becomes blocked, you may untap it and remove it from combat.|
Gustcloak Skirmisher|Duel Decks: Elspeth vs. Kiora|13|U|{3}{W}|Creature - Bird Soldier|2|3|Flying$Whenever Gustcloak Skirmisher becomes blocked, you may untap it and remove it from combat.|
-Icatian Javelineers|Duel Decks: Elspeth vs. Kiora|14|C|{W}|Creature - Human Soldier|1|1|Icatian Javelineers enters the battlefield with a javelin counter on it.${T}, Remove a javelin counter from Icatian Javelineers: Icatian Javelineers deals 1 damage to target creature or player.|
+Icatian Javelineers|Duel Decks: Elspeth vs. Kiora|14|C|{W}|Creature - Human Soldier|1|1|Icatian Javelineers enters the battlefield with a javelin counter on it.${T}, Remove a javelin counter from Icatian Javelineers: Icatian Javelineers deals 1 damage to any target.|
Kinsbaile Skirmisher|Duel Decks: Elspeth vs. Kiora|15|C|{1}{W}|Creature - Kithkin Soldier|2|2|When Kinsbaile Skirmisher enters the battlefield, target creature gets +1/+1 until end of turn.|
Kor Skyfisher|Duel Decks: Elspeth vs. Kiora|16|C|{1}{W}|Creature - Kor Soldier|2|3|Flying$When Kor Skyfisher enters the battlefield, return a permanent you control to its owner's hand.|
Loxodon Partisan|Duel Decks: Elspeth vs. Kiora|17|C|{4}{W}|Creature - Elephant Soldier|3|4|Battle cry (Whenever this creature attacks, each other attacking creature gets +1/+0 until end of turn.)|
@@ -4955,7 +4955,7 @@ Coiling Oracle|Duel Decks: Elspeth vs. Kiora|51|C|{U}{G}|Creature - Snake Elf Dr
Kiora's Follower|Duel Decks: Elspeth vs. Kiora|52|U|{U}{G}|Creature - Merfolk|2|2|{T}: Untap another target permanent.|
Lorescale Coatl|Duel Decks: Elspeth vs. Kiora|53|U|{1}{U}{G}|Creature - Snake|2|2|Whenever you draw a card, you may put a +1/+1 counter on Lorescale Coatl.|
Nimbus Swimmer|Duel Decks: Elspeth vs. Kiora|54|U|{X}{U}{G}|Creature - Leviathan|0|0|Flying$Nimbus Swimmer enters the battlefield with X +1/+1 counters on it.|
-Plasm Capture|Duel Decks: Elspeth vs. Kiora|55|R|{U}{U}{G}{G}|Instant|||Counter target spell. At the beginning of your next precombat main phase, add X mana in any combination of colors to your mana pool, where X is that spell's converted mana cost.|
+Plasm Capture|Duel Decks: Elspeth vs. Kiora|55|R|{U}{U}{G}{G}|Instant|||Counter target spell. At the beginning of your next precombat main phase, add X mana in any combination of colors, where X is that spell's converted mana cost.|
Simic Sky Swallower|Duel Decks: Elspeth vs. Kiora|56|R|{5}{U}{G}|Creature - Leviathan|6|6|Flying, trample$Shroud (This creature can't be the target of spells or abilities.)|
Urban Evolution|Duel Decks: Elspeth vs. Kiora|57|U|{3}{U}{G}|Sorcery|||Draw three cards. You may play an additional land this turn.|
Evolving Wilds|Duel Decks: Elspeth vs. Kiora|58|C||Land|||{T}, Sacrifice Evolving Wilds: Search your library for a basic land card and put it onto the battlefield tapped. Then shuffle your library.|
@@ -5016,9 +5016,9 @@ Frogmite|Duel Decks: Elspeth vs. Tezzeret|51|C|{4}|Artifact Creature - Frog|2|2|
Juggernaut|Duel Decks: Elspeth vs. Tezzeret|52|U|{4}|Artifact Creature - Juggernaut|5|3|Juggernaut attacks each turn if able.$Juggernaut can't be blocked by Walls.|
Synod Centurion|Duel Decks: Elspeth vs. Tezzeret|53|U|{4}|Artifact Creature - Construct|4|4|When you control no other artifacts, sacrifice Synod Centurion.|
Faerie Mechanist|Duel Decks: Elspeth vs. Tezzeret|54|C|{3}{U}|Artifact Creature - Faerie Artificer|2|2|Flying$When Faerie Mechanist enters the battlefield, look at the top three cards of your library. You may reveal an artifact card from among them and put it into your hand. Put the rest on the bottom of your library in any order.|
-Clockwork Hydra|Duel Decks: Elspeth vs. Tezzeret|55|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.|
+Clockwork Hydra|Duel Decks: Elspeth vs. Tezzeret|55|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 any target.${tap}: Put a +1/+1 counter on Clockwork Hydra.|
Razormane Masticore|Duel Decks: Elspeth vs. Tezzeret|56|R|{5}|Artifact Creature - Masticore|5|5|First strike (This creature deals combat damage before creatures without first strike.)$At the beginning of your upkeep, sacrifice Razormane Masticore unless you discard a card.$At the beginning of your draw step, you may have Razormane Masticore deal 3 damage to target creature.|
-Triskelion|Duel Decks: Elspeth vs. Tezzeret|57|R|{6}|Artifact Creature - Construct|1|1|Triskelion enters the battlefield with three +1/+1 counters on it.$Remove a +1/+1 counter from Triskelion: Triskelion deals 1 damage to target creature or player.|
+Triskelion|Duel Decks: Elspeth vs. Tezzeret|57|R|{6}|Artifact Creature - Construct|1|1|Triskelion enters the battlefield with three +1/+1 counters on it.$Remove a +1/+1 counter from Triskelion: Triskelion deals 1 damage to any target.|
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.|
Qumulox|Duel Decks: Elspeth vs. Tezzeret|59|U|{6}{U}{U}|Creature - Beast|5|4|Affinity for artifacts (This spell costs {1} less to cast for each artifact you control.)$Flying|
Mosquito Guard|Duel Decks: Elspeth vs. Tezzeret|6|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.)|
@@ -5029,7 +5029,7 @@ Contagion Clasp|Duel Decks: Elspeth vs. Tezzeret|63|U|{2}|Artifact|||When Contag
Energy Chamber|Duel Decks: Elspeth vs. Tezzeret|64|U|{2}|Artifact|||At the beginning of your upkeep, choose one - Put a +1/+1 counter on target artifact creature; or put a charge counter on target noncreature artifact.|
Trip Noose|Duel Decks: Elspeth vs. Tezzeret|65|U|{2}|Artifact|||{2}, {tap}: Tap target creature.|
Echoing Truth|Duel Decks: Elspeth vs. Tezzeret|66|C|{1}{U}|Instant|||Return target nonland permanent and all other permanents with the same name as that permanent to their owners' hands.|
-Moonglove Extract|Duel Decks: Elspeth vs. Tezzeret|67|C|{3}|Artifact|||Sacrifice Moonglove Extract: Moonglove Extract deals 2 damage to target creature or player.|
+Moonglove Extract|Duel Decks: Elspeth vs. Tezzeret|67|C|{3}|Artifact|||Sacrifice Moonglove Extract: Moonglove Extract deals 2 damage to any target.|
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.|
Argivian Restoration|Duel Decks: Elspeth vs. Tezzeret|69|U|{2}{U}{U}|Sorcery|||Return target artifact card from your graveyard to the battlefield.|
Glory Seeker|Duel Decks: Elspeth vs. Tezzeret|7|C|{1}{W}|Creature - Human Soldier|2|2||
@@ -5061,7 +5061,7 @@ Elvish Promenade|Duel Decks: Elves vs. Goblins|20|U|{3}{G}|Tribal Sorcery - Elf|
Giant Growth|Duel Decks: Elves vs. Goblins|21|C|{G}|Instant|||Target creature gets +3/+3 until end of turn.|
Harmonize|Duel Decks: Elves vs. Goblins|22|U|{2}{G}{G}|Sorcery|||Draw three cards.|
Wildsize|Duel Decks: Elves vs. Goblins|23|C|{2}{G}|Instant|||Target creature gets +2/+2 and gains trample until end of turn.$Draw a card.|
-Moonglove Extract|Duel Decks: Elves vs. Goblins|24|C|{3}|Artifact|||Sacrifice Moonglove Extract: Moonglove Extract deals 2 damage to target creature or player.|
+Moonglove Extract|Duel Decks: Elves vs. Goblins|24|C|{3}|Artifact|||Sacrifice Moonglove Extract: Moonglove Extract deals 2 damage to any target.|
Slate of Ancestry|Duel Decks: Elves vs. Goblins|25|R|{4}|Artifact|||{4}, {tap}, Discard your hand: Draw a card for each creature you control.|
Wirewood Lodge|Duel Decks: Elves vs. Goblins|26|U||Land|||{tap}: Add {C}.${G}, {tap}: Untap target Elf.|
Tranquil Thicket|Duel Decks: Elves vs. Goblins|27|C||Land|||Tranquil Thicket enters the battlefield tapped.${tap}: Add {G}.$Cycling {G} ({G}, Discard this card: Draw a card.)|
@@ -5070,7 +5070,7 @@ Forest|Duel Decks: Elves vs. Goblins|29|L||Basic Land - Forest|||G|
Elvish Eulogist|Duel Decks: Elves vs. Goblins|3|C|{G}|Creature - Elf Shaman|1|1|Sacrifice Elvish Eulogist: You gain 1 life for each Elf card in your graveyard.|
Forest|Duel Decks: Elves vs. Goblins|30|L||Basic Land - Forest|||G|
Forest|Duel Decks: Elves vs. Goblins|31|L||Basic Land - Forest|||G|
-Siege-Gang Commander|Duel Decks: Elves vs. Goblins|32|R|{3}{R}{R}|Creature - Goblin|2|2|When Siege-Gang Commander enters the battlefield, put three 1/1 red Goblin creature tokens onto the battlefield.${1}{R}, Sacrifice a Goblin: Siege-Gang Commander deals 2 damage to target creature or player.|
+Siege-Gang Commander|Duel Decks: Elves vs. Goblins|32|R|{3}{R}{R}|Creature - Goblin|2|2|When Siege-Gang Commander enters the battlefield, put three 1/1 red Goblin creature tokens onto the battlefield.${1}{R}, Sacrifice a Goblin: Siege-Gang Commander deals 2 damage to any target.|
Akki Coalflinger|Duel Decks: Elves vs. Goblins|33|U|{1}{R}{R}|Creature - Goblin Shaman|2|2|First strike${R}, {tap}: Attacking creatures gain first strike until end of turn.|
Clickslither|Duel Decks: Elves vs. Goblins|34|R|{1}{R}{R}{R}|Creature - Insect|3|3|Haste$Sacrifice a Goblin: Clickslither gets +2/+2 and gains trample until end of turn.|
Emberwilde Augur|Duel Decks: Elves vs. Goblins|35|C|{1}{R}|Creature - Goblin Shaman|2|1|Sacrifice Emberwilde Augur: Emberwilde Augur deals 3 damage to target player. Activate this ability only during your upkeep.|
@@ -5078,14 +5078,14 @@ Flamewave Invoker|Duel Decks: Elves vs. Goblins|36|U|{2}{R}|Creature - Goblin Mu
Gempalm Incinerator|Duel Decks: Elves vs. Goblins|37|U|{2}{R}|Creature - Goblin|2|1|Cycling {1}{R} ({1}{R}, Discard this card: Draw a card.)$When you cycle Gempalm Incinerator, you may have it deal X damage to target creature, where X is the number of Goblins on the battlefield.|
Goblin Cohort|Duel Decks: Elves vs. Goblins|38|C|{R}|Creature - Goblin Warrior|2|2|Goblin Cohort can't attack unless you've cast a creature spell this turn.|
Goblin Matron|Duel Decks: Elves vs. Goblins|39|U|{2}{R}|Creature - Goblin|1|1|When Goblin Matron enters the battlefield, you may search your library for a Goblin card, reveal that card, and put it into your hand. If you do, shuffle your library.|
-Elvish Harbinger|Duel Decks: Elves vs. Goblins|4|U|{2}{G}|Creature - Elf Druid|1|2|When Elvish Harbinger enters the battlefield, you may search your library for an Elf card, reveal it, then shuffle your library and put that card on top of it.${tap}: Add one mana of any color to your mana pool.|
+Elvish Harbinger|Duel Decks: Elves vs. Goblins|4|U|{2}{G}|Creature - Elf Druid|1|2|When Elvish Harbinger enters the battlefield, you may search your library for an Elf card, reveal it, then shuffle your library and put that card on top of it.${tap}: Add one mana of any color.|
Goblin Ringleader|Duel Decks: Elves vs. Goblins|40|U|{3}{R}|Creature - Goblin|2|2|Haste$When Goblin Ringleader enters the battlefield, reveal the top four cards of your library. Put all Goblin cards revealed this way into your hand and the rest on the bottom of your library in any order.|
Goblin Sledder|Duel Decks: Elves vs. Goblins|41|C|{R}|Creature - Goblin|1|1|Sacrifice a Goblin: Target creature gets +1/+1 until end of turn.|
Goblin Warchief|Duel Decks: Elves vs. Goblins|42|U|{1}{R}{R}|Creature - Goblin|2|2|Goblin spells you cast cost {1} less to cast.$Goblin creatures you control have haste.|
Ib Halfheart, Goblin Tactician|Duel Decks: Elves vs. Goblins|43|R|{3}{R}|Legendary Creature - Goblin Advisor|3|2|Whenever another Goblin you control becomes blocked, sacrifice it. If you do, it deals 4 damage to each creature blocking it.$Sacrifice two Mountains: Put two 1/1 red Goblin creature tokens onto the battlefield.|
-Mogg Fanatic|Duel Decks: Elves vs. Goblins|44|U|{R}|Creature - Goblin|1|1|Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to target creature or player.|
+Mogg Fanatic|Duel Decks: Elves vs. Goblins|44|U|{R}|Creature - Goblin|1|1|Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to any target.|
Mogg War Marshal|Duel Decks: Elves vs. Goblins|45|C|{1}{R}|Creature - Goblin Warrior|1|1|Echo {1}{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 Mogg War Marshal enters the battlefield or dies, put a 1/1 red Goblin creature token onto the battlefield.|
-Mudbutton Torchrunner|Duel Decks: Elves vs. Goblins|46|C|{2}{R}|Creature - Goblin Warrior|1|1|When Mudbutton Torchrunner dies, it deals 3 damage to target creature or player.|
+Mudbutton Torchrunner|Duel Decks: Elves vs. Goblins|46|C|{2}{R}|Creature - Goblin Warrior|1|1|When Mudbutton Torchrunner dies, it deals 3 damage to any target.|
Raging Goblin|Duel Decks: Elves vs. Goblins|47|C|{R}|Creature - Goblin Berserker|1|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)|
Reckless One|Duel Decks: Elves vs. Goblins|48|U|{3}{R}|Creature - Goblin Avatar|*|*|Haste$Reckless One's power and toughness are each equal to the number of Goblins on the battlefield.|
Skirk Drill Sergeant|Duel Decks: Elves vs. Goblins|49|U|{1}{R}|Creature - Goblin|2|1|Whenever Skirk Drill Sergeant or another Goblin dies, you may pay {2}{R}. If you do, reveal the top card of your library. If it's a Goblin permanent card, put it onto the battlefield. Otherwise, put it into your graveyard.|
@@ -5093,10 +5093,10 @@ Elvish Warrior|Duel Decks: Elves vs. Goblins|5|C|{G}{G}|Creature - Elf Warrior|2
Skirk Fire Marshal|Duel Decks: Elves vs. Goblins|50|R|{3}{R}{R}|Creature - Goblin|2|2|Protection from red$Tap five untapped Goblins you control: Skirk Fire Marshal deals 10 damage to each creature and each player.|
Skirk Prospector|Duel Decks: Elves vs. Goblins|51|C|{R}|Creature - Goblin|1|1|Sacrifice a Goblin: Add {R}.|
Skirk Shaman|Duel Decks: Elves vs. Goblins|52|C|{1}{R}{R}|Creature - Goblin Shaman|2|2|Skirk Shaman can't be blocked except by artifact creatures and/or red creatures.|
-Tar Pitcher|Duel Decks: Elves vs. Goblins|53|U|{3}{R}|Creature - Goblin Shaman|2|2|{tap}, Sacrifice a Goblin: Tar Pitcher deals 2 damage to target creature or player.|
+Tar Pitcher|Duel Decks: Elves vs. Goblins|53|U|{3}{R}|Creature - Goblin Shaman|2|2|{tap}, Sacrifice a Goblin: Tar Pitcher deals 2 damage to any target.|
Boggart Shenanigans|Duel Decks: Elves vs. Goblins|54|U|{2}{R}|Tribal Enchantment - Goblin|||Whenever another Goblin you control dies, you may have Boggart Shenanigans deal 1 damage to target player.|
Spitting Earth|Duel Decks: Elves vs. Goblins|55|C|{1}{R}|Sorcery|||Spitting Earth deals damage to target creature equal to the number of Mountains you control.|
-Tarfire|Duel Decks: Elves vs. Goblins|56|C|{R}|Tribal Instant - Goblin|||Tarfire deals 2 damage to target creature or player.|
+Tarfire|Duel Decks: Elves vs. Goblins|56|C|{R}|Tribal Instant - Goblin|||Tarfire deals 2 damage to any target.|
Forgotten Cave|Duel Decks: Elves vs. Goblins|57|C||Land|||Forgotten Cave enters the battlefield tapped.${tap}: Add {R}.$Cycling {R} ({R}, Discard this card: Draw a card.)|
Goblin Burrows|Duel Decks: Elves vs. Goblins|58|U||Land|||{tap}: Add {C}.${1}{R}, {tap}: Target Goblin creature gets +2/+0 until end of turn.|
Mountain|Duel Decks: Elves vs. Goblins|59|L||Basic Land - Mountain|||R|
@@ -5159,7 +5159,7 @@ Snuff Out|Duel Decks: Garruk vs. Liliana|53|C|{3}{B}|Instant|||If you control a
Tendrils of Corruption|Duel Decks: Garruk vs. Liliana|54|C|{3}{B}|Instant|||Tendrils of Corruption deals X damage to target creature and you gain X life, where X is the number of Swamps you control.|
Mutilate|Duel Decks: Garruk vs. Liliana|55|R|{2}{B}{B}|Sorcery|||All creatures get -1/-1 until end of turn for each Swamp you control.|
Rise from the Grave|Duel Decks: Garruk vs. Liliana|56|U|{4}{B}|Sorcery|||Put target creature card from a graveyard onto the battlefield under your control. That creature is a black Zombie in addition to its other colors and types.|
-Corrupt|Duel Decks: Garruk vs. Liliana|57|U|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to target creature or player. You gain life equal to the damage dealt this way.|
+Corrupt|Duel Decks: Garruk vs. Liliana|57|U|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to any target. You gain life equal to the damage dealt this way.|
Enslave|Duel Decks: Garruk vs. Liliana|58|U|{4}{B}{B}|Enchantment - Aura|||Enchant creature$You control enchanted creature.$At the beginning of your upkeep, enchanted creature deals 1 damage to its owner.|
Polluted Mire|Duel Decks: Garruk vs. Liliana|59|C||Land|||Polluted Mire enters the battlefield tapped.${tap}: Add {B}.$Cycling {2} ({2}, Discard this card: Draw a card.)|
Wirewood Savage|Duel Decks: Garruk vs. Liliana|6|C|{2}{G}|Creature - Elf|2|2|Whenever a Beast enters the battlefield, you may draw a card.|
@@ -5177,15 +5177,15 @@ Armory Guard|Duel Decks: Heroes vs. Monsters|12|C|{3}{W}|Creature - Giant Soldie
Gustcloak Sentinel|Duel Decks: Heroes vs. Monsters|13|U|{2}{W}{W}|Creature - Human Soldier|3|3|Whenever Gustcloak Sentinel becomes blocked, you may untap it and remove it from combat.|
Dawnstrike Paladin|Duel Decks: Heroes vs. Monsters|14|C|{3}{W}{W}|Creature - Human Knight|2|4|Vigilance (Attacking doesn't cause this creature to tap.)$Lifelink (Damage dealt by this creature also causes you to gain that much life.)|
Nobilis of War|Duel Decks: Heroes vs. Monsters|15|R|{RW}{RW}{RW}{RW}{RW}|Creature - Spirit Avatar|3|4|Flying$Attacking creatures you control get +2/+0.|
-Kamahl, Pit Fighter|Duel Decks: Heroes vs. Monsters|16|R|{4}{R}{R}|Legendary Creature - Human Barbarian|6|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)${tap}: Kamahl, Pit Fighter deals 3 damage to target creature or player.|
+Kamahl, Pit Fighter|Duel Decks: Heroes vs. Monsters|16|R|{4}{R}{R}|Legendary Creature - Human Barbarian|6|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)${tap}: Kamahl, Pit Fighter deals 3 damage to any target.|
Condemn|Duel Decks: Heroes vs. Monsters|17|U|{W}|Instant|||Put target attacking creature on the bottom of its owner's library. Its controller gains life equal to its toughness.|
Daily Regimen|Duel Decks: Heroes vs. Monsters|18|U|{W}|Enchantment - Aura|||Enchant creature${1}{W}: Put a +1/+1 counter on enchanted creature.|
Pay No Heed|Duel Decks: Heroes vs. Monsters|19|C|{W}|Instant|||Prevent all damage a source of your choice would deal this turn.|
Somberwald Vigilante|Duel Decks: Heroes vs. Monsters|2|C|{R}|Creature - Human Warrior|1|1|Whenever Somberwald Vigilante becomes blocked by a creature, Somberwald Vigilante deals 1 damage to that creature.|
Righteousness|Duel Decks: Heroes vs. Monsters|20|U|{W}|Instant|||Target blocking creature gets +7/+7 until end of turn.|
Stand Firm|Duel Decks: Heroes vs. Monsters|21|C|{W}|Instant|||Target creature gets +1/+1 until end of turn.$Scry 2. (To scry 2, look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)|
-Magma Jet|Duel Decks: Heroes vs. Monsters|22|U|{1}{R}|Instant|||Magma Jet deals 2 damage to target creature or player. Scry 2. (Look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)|
-Ordeal of Purphoros|Duel Decks: Heroes vs. Monsters|23|U|{1}{R}|Enchantment - Aura|||Enchant creature$Whenever enchanted creature attacks, put a +1/+1 counter on it. Then if it has three or more +1/+1 counters on it, sacrifice Ordeal of Purphoros.$When you sacrifice Ordeal of Purphoros, it deals 3 damage to target creature or player.|
+Magma Jet|Duel Decks: Heroes vs. Monsters|22|U|{1}{R}|Instant|||Magma Jet deals 2 damage to any target. Scry 2. (Look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)|
+Ordeal of Purphoros|Duel Decks: Heroes vs. Monsters|23|U|{1}{R}|Enchantment - Aura|||Enchant creature$Whenever enchanted creature attacks, put a +1/+1 counter on it. Then if it has three or more +1/+1 counters on it, sacrifice Ordeal of Purphoros.$When you sacrifice Ordeal of Purphoros, it deals 3 damage to any target.|
Bonds of Faith|Duel Decks: Heroes vs. Monsters|24|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.|
Moment of Heroism|Duel Decks: Heroes vs. Monsters|25|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.)|
Undying Rage|Duel Decks: Heroes vs. Monsters|26|U|{2}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2 and can't block.$When Undying Rage is put into a graveyard from the battlefield, return Undying Rage to its owner's hand.|
@@ -5226,7 +5226,7 @@ Skarrgan Firebird|Duel Decks: Heroes vs. Monsters|57|R|{4}{R}{R}|Creature - Phoe
Valley Rannet|Duel Decks: Heroes vs. Monsters|58|C|{4}{R}{G}|Creature - Beast|6|3|Mountaincycling {2}, forestcycling {2} ({2}, Discard this card: Search your library for a Mountain or Forest card, reveal it, and put it into your hand. Then shuffle your library.)|
Krosan Tusker|Duel Decks: Heroes vs. Monsters|59|C|{5}{G}{G}|Creature - Boar Beast|6|5|Cycling {2}{G} ({2}{G}, Discard this card: Draw a card.)$When you cycle Krosan Tusker, you may search your library for a basic land card, reveal that card, put it into your hand, then shuffle your library.|
Thraben Valiant|Duel Decks: Heroes vs. Monsters|6|C|{1}{W}|Creature - Human Soldier|2|1|Vigilance|
-Skarrgan Skybreaker|Duel Decks: Heroes vs. Monsters|60|U|{4}{R}{R}{G}|Creature - Giant Shaman|3|3|Bloodthirst 3 (If an opponent was dealt damage this turn, this creature enters the battlefield with three +1/+1 counters on it.)${1}, Sacrifice Skarrgan Skybreaker: Skarrgan Skybreaker deals damage equal to its power to target creature or player.|
+Skarrgan Skybreaker|Duel Decks: Heroes vs. Monsters|60|U|{4}{R}{R}{G}|Creature - Giant Shaman|3|3|Bloodthirst 3 (If an opponent was dealt damage this turn, this creature enters the battlefield with three +1/+1 counters on it.)${1}, Sacrifice Skarrgan Skybreaker: Skarrgan Skybreaker deals damage equal to its power to any target.|
Shower of Sparks|Duel Decks: Heroes vs. Monsters|61|C|{R}|Instant|||Shower of Sparks deals 1 damage to target creature and 1 damage to target player.|
Prey Upon|Duel Decks: Heroes vs. Monsters|62|C|{G}|Sorcery|||Target creature you control fights target creature you don't control. (Each deals damage equal to its power to the other.)|
Pyroclasm|Duel Decks: Heroes vs. Monsters|63|U|{1}{R}|Sorcery|||Pyroclasm deals 2 damage to each creature.|
@@ -5234,7 +5234,7 @@ Regrowth|Duel Decks: Heroes vs. Monsters|64|U|{1}{G}|Sorcery|||Return target car
Terrifying Presence|Duel Decks: Heroes vs. Monsters|65|C|{1}{G}|Instant|||Prevent all combat damage that would be dealt by creatures other than target creature this turn.|
Destructive Revelry|Duel Decks: Heroes vs. Monsters|66|U|{R}{G}|Instant|||Destroy target artifact or enchantment. Destructive Revelry deals 2 damage to that permanent's controller.|
Dragon Blood|Duel Decks: Heroes vs. Monsters|67|U|{3}|Artifact|||{3}, {tap}: Put a +1/+1 counter on target creature.|
-Volt Charge|Duel Decks: Heroes vs. Monsters|68|C|{2}{R}|Instant|||Volt Charge deals 3 damage to target creature or player. Proliferate. (You choose any number of permanents and/or players with counters on them, then give each another counter of a kind already there.)|
+Volt Charge|Duel Decks: Heroes vs. Monsters|68|C|{2}{R}|Instant|||Volt Charge deals 3 damage to any target. Proliferate. (You choose any number of permanents and/or players with counters on them, then give each another counter of a kind already there.)|
Beast Within|Duel Decks: Heroes vs. Monsters|69|U|{2}{G}|Instant|||Destroy target permanent. Its controller puts a 3/3 green Beast creature token onto the battlefield.|
Stun Sniper|Duel Decks: Heroes vs. Monsters|7|U|{R}{W}|Creature - Human Archer|1|1|{1}, {tap}: Stun Sniper deals 1 damage to target creature. Tap that creature.|
Fires of Yavimaya|Duel Decks: Heroes vs. Monsters|70|U|{1}{R}{G}|Enchantment|||Creatures you control have haste.$Sacrifice Fires of Yavimaya: Target creature gets +2/+2 until end of turn.|
@@ -5251,7 +5251,7 @@ Truefire Paladin|Duel Decks: Heroes vs. Monsters|8|U|{R}{W}|Creature - Human Kni
Forest|Duel Decks: Heroes vs. Monsters|80|L||Basic Land - Forest|||G|
Forest|Duel Decks: Heroes vs. Monsters|81|L||Basic Land - Forest|||G|
Auramancer|Duel Decks: Heroes vs. Monsters|9|C|{2}{W}|Creature - Human Wizard|2|2|When Auramancer enters the battlefield, you may return target enchantment card from your graveyard to your hand.|
-Niv-Mizzet, the Firemind|Duel Decks: Izzet vs. Golgari|1|M|{2}{U}{U}{R}{R}|Legendary Creature - Dragon Wizard|4|4|Flying$Whenever you draw a card, Niv-Mizzet, the Firemind deals 1 damage to target creature or player.${tap}: Draw a card.|
+Niv-Mizzet, the Firemind|Duel Decks: Izzet vs. Golgari|1|M|{2}{U}{U}{R}{R}|Legendary Creature - Dragon Wizard|4|4|Flying$Whenever you draw a card, Niv-Mizzet, the Firemind deals 1 damage to any target.${tap}: Draw a card.|
Galvanoth|Duel Decks: Izzet vs. Golgari|10|R|{3}{R}{R}|Creature - Beast|3|3|At the beginning of your upkeep, you may look at the top card of your library. If it's an instant or sorcery card, you may cast it without paying its mana cost.|
Izzet Chronarch|Duel Decks: Izzet vs. Golgari|11|C|{3}{U}{R}|Creature - Human Wizard|2|2|When Izzet Chronarch enters the battlefield, return target instant or sorcery card from your graveyard to your hand.|
Djinn Illuminatus|Duel Decks: Izzet vs. Golgari|12|R|{5}{UR}{UR}|Creature - Djinn|3|5|({UR} can be paid with either {U} or {R}.)$Flying$Each instant and sorcery spell you cast has replicate. The replicate cost is equal to its mana cost. (When you cast it, copy it for each time you paid its replicate cost. You may choose new targets for the copies.)|
@@ -5263,19 +5263,19 @@ Izzet Signet|Duel Decks: Izzet vs. Golgari|17|C|{2}|Artifact|||{1}, {tap}: Add {
Call to Heel|Duel Decks: Izzet vs. Golgari|18|C|{1}{U}|Instant|||Return target creature to its owner's hand. Its controller draws a card.|
Train of Thought|Duel Decks: Izzet vs. Golgari|19|C|{1}{U}|Sorcery|||Replicate {1}{U} (When you cast this spell, copy it for each time you paid its replicate cost.)$Draw a card.|
Kiln Fiend|Duel Decks: Izzet vs. Golgari|2|C|{1}{R}|Creature - Elemental Beast|1|2|Whenever you cast an instant or sorcery spell, Kiln Fiend gets +3/+0 until end of turn.|
-Pyromatics|Duel Decks: Izzet vs. Golgari|20|C|{1}{R}|Instant|||Replicate {1}{R} (When you cast this spell, copy it for each time you paid its replicate cost. You may choose new targets for the copies.)$Pyromatics deals 1 damage to target creature or player.|
+Pyromatics|Duel Decks: Izzet vs. Golgari|20|C|{1}{R}|Instant|||Replicate {1}{R} (When you cast this spell, copy it for each time you paid its replicate cost. You may choose new targets for the copies.)$Pyromatics deals 1 damage to any target.|
Izzet Charm|Duel Decks: Izzet vs. Golgari|21|U|{U}{R}|Instant|||Choose one - Counter target noncreature spell unless its controller pays {2}; or Izzet Charm deals 2 damage to target creature; or draw two cards, then discard two cards.|
Reminisce|Duel Decks: Izzet vs. Golgari|22|U|{2}{U}|Sorcery|||Target player shuffles his or her graveyard into his or her library.|
Thunderheads|Duel Decks: Izzet vs. Golgari|23|U|{2}{U}|Instant|||Replicate {2}{U} (When you cast this spell, copy it for each time you paid its replicate cost.)$Put a 3/3 blue Weird creature token with defender and flying onto the battlefield. Exile it at the beginning of the next end step.|
Vacuumelt|Duel Decks: Izzet vs. Golgari|24|U|{2}{U}|Sorcery|||Replicate {2}{U} (When you cast this spell, copy it for each time you paid its replicate cost. You may choose new targets for the copies.)$Return target creature to its owner's hand.|
Dissipate|Duel Decks: Izzet vs. Golgari|25|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.|
Quicksilver Dagger|Duel Decks: Izzet vs. Golgari|26|C|{1}{U}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{tap}: This creature deals 1 damage to target player. You draw a card."|
-Prophetic Bolt|Duel Decks: Izzet vs. Golgari|27|R|{3}{U}{R}|Instant|||Prophetic Bolt deals 4 damage to target creature or player. Look at the top four cards of your library. Put one of those cards into your hand and the rest on the bottom of your library in any order.|
+Prophetic Bolt|Duel Decks: Izzet vs. Golgari|27|R|{3}{U}{R}|Instant|||Prophetic Bolt deals 4 damage to any target. Look at the top four cards of your library. Put one of those cards into your hand and the rest on the bottom of your library in any order.|
Overwhelming Intellect|Duel Decks: Izzet vs. Golgari|28|U|{4}{U}{U}|Instant|||Counter target creature spell. Draw cards equal to that spell's converted mana cost.|
-Sphinx-Bone Wand|Duel Decks: Izzet vs. Golgari|29|R|{7}|Artifact|||Whenever you cast an instant or sorcery spell, you may put a charge counter on Sphinx-Bone Wand. If you do, Sphinx-Bone Wand deals damage equal to the number of charge counters on it to target creature or player.|
+Sphinx-Bone Wand|Duel Decks: Izzet vs. Golgari|29|R|{7}|Artifact|||Whenever you cast an instant or sorcery spell, you may put a charge counter on Sphinx-Bone Wand. If you do, Sphinx-Bone Wand deals damage equal to the number of charge counters on it to any target.|
Goblin Electromancer|Duel Decks: Izzet vs. Golgari|3|C|{U}{R}|Creature - Goblin Wizard|2|2|Instant and sorcery spells you cast cost {1} less to cast.|
Street Spasm|Duel Decks: Izzet vs. Golgari|30|U|{X}{R}|Instant|||Street Spasm deals X damage to target creature without flying you don't control.$Overload {X}{X}{R}{R} (You may cast this spell for its overload cost. If you do, change its text by replacing all instances of "target" with "each.")|
-Invoke the Firemind|Duel Decks: Izzet vs. Golgari|31|R|{X}{U}{U}{R}|Sorcery|||Choose one - Draw X cards; or Invoke the Firemind deals X damage to target creature or player.|
+Invoke the Firemind|Duel Decks: Izzet vs. Golgari|31|R|{X}{U}{U}{R}|Sorcery|||Choose one - Draw X cards; or Invoke the Firemind deals X damage to any target.|
Ice|Duel Decks: Izzet vs. Golgari|32a|U|{1}{U}|Instant|||$Tap target permanent.$Draw a card.|
Fire|Duel Decks: Izzet vs. Golgari|32b|U|{1}{R}|Instant|||Fire deals 2 damage divided as you choose among one or two target creatures and/or players.$|
Forgotten Cave|Duel Decks: Izzet vs. Golgari|33|C||Land|||Forgotten Cave enters the battlefield tapped.${tap}: Add {R}.$Cycling {R} ({R}, Discard this card: Draw a card.)|
@@ -5296,7 +5296,7 @@ Plagued Rusalka|Duel Decks: Izzet vs. Golgari|46|U|{B}|Creature - Spirit|1|1|{B}
Elves of Deep Shadow|Duel Decks: Izzet vs. Golgari|47|C|{G}|Creature - Elf Druid|1|1|{tap}: Add {B}. Elves of Deep Shadow deals 1 damage to you.|
Golgari Thug|Duel Decks: Izzet vs. Golgari|48|U|{1}{B}|Creature - Human Warrior|1|1|When Golgari Thug dies, put target creature card from your graveyard on top of your library.$Dredge 4 (If you would draw a card, instead you may put exactly four cards from the top of your library into your graveyard. If you do, return this card from your graveyard to your hand. Otherwise, draw a card.)|
Ravenous Rats|Duel Decks: Izzet vs. Golgari|49|C|{1}{B}|Creature - Rat|1|1|When Ravenous Rats enters the battlefield, target opponent discards a card.|
-Gelectrode|Duel Decks: Izzet vs. Golgari|5|U|{1}{U}{R}|Creature - Weird|0|1|{tap}: Gelectrode deals 1 damage to target creature or player.$Whenever you cast an instant or sorcery spell, you may untap Gelectrode.|
+Gelectrode|Duel Decks: Izzet vs. Golgari|5|U|{1}{U}{R}|Creature - Weird|0|1|{tap}: Gelectrode deals 1 damage to any target.$Whenever you cast an instant or sorcery spell, you may untap Gelectrode.|
Reassembling Skeleton|Duel Decks: Izzet vs. Golgari|50|U|{1}{B}|Creature - Skeleton Warrior|1|1|{1}{B}: Return Reassembling Skeleton from your graveyard to the battlefield tapped.|
Boneyard Wurm|Duel Decks: Izzet vs. Golgari|51|U|{1}{G}|Creature - Wurm|*|*|Boneyard Wurm's power and toughness are each equal to the number of creature cards in your graveyard.|
Korozda Guildmage|Duel Decks: Izzet vs. Golgari|52|U|{B}{G}|Creature - Elf Shaman|2|2|{1}{B}{G}: Target creature gets +1/+1 and gains intimidate until end of turn.${2}{B}{G}, Sacrifice a nontoken creature: Put X 1/1 green Saproling creature tokens onto the battlefield, where X is the sacrificed creature's toughness.|
@@ -5318,7 +5318,7 @@ Golgari Signet|Duel Decks: Izzet vs. Golgari|66|C|{2}|Artifact|||{1}, {tap}: Add
Ghoul's Feast|Duel Decks: Izzet vs. Golgari|67|U|{1}{B}|Instant|||Target creature gets +X/+0 until end of turn, where X is the number of creature cards in your graveyard.|
Yoke of the Damned|Duel Decks: Izzet vs. Golgari|68|C|{1}{B}|Enchantment - Aura|||Enchant creature$When a creature dies, destroy enchanted creature.|
Life from the Loam|Duel Decks: Izzet vs. Golgari|69|R|{1}{G}|Sorcery|||Return up to three target land cards from your graveyard to your hand.$Dredge 3 (If you would draw a card, instead you may put exactly three cards from the top of your library into your graveyard. If you do, return this card from your graveyard to your hand. Otherwise, draw a card.)|
-Steamcore Weird|Duel Decks: Izzet vs. Golgari|7|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.|
+Steamcore Weird|Duel Decks: Izzet vs. Golgari|7|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 any target.|
Golgari Germination|Duel Decks: Izzet vs. Golgari|70|U|{1}{B}{G}|Enchantment|||Whenever a nontoken creature you control dies, put a 1/1 green Saproling creature token onto the battlefield.|
Putrefy|Duel Decks: Izzet vs. Golgari|71|U|{1}{B}{G}|Instant|||Destroy target artifact or creature. It can't be regenerated.|
Feast or Famine|Duel Decks: Izzet vs. Golgari|72|C|{3}{B}|Instant|||Choose one - Put a 2/2 black Zombie creature token onto the battlefield; or destroy target nonartifact, nonblack creature and it can't be regenerated.|
@@ -5344,7 +5344,7 @@ Forest|Duel Decks: Izzet vs. Golgari|89|L||Basic Land - Forest|||G|
Ogre Savant|Duel Decks: Izzet vs. Golgari|9|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.|
Forest|Duel Decks: Izzet vs. Golgari|90|L||Basic Land - Forest|||G|
Jace Beleren|Duel Decks: Jace vs. Chandra|1|M|{1}{U}{U}|Legendary Planeswalker - Jace|||+2: Each player draws a card.$-1: Target player draws a card.$-10: Target player puts the top twenty cards of his or her library into his or her graveyard.|
-Fledgling Mawcor|Duel Decks: Jace vs. Chandra|10|U|{3}{U}|Creature - Beast|2|2|Flying${tap}: Fledgling Mawcor deals 1 damage to target creature or player.$Morph {U}{U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
+Fledgling Mawcor|Duel Decks: Jace vs. Chandra|10|U|{3}{U}|Creature - Beast|2|2|Flying${tap}: Fledgling Mawcor deals 1 damage to any target.$Morph {U}{U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
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.|
Mulldrifter|Duel Decks: Jace vs. Chandra|12|C|{4}{U}|Creature - Elemental|2|2|Flying$When Mulldrifter enters the battlefield, draw two cards.$Evoke {2}{U} (You may cast this spell for its evoke cost. If you do, it's sacrificed when it enters the battlefield.)|
Air Elemental|Duel Decks: Jace vs. Chandra|13|U|{3}{U}{U}|Creature - Elemental|4|4|Flying|
@@ -5372,7 +5372,7 @@ Island|Duel Decks: Jace vs. Chandra|32|L||Basic Land - Island|||U|
Island|Duel Decks: Jace vs. Chandra|33|L||Basic Land - Island|||U|
Chandra Nalaar|Duel Decks: Jace vs. Chandra|34|M|{3}{R}{R}|Legendary Planeswalker - Chandra|||+1: Chandra Nalaar deals 1 damage to target player.$-X: Chandra Nalaar deals X damage to target creature.$-8: Chandra Nalaar deals 10 damage to target player and each creature he or she controls.|
Flamekin Brawler|Duel Decks: Jace vs. Chandra|35|C|{R}|Creature - Elemental Warrior|0|2|{R}: Flamekin Brawler gets +1/+0 until end of turn.|
-Fireslinger|Duel Decks: Jace vs. Chandra|36|C|{1}{R}|Creature - Human Wizard|1|1|{tap}: Fireslinger deals 1 damage to target creature or player and 1 damage to you.|
+Fireslinger|Duel Decks: Jace vs. Chandra|36|C|{1}{R}|Creature - Human Wizard|1|1|{tap}: Fireslinger deals 1 damage to any target and 1 damage to you.|
Soulbright Flamekin|Duel Decks: Jace vs. Chandra|37|C|{1}{R}|Creature - Elemental Shaman|2|1|{2}: Target creature gains trample until end of turn. If this is the third time this ability has resolved this turn, you may add {R}{R}{R}{R}{R}{R}{R}{R}.|
Pyre Charger|Duel Decks: Jace vs. Chandra|38|U|{R}{R}|Creature - Elemental Warrior|1|1|Haste${R}: Pyre Charger gets +1/+0 until end of turn.|
Slith Firewalker|Duel Decks: Jace vs. Chandra|39|U|{R}{R}|Creature - Slith|1|1|Haste$Whenever Slith Firewalker deals combat damage to a player, put a +1/+1 counter on it.|
@@ -5386,17 +5386,17 @@ Ingot Chewer|Duel Decks: Jace vs. Chandra|45|C|{4}{R}|Creature - Elemental|3|3|W
Oxidda Golem|Duel Decks: Jace vs. Chandra|46|C|{6}|Artifact Creature - Golem|3|2|Affinity for Mountains (This spell costs {1} less to cast for each Mountain you control.)$Haste|
Chartooth Cougar|Duel Decks: Jace vs. Chandra|47|C|{5}{R}|Creature - Cat Beast|4|4|{R}: Chartooth Cougar gets +1/+0 until end of turn.$Mountaincycling {2} ({2}, Discard this card: Search your library for a Mountain card, reveal it, and put it into your hand. Then shuffle your library.)|
Hostility|Duel Decks: Jace vs. Chandra|48|R|{3}{R}{R}{R}|Creature - Elemental Incarnation|6|6|Haste$If a spell you control would deal damage to an opponent, prevent that damage. Put a 3/1 red Elemental Shaman creature token with haste onto the battlefield for each 1 damage prevented this way.$When Hostility is put into a graveyard from anywhere, shuffle it into its owner's library.|
-Firebolt|Duel Decks: Jace vs. Chandra|49|C|{R}|Sorcery|||Firebolt deals 2 damage to target creature or player.$Flashback {4}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
+Firebolt|Duel Decks: Jace vs. Chandra|49|C|{R}|Sorcery|||Firebolt deals 2 damage to any target.$Flashback {4}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Wall of Deceit|Duel Decks: Jace vs. Chandra|5|U|{1}{U}|Creature - Wall|0|5|Defender (This creature can't attack.)${3}: Turn Wall of Deceit face down.$Morph {U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
-Seal of Fire|Duel Decks: Jace vs. Chandra|50|C|{R}|Enchantment|||Sacrifice Seal of Fire: Seal of Fire deals 2 damage to target creature or player.|
-Incinerate|Duel Decks: Jace vs. Chandra|51|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.|
-Magma Jet|Duel Decks: Jace vs. Chandra|52|U|{1}{R}|Instant|||Magma Jet deals 2 damage to target creature or player.$Scry 2. (To scry 2, look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)|
-Flame Javelin|Duel Decks: Jace vs. Chandra|53|U|{2R}{2R}{2R}|Instant|||({2R} can be paid with any two mana or with {R}. This card's converted mana cost is 6.)$Flame Javelin deals 4 damage to target creature or player.|
-Cone of Flame|Duel Decks: Jace vs. Chandra|54|U|{3}{R}{R}|Sorcery|||Cone of Flame deals 1 damage to target creature or player, 2 damage to another target creature or player, and 3 damage to a third target creature or player.|
-Fireblast|Duel Decks: Jace vs. Chandra|55|C|{4}{R}{R}|Instant|||You may sacrifice two Mountains rather than pay Fireblast's mana cost.$Fireblast deals 4 damage to target creature or player.|
+Seal of Fire|Duel Decks: Jace vs. Chandra|50|C|{R}|Enchantment|||Sacrifice Seal of Fire: Seal of Fire deals 2 damage to any target.|
+Incinerate|Duel Decks: Jace vs. Chandra|51|C|{1}{R}|Instant|||Incinerate deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.|
+Magma Jet|Duel Decks: Jace vs. Chandra|52|U|{1}{R}|Instant|||Magma Jet deals 2 damage to any target.$Scry 2. (To scry 2, look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)|
+Flame Javelin|Duel Decks: Jace vs. Chandra|53|U|{2R}{2R}{2R}|Instant|||({2R} can be paid with any two mana or with {R}. This card's converted mana cost is 6.)$Flame Javelin deals 4 damage to any target.|
+Cone of Flame|Duel Decks: Jace vs. Chandra|54|U|{3}{R}{R}|Sorcery|||Cone of Flame deals 1 damage to any target, 2 damage to another any target, and 3 damage to a third any target.|
+Fireblast|Duel Decks: Jace vs. Chandra|55|C|{4}{R}{R}|Instant|||You may sacrifice two Mountains rather than pay Fireblast's mana cost.$Fireblast deals 4 damage to any target.|
Fireball|Duel Decks: Jace vs. Chandra|56|U|{X}{R}|Sorcery|||Fireball deals X damage divided evenly, rounded down, among any number of target creatures and/or players.$Fireball costs {1} more to cast for each target beyond the first.|
-Demonfire|Duel Decks: Jace vs. Chandra|57|R|{X}{R}|Sorcery|||Demonfire deals X damage to target creature or player. If a creature dealt damage this way would die this turn, exile it instead.$Hellbent - If you have no cards in hand, Demonfire can't be countered by spells or abilities and the damage can't be prevented.|
-Keldon Megaliths|Duel Decks: Jace vs. Chandra|58|U||Land|||Keldon Megaliths enters the battlefield tapped.${tap}: Add {R}.$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.|
+Demonfire|Duel Decks: Jace vs. Chandra|57|R|{X}{R}|Sorcery|||Demonfire deals X damage to any target. If a creature dealt damage this way would die this turn, exile it instead.$Hellbent - If you have no cards in hand, Demonfire can't be countered by spells or abilities and the damage can't be prevented.|
+Keldon Megaliths|Duel Decks: Jace vs. Chandra|58|U||Land|||Keldon Megaliths enters the battlefield tapped.${tap}: Add {R}.$Hellbent - {1}{R}, {tap}: Keldon Megaliths deals 1 damage to any target. Activate this ability only if you have no cards in hand.|
Mountain|Duel Decks: Jace vs. Chandra|59|L||Basic Land - Mountain|||R|
Willbender|Duel Decks: Jace vs. Chandra|6|U|{1}{U}|Creature - Human Wizard|1|2|Morph {1}{U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Willbender is turned face up, change the target of target spell or ability with a single target.|
Mountain|Duel Decks: Jace vs. Chandra|60|L||Basic Land - Mountain|||R|
@@ -5508,7 +5508,7 @@ Caravan Escort|Duel Decks: Knights vs. Dragons|2|C|{W}|Creature - Human Knight|1
Plover Knights|Duel Decks: Knights vs. Dragons|20|C|{3}{W}{W}|Creature - Kithkin Knight|3|3|Flying, first strike|
Juniper Order Ranger|Duel Decks: Knights vs. Dragons|21|U|{3}{G}{W}|Creature - Human Knight|2|4|Whenever another creature enters the battlefield under your control, put a +1/+1 counter on that creature and a +1/+1 counter on Juniper Order Ranger.|
Paladin of Prahv|Duel Decks: Knights vs. Dragons|22|U|{4}{W}{W}|Creature - Human Knight|3|4|Whenever Paladin of Prahv deals damage, you gain that much life.$Forecast - {1}{W}, Reveal Paladin of Prahv from your hand: Whenever target creature deals damage this turn, you gain that much life. (Activate this ability only during your upkeep and only once each turn.)|
-Harm's Way|Duel Decks: Knights vs. Dragons|23|U|{W}|Instant|||The next 2 damage that a source of your choice would deal to you and/or permanents you control this turn is dealt to target creature or player instead.|
+Harm's Way|Duel Decks: Knights vs. Dragons|23|U|{W}|Instant|||The next 2 damage that a source of your choice would deal to you and/or permanents you control this turn is dealt to any target instead.|
Reciprocate|Duel Decks: Knights vs. Dragons|24|U|{W}|Instant|||Exile target creature that dealt damage to you this turn.|
Edge of Autumn|Duel Decks: Knights vs. Dragons|25|C|{1}{G}|Sorcery|||If you control four or fewer lands, search your library for a basic land card, put it onto the battlefield tapped, then shuffle your library.$Cycling-Sacrifice a land. (Sacrifice a land, Discard this card: Draw a card.)|
Mighty Leap|Duel Decks: Knights vs. Dragons|26|C|{1}{W}|Instant|||Target creature gets +2/+2 and gains flying until end of turn.|
@@ -5540,32 +5540,32 @@ Skirk Prospector|Duel Decks: Knights vs. Dragons|49|C|{R}|Creature - Goblin|1|1|
Knight of Meadowgrain|Duel Decks: Knights vs. Dragons|5|U|{W}{W}|Creature - Kithkin Knight|2|2|First strike$Lifelink (Damage dealt by this creature also causes you to gain that much life.)|
Bloodmark Mentor|Duel Decks: Knights vs. Dragons|50|U|{1}{R}|Creature - Goblin Warrior|1|1|Red creatures you control have first strike.|
Fire-Belly Changeling|Duel Decks: Knights vs. Dragons|51|C|{1}{R}|Creature - Shapeshifter|1|1|Changeling (This card is every creature type at all times.)${R}: Fire-Belly Changeling gets +1/+0 until end of turn. Activate this ability no more than twice each turn.|
-Mudbutton Torchrunner|Duel Decks: Knights vs. Dragons|52|C|{2}{R}|Creature - Goblin Warrior|1|1|When Mudbutton Torchrunner dies, it deals 3 damage to target creature or player.|
+Mudbutton Torchrunner|Duel Decks: Knights vs. Dragons|52|C|{2}{R}|Creature - Goblin Warrior|1|1|When Mudbutton Torchrunner dies, it deals 3 damage to any target.|
Dragonspeaker Shaman|Duel Decks: Knights vs. Dragons|53|U|{1}{R}{R}|Creature - Human Barbarian Shaman|2|2|Dragon spells you cast cost {2} less to cast.|
Dragon Whelp|Duel Decks: Knights vs. Dragons|54|U|{2}{R}{R}|Creature - Dragon|2|3|Flying${R}: Dragon Whelp gets +1/+0 until end of turn. If this ability has been activated four or more times this turn, sacrifice Dragon Whelp at the beginning of the next end step.|
Henge Guardian|Duel Decks: Knights vs. Dragons|55|U|{5}|Artifact Creature - Dragon Wurm|3|4|{2}: Henge Guardian gains trample until end of turn.|
-Voracious Dragon|Duel Decks: Knights vs. Dragons|56|R|{3}{R}{R}|Creature - Dragon|4|4|Flying$Devour 1 (As this enters the battlefield, you may sacrifice any number of creatures. This creature enters the battlefield with that many +1/+1 counters on it.)$When Voracious Dragon enters the battlefield, it deals damage to target creature or player equal to twice the number of Goblins it devoured.|
+Voracious Dragon|Duel Decks: Knights vs. Dragons|56|R|{3}{R}{R}|Creature - Dragon|4|4|Flying$Devour 1 (As this enters the battlefield, you may sacrifice any number of creatures. This creature enters the battlefield with that many +1/+1 counters on it.)$When Voracious Dragon enters the battlefield, it deals damage to any target equal to twice the number of Goblins it devoured.|
Bogardan Rager|Duel Decks: Knights vs. Dragons|57|C|{5}{R}|Creature - Elemental|3|4|Flash (You may cast this spell any time you could cast an instant.)$When Bogardan Rager enters the battlefield, target creature gets +4/+0 until end of turn.|
Mordant Dragon|Duel Decks: Knights vs. Dragons|58|R|{3}{R}{R}{R}|Creature - Dragon|5|5|Flying${1}{R}: Mordant Dragon gets +1/+0 until end of turn.$Whenever Mordant Dragon deals combat damage to a player, you may have it deal that much damage to target creature that player controls.|
-Kilnmouth Dragon|Duel Decks: Knights vs. Dragons|59|R|{5}{R}{R}|Creature - Dragon|5|5|Amplify 3 (As this creature enters the battlefield, put three +1/+1 counters on it for each Dragon card you reveal in your hand.)$Flying${tap}: Kilnmouth Dragon deals damage equal to the number of +1/+1 counters on it to target creature or player.|
+Kilnmouth Dragon|Duel Decks: Knights vs. Dragons|59|R|{5}{R}{R}|Creature - Dragon|5|5|Amplify 3 (As this creature enters the battlefield, put three +1/+1 counters on it for each Dragon card you reveal in your hand.)$Flying${tap}: Kilnmouth Dragon deals damage equal to the number of +1/+1 counters on it to any target.|
Knight of the White Orchid|Duel Decks: Knights vs. Dragons|6|R|{W}{W}|Creature - Human Knight|2|2|First strike$When Knight of the White Orchid enters the battlefield, if an opponent controls more lands than you, you may search your library for a Plains card, put it onto the battlefield, then shuffle your library.|
-Shivan Hellkite|Duel Decks: Knights vs. Dragons|60|R|{5}{R}{R}|Creature - Dragon|5|5|Flying (This creature can't be blocked except by creatures with flying or reach.)${1}{R}: Shivan Hellkite deals 1 damage to target creature or player.|
+Shivan Hellkite|Duel Decks: Knights vs. Dragons|60|R|{5}{R}{R}|Creature - Dragon|5|5|Flying (This creature can't be blocked except by creatures with flying or reach.)${1}{R}: Shivan Hellkite deals 1 damage to any target.|
Thunder Dragon|Duel Decks: Knights vs. Dragons|61|R|{5}{R}{R}|Creature - Dragon|5|5|Flying$When Thunder Dragon enters the battlefield, it deals 3 damage to each creature without flying.|
Armillary Sphere|Duel Decks: Knights vs. Dragons|62|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.|
Dragon's Claw|Duel Decks: Knights vs. Dragons|63|U|{2}|Artifact|||Whenever a player casts a red spell, you may gain 1 life.|
Breath of Darigaaz|Duel Decks: Knights vs. Dragons|64|U|{1}{R}|Sorcery|||Kicker {2} (You may pay an additional {2} as you cast this spell.)$Breath of Darigaaz deals 1 damage to each creature without flying and each player. If Breath of Darigaaz was kicked, it deals 4 damage to each creature without flying and each player instead.|
Dragon Fodder|Duel Decks: Knights vs. Dragons|65|C|{1}{R}|Sorcery|||Put two 1/1 red Goblin creature tokens onto the battlefield.|
-Punishing Fire|Duel Decks: Knights vs. Dragons|66|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.|
+Punishing Fire|Duel Decks: Knights vs. Dragons|66|U|{1}{R}|Instant|||Punishing Fire deals 2 damage to any target.$Whenever an opponent gains life, you may pay {R}. If you do, return Punishing Fire from your graveyard to your hand.|
Spitting Earth|Duel Decks: Knights vs. Dragons|67|C|{1}{R}|Sorcery|||Spitting Earth deals damage to target creature equal to the number of Mountains you control.|
Captive Flame|Duel Decks: Knights vs. Dragons|68|U|{2}{R}|Enchantment|||{R}: Target creature gets +1/+0 until end of turn.|
-Ghostfire|Duel Decks: Knights vs. Dragons|69|C|{2}{R}|Instant|||Ghostfire is colorless.$Ghostfire deals 3 damage to target creature or player.|
+Ghostfire|Duel Decks: Knights vs. Dragons|69|C|{2}{R}|Instant|||Ghostfire is colorless.$Ghostfire deals 3 damage to any target.|
Leonin Skyhunter|Duel Decks: Knights vs. Dragons|7|U|{W}{W}|Creature - Cat Knight|2|2|Flying|
Seething Song|Duel Decks: Knights vs. Dragons|70|C|{2}{R}|Instant|||Add {R}{R}{R}{R}{R}.|
Seismic Strike|Duel Decks: Knights vs. Dragons|71|C|{2}{R}|Instant|||Seismic Strike deals damage to target creature equal to the number of Mountains you control.|
Claws of Valakut|Duel Decks: Knights vs. Dragons|72|C|{1}{R}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+0 for each Mountain you control and has first strike.|
Temporary Insanity|Duel Decks: Knights vs. Dragons|73|U|{3}{R}|Instant|||Untap target creature with power less than the number of cards in your graveyard and gain control of it until end of turn. That creature gains haste until end of turn.|
Shiv's Embrace|Duel Decks: Knights vs. Dragons|74|U|{2}{R}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2 and has flying.${R}: Enchanted creature gets +1/+0 until end of turn.|
-Cone of Flame|Duel Decks: Knights vs. Dragons|75|U|{3}{R}{R}|Sorcery|||Cone of Flame deals 1 damage to target creature or player, 2 damage to another target creature or player, and 3 damage to a third target creature or player.|
+Cone of Flame|Duel Decks: Knights vs. Dragons|75|U|{3}{R}{R}|Sorcery|||Cone of Flame deals 1 damage to any target, 2 damage to another any target, and 3 damage to a third any target.|
Fiery Fall|Duel Decks: Knights vs. Dragons|76|C|{5}{R}|Instant|||Fiery Fall deals 5 damage to target creature.$Basic landcycling {1}{R} ({1}{R}, Discard this card: Search your library for a basic land card, reveal it, and put it into your hand. Then shuffle your library.)|
Jaws of Stone|Duel Decks: Knights vs. Dragons|77|U|{5}{R}|Sorcery|||Jaws of Stone deals X damage divided as you choose among any number of target creatures and/or players, where X is the number of Mountains you control as you cast Jaws of Stone.|
Mountain|Duel Decks: Knights vs. Dragons|78|L||Basic Land - Mountain|||R|
@@ -5673,14 +5673,14 @@ Swamp|Duel Decks: Phyrexia vs. the Coalition|32|L||Basic Land - Swamp|||B|
Swamp|Duel Decks: Phyrexia vs. the Coalition|33|L||Basic Land - Swamp|||B|
Swamp|Duel Decks: Phyrexia vs. the Coalition|34|L||Basic Land - Swamp|||B|
Swamp|Duel Decks: Phyrexia vs. the Coalition|35|L||Basic Land - Swamp|||B|
-Urza's Rage|Duel Decks: Phyrexia vs. the Coalition|36|M|{2}{R}|Instant|||Kicker {8}{R} (You may pay an additional {8}{R} as you cast this spell.)$Urza's Rage can't be countered by spells or abilities.$Urza's Rage deals 3 damage to target creature or player. If Urza's Rage was kicked, instead it deals 10 damage to that creature or player and the damage can't be prevented.|
+Urza's Rage|Duel Decks: Phyrexia vs. the Coalition|36|M|{2}{R}|Instant|||Kicker {8}{R} (You may pay an additional {8}{R} as you cast this spell.)$Urza's Rage can't be countered by spells or abilities.$Urza's Rage deals 3 damage to any target. If Urza's Rage was kicked, instead it deals 10 damage to that creature or player and the damage can't be prevented.|
Thornscape Apprentice|Duel Decks: Phyrexia vs. the Coalition|37|C|{G}|Creature - Human Wizard|1|1|{R}, {tap}: Target creature gains first strike until end of turn.${W}, {tap}: Tap target creature.|
-Nomadic Elf|Duel Decks: Phyrexia vs. the Coalition|38|C|{1}{G}|Creature - Elf Nomad|2|2|{1}{G}: Add one mana of any color to your mana pool.|
-Quirion Elves|Duel Decks: Phyrexia vs. the Coalition|39|C|{1}{G}|Creature - Elf Druid|1|1|As Quirion Elves enters the battlefield, choose a color.${tap}: Add {G}.${tap}: Add one mana of the chosen color to your mana pool.|
+Nomadic Elf|Duel Decks: Phyrexia vs. the Coalition|38|C|{1}{G}|Creature - Elf Nomad|2|2|{1}{G}: Add one mana of any color.|
+Quirion Elves|Duel Decks: Phyrexia vs. the Coalition|39|C|{1}{G}|Creature - Elf Druid|1|1|As Quirion Elves enters the battlefield, choose a color.${tap}: Add {G}.${tap}: Add one mana of the chosen color.|
Phyrexian Denouncer|Duel Decks: Phyrexia vs. the Coalition|4|C|{1}{B}|Creature - Carrier|1|1|{tap}, Sacrifice Phyrexian Denouncer: Target creature gets -1/-1 until end of turn.|
Sunscape Battlemage|Duel Decks: Phyrexia vs. the Coalition|40|U|{2}{W}|Creature - Human Wizard|2|2|Kicker {1}{G} and/or {2}{U} (You may pay an additional {1}{G} and/or {2}{U} as you cast this spell.)$When Sunscape Battlemage enters the battlefield, if it was kicked with its {1}{G} kicker, destroy target creature with flying.$When Sunscape Battlemage enters the battlefield, if it was kicked with its {2}{U} kicker, draw two cards.|
Thunderscape Battlemage|Duel Decks: Phyrexia vs. the Coalition|41|U|{2}{R}|Creature - Human Wizard|2|2|Kicker {1}{B} and/or {G} (You may pay an additional {1}{B} and/or {G} as you cast this spell.)$When Thunderscape Battlemage enters the battlefield, if it was kicked with its {1}{B} kicker, target player discards two cards.$When Thunderscape Battlemage enters the battlefield, if it was kicked with its {G} kicker, destroy target enchantment.|
-Thornscape Battlemage|Duel Decks: Phyrexia vs. the Coalition|42|U|{2}{G}|Creature - Elf Wizard|2|2|Kicker {R} and/or {W} (You may pay an additional {R} and/or {W} as you cast this spell.)$When Thornscape Battlemage enters the battlefield, if it was kicked with its {R} kicker, it deals 2 damage to target creature or player.$When Thornscape Battlemage enters the battlefield, if it was kicked with its {W} kicker, destroy target artifact.|
+Thornscape Battlemage|Duel Decks: Phyrexia vs. the Coalition|42|U|{2}{G}|Creature - Elf Wizard|2|2|Kicker {R} and/or {W} (You may pay an additional {R} and/or {W} as you cast this spell.)$When Thornscape Battlemage enters the battlefield, if it was kicked with its {R} kicker, it deals 2 damage to any target.$When Thornscape Battlemage enters the battlefield, if it was kicked with its {W} kicker, destroy target artifact.|
Verduran Emissary|Duel Decks: Phyrexia vs. the Coalition|43|U|{2}{G}|Creature - Human Wizard|2|3|Kicker {1}{R} (You may pay an additional {1}{R} as you cast this spell.)$When Verduran Emissary enters the battlefield, if it was kicked, destroy target artifact. It can't be regenerated.|
Yavimaya Elder|Duel Decks: Phyrexia vs. the Coalition|44|C|{1}{G}{G}|Creature - Human Druid|2|1|When Yavimaya Elder dies, you may search your library for up to two basic land cards, reveal them, and put them into your hand. If you do, shuffle your library.${2}, Sacrifice Yavimaya Elder: Draw a card.|
Charging Troll|Duel Decks: Phyrexia vs. the Coalition|45|U|{2}{G}{W}|Creature - Troll|3|3|Vigilance${G}: Regenerate Charging Troll.|
@@ -5690,15 +5690,15 @@ Rith, the Awakener|Duel Decks: Phyrexia vs. the Coalition|48|R|{3}{R}{G}{W}|Lege
Treva, the Renewer|Duel Decks: Phyrexia vs. the Coalition|49|R|{3}{G}{W}{U}|Legendary Creature - Dragon|6|6|Flying$Whenever Treva, the Renewer deals combat damage to a player, you may pay {2}{W}. If you do, choose a color, then you gain 1 life for each permanent of that color.|
Bone Shredder|Duel Decks: Phyrexia vs. the Coalition|5|U|{2}{B}|Creature - Minion|1|1|Flying$Echo {2}{B} (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 Bone Shredder enters the battlefield, destroy target nonartifact, nonblack creature.|
Evasive Action|Duel Decks: Phyrexia vs. the Coalition|50|U|{1}{U}|Instant|||Domain - Counter target spell unless its controller pays {1} for each basic land type among lands you control.|
-Tribal Flames|Duel Decks: Phyrexia vs. the Coalition|51|C|{1}{R}|Sorcery|||Domain - Tribal Flames deals X damage to target creature or player, where X is the number of basic land types among lands you control.|
+Tribal Flames|Duel Decks: Phyrexia vs. the Coalition|51|C|{1}{R}|Sorcery|||Domain - Tribal Flames deals X damage to any target, where X is the number of basic land types among lands you control.|
Fertile Ground|Duel Decks: Phyrexia vs. the Coalition|52|C|{1}{G}|Enchantment - Aura|||Enchant land$Whenever enchanted land is tapped for mana, its controller adds one mana of any color to his or her mana pool (in addition to the mana the land produces).|
Gerrard's Command|Duel Decks: Phyrexia vs. the Coalition|53|C|{G}{W}|Instant|||Untap target creature. It gets +3/+3 until end of turn.|
-Coalition Relic|Duel Decks: Phyrexia vs. the Coalition|54|R|{3}|Artifact|||{tap}: Add one mana of any color to your mana pool.${tap}: Put a charge counter on Coalition Relic.$At the beginning of your precombat main phase, remove all charge counters from Coalition Relic. Add one mana of any color to your mana pool for each charge counter removed this way.|
+Coalition Relic|Duel Decks: Phyrexia vs. the Coalition|54|R|{3}|Artifact|||{tap}: Add one mana of any color.${tap}: Put a charge counter on Coalition Relic.$At the beginning of your precombat main phase, remove all charge counters from Coalition Relic. Add one mana of any color for each charge counter removed this way.|
Narrow Escape|Duel Decks: Phyrexia vs. the Coalition|55|C|{2}{W}|Instant|||Return target permanent you control to its owner's hand. You gain 4 life.|
Exotic Curse|Duel Decks: Phyrexia vs. the Coalition|56|C|{2}{B}|Enchantment - Aura|||Enchant creature$Domain - Enchanted creature gets -1/-1 for each basic land type among lands you control.|
Harrow|Duel Decks: Phyrexia vs. the Coalition|57|C|{2}{G}|Instant|||As an additional cost to cast Harrow, sacrifice a land.$Search your library for up to two basic land cards and put them onto the battlefield. Then shuffle your library.|
Armadillo Cloak|Duel Decks: Phyrexia vs. the Coalition|58|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.|
-Darigaaz's Charm|Duel Decks: Phyrexia vs. the Coalition|59|U|{B}{R}{G}|Instant|||Choose one - Return target creature card from your graveyard to your hand; or Darigaaz's Charm deals 3 damage to target creature or player; or target creature gets +3/+3 until end of turn.|
+Darigaaz's Charm|Duel Decks: Phyrexia vs. the Coalition|59|U|{B}{R}{G}|Instant|||Choose one - Return target creature card from your graveyard to your hand; or Darigaaz's Charm deals 3 damage to any target; or target creature gets +3/+3 until end of turn.|
Phyrexian Ghoul|Duel Decks: Phyrexia vs. the Coalition|6|C|{2}{B}|Creature - Zombie|2|2|Sacrifice a creature: Phyrexian Ghoul gets +2/+2 until end of turn.|
Rith's Charm|Duel Decks: Phyrexia vs. the Coalition|60|U|{R}{G}{W}|Instant|||Choose one - Destroy target nonbasic land; or put three 1/1 green Saproling creature tokens onto the battlefield; or prevent all damage a source of your choice would deal this turn.|
Treva's Charm|Duel Decks: Phyrexia vs. the Coalition|61|U|{G}{W}{U}|Instant|||Choose one - Destroy target enchantment; or exile target attacking creature; or draw a card, then discard a card.|
@@ -5740,7 +5740,7 @@ Mark of the Vampire|Duel Decks: Sorin vs. Tibalt|29|C|{3}{B}|Enchantment - Aura|
Vampire Lacerator|Duel Decks: Sorin vs. Tibalt|3|C|{B}|Creature - Vampire Warrior|2|2|At the beginning of your upkeep, you lose 1 life unless an opponent has 10 or less life.|
Field of Souls|Duel Decks: Sorin vs. Tibalt|30|R|{2}{W}{W}|Enchantment|||Whenever a nontoken creature is put into your graveyard from the battlefield, put a 1/1 white Spirit creature token with flying onto the battlefield.|
Absorb Vis|Duel Decks: Sorin vs. Tibalt|31|C|{6}{B}|Sorcery|||Target player loses 4 life and you gain 4 life.$Basic landcycling {1}{B} ({1}{B}, Discard this card: Search your library for a basic land card, reveal it, and put it into your hand. Then shuffle your library.)|
-Death Grasp|Duel Decks: Sorin vs. Tibalt|32|R|{X}{W}{B}|Sorcery|||Death Grasp deals X damage to target creature or player. You gain X life.|
+Death Grasp|Duel Decks: Sorin vs. Tibalt|32|R|{X}{W}{B}|Sorcery|||Death Grasp deals X damage to any target. You gain X life.|
Evolving Wilds|Duel Decks: Sorin vs. Tibalt|33|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.|
Tainted Field|Duel Decks: Sorin vs. Tibalt|34|U||Land|||{tap}: Add {C}.${tap}: Add {W} or {B}. Activate this ability only if you control a Swamp.|
Swamp|Duel Decks: Sorin vs. Tibalt|35|L||Basic Land - Swamp|||B|
@@ -5751,19 +5751,19 @@ Plains|Duel Decks: Sorin vs. Tibalt|39|L||Basic Land - Plains|||W|
Wall of Omens|Duel Decks: Sorin vs. Tibalt|4|U|{1}{W}|Creature - Wall|0|4|Defender$When Wall of Omens enters the battlefield, draw a card.|
Plains|Duel Decks: Sorin vs. Tibalt|40|L||Basic Land - Plains|||W|
Tibalt, the Fiend-Blooded|Duel Decks: Sorin vs. Tibalt|41|M|{R}{R}|Legendary Planeswalker - Tibalt|||+1: Draw a card, then discard a card at random.$?4: Tibalt, the Fiend-Blooded deals damage equal to the number of cards in target player's hand to that player.$?6: Gain control of all creatures until end of turn. Untap them. They gain haste until end of turn.|
-Goblin Arsonist|Duel Decks: Sorin vs. Tibalt|42|C|{R}|Creature - Goblin Shaman|1|1|When Goblin Arsonist dies, you may have it deal 1 damage to target creature or player.|
+Goblin Arsonist|Duel Decks: Sorin vs. Tibalt|42|C|{R}|Creature - Goblin Shaman|1|1|When Goblin Arsonist dies, you may have it deal 1 damage to any target.|
Scorched Rusalka|Duel Decks: Sorin vs. Tibalt|43|U|{R}|Creature - Spirit|1|1|{R}, Sacrifice a creature: Scorched Rusalka deals 1 damage to target player.|
Reassembling Skeleton|Duel Decks: Sorin vs. Tibalt|44|U|{1}{B}|Creature - Skeleton Warrior|1|1|{1}{B}: Return Reassembling Skeleton from your graveyard to the battlefield tapped.|
Ashmouth Hound|Duel Decks: Sorin vs. Tibalt|45|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.|
Hellspark Elemental|Duel Decks: Sorin vs. Tibalt|46|U|{1}{R}|Creature - Elemental|3|1|Trample, haste$At the beginning of the end step, sacrifice Hellspark Elemental.$Unearth {1}{R} ({1}{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.)|
-Vithian Stinger|Duel Decks: Sorin vs. Tibalt|47|C|{2}{R}|Creature - Human Shaman|0|1|{tap}: Vithian Stinger deals 1 damage to target creature or player.$Unearth {1}{R} ({1}{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.)|
+Vithian Stinger|Duel Decks: Sorin vs. Tibalt|47|C|{2}{R}|Creature - Human Shaman|0|1|{tap}: Vithian Stinger deals 1 damage to any target.$Unearth {1}{R} ({1}{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.)|
Shambling Remains|Duel Decks: Sorin vs. Tibalt|48|U|{1}{B}{R}|Creature - Zombie Horror|4|3|Shambling Remains can't block.$Unearth {B}{R} ({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.)|
Coal Stoker|Duel Decks: Sorin vs. Tibalt|49|C|{3}{R}|Creature - Elemental|3|3|When Coal Stoker enters the battlefield, if you cast it from your hand, add {R}{R}{R}.|
Child of Night|Duel Decks: Sorin vs. Tibalt|5|C|{1}{B}|Creature - Vampire|2|1|Lifelink (Damage dealt by this creature also causes you to gain that much life.)|
Lavaborn Muse|Duel Decks: Sorin vs. Tibalt|50|R|{3}{R}|Creature - Spirit|3|3|At the beginning of each opponent's upkeep, if that player has two or fewer cards in hand, Lavaborn Muse deals 3 damage to him or her.|
Mad Prophet|Duel Decks: Sorin vs. Tibalt|51|C|{3}{R}|Creature - Human Shaman|2|2|Haste${tap}, Discard a card: Draw a card.|
Hellrider|Duel Decks: Sorin vs. Tibalt|52|R|{2}{R}{R}|Creature - Devil|3|3|Haste$Whenever a creature you control attacks, Hellrider deals 1 damage to defending player.|
-Skirsdag Cultist|Duel Decks: Sorin vs. Tibalt|53|U|{2}{R}{R}|Creature - Human Shaman|2|2|{R}, {tap}, Sacrifice a creature: Skirsdag Cultist deals 2 damage to target creature or player.|
+Skirsdag Cultist|Duel Decks: Sorin vs. Tibalt|53|U|{2}{R}{R}|Creature - Human Shaman|2|2|{R}, {tap}, Sacrifice a creature: Skirsdag Cultist deals 2 damage to any target.|
Corpse Connoisseur|Duel Decks: Sorin vs. Tibalt|54|U|{4}{B}|Creature - Zombie Wizard|3|3|When Corpse Connoisseur enters the battlefield, you may search your library for a creature card and put that card into your graveyard. If you do, shuffle your library.$Unearth {3}{B} ({3}{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.)|
Scourge Devil|Duel Decks: Sorin vs. Tibalt|55|U|{4}{R}|Creature - Devil|3|3|When Scourge Devil enters the battlefield, creatures you control get +1/+0 until end of turn.$Unearth {2}{R} ({2}{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.)|
Gang of Devils|Duel Decks: Sorin vs. Tibalt|56|U|{5}{R}|Creature - Devil|3|3|When Gang of Devils dies, it deals 3 damage divided as you choose among one, two, or three target creatures and/or players.|
@@ -5772,7 +5772,7 @@ Blazing Salvo|Duel Decks: Sorin vs. Tibalt|58|C|{R}|Instant|||Blazing Salvo deal
Faithless Looting|Duel Decks: Sorin vs. Tibalt|59|C|{R}|Sorcery|||Draw two cards, then discard two cards.$Flashback {2}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Duskhunter Bat|Duel Decks: Sorin vs. Tibalt|6|C|{1}{B}|Creature - Bat|1|1|Bloodthirst 1 (If an opponent was dealt damage this turn, this creature enters the battlefield with a +1/+1 counter on it.)$Flying|
Flame Slash|Duel Decks: Sorin vs. Tibalt|60|C|{R}|Sorcery|||Flame Slash deals 4 damage to target creature.|
-Geistflame|Duel Decks: Sorin vs. Tibalt|61|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.)|
+Geistflame|Duel Decks: Sorin vs. Tibalt|61|C|{R}|Instant|||Geistflame deals 1 damage to any target.$Flashback {3}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Pyroclasm|Duel Decks: Sorin vs. Tibalt|62|U|{1}{R}|Sorcery|||Pyroclasm deals 2 damage to each creature.|
Recoup|Duel Decks: Sorin vs. Tibalt|63|U|{1}{R}|Sorcery|||Target sorcery card in your graveyard gains flashback until end of turn. The flashback cost is equal to its mana cost. (Mana cost includes color.)$Flashback {3}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Terminate|Duel Decks: Sorin vs. Tibalt|64|C|{B}{R}|Instant|||Destroy target creature. It can't be regenerated.|
@@ -5782,9 +5782,9 @@ Breaking Point|Duel Decks: Sorin vs. Tibalt|67|R|{1}{R}{R}|Sorcery|||Any player
Sulfuric Vortex|Duel Decks: Sorin vs. Tibalt|68|R|{1}{R}{R}|Enchantment|||At the beginning of each player's upkeep, Sulfuric Vortex deals 2 damage to that player.$If a player would gain life, that player gains no life instead.|
Blightning|Duel Decks: Sorin vs. Tibalt|69|C|{1}{B}{R}|Sorcery|||Blightning deals 3 damage to target player. That player discards two cards.|
Mesmeric Fiend|Duel Decks: Sorin vs. Tibalt|7|C|{1}{B}|Creature - Nightmare Horror|1|1|When Mesmeric Fiend enters the battlefield, target opponent reveals his or her hand and you choose a nonland card from it. Exile that card.$When Mesmeric Fiend leaves the battlefield, return the exiled card to its owner's hand.|
-Flame Javelin|Duel Decks: Sorin vs. Tibalt|70|U|{2R}{2R}{2R}|Instant|||({2R} can be paid with any two mana or with {R}. This card's converted mana cost is 6.)$Flame Javelin deals 4 damage to target creature or player.|
+Flame Javelin|Duel Decks: Sorin vs. Tibalt|70|U|{2R}{2R}{2R}|Instant|||({2R} can be paid with any two mana or with {R}. This card's converted mana cost is 6.)$Flame Javelin deals 4 damage to any target.|
Torrent of Souls|Duel Decks: Sorin vs. Tibalt|71|U|{4}{BR}|Sorcery|||Return up to one target creature card from your graveyard to the battlefield if {B} was spent to cast Torrent of Souls. Creatures target player controls get +2/+0 and gain haste until end of turn if {R} was spent to cast Torrent of Souls. (Do both if {B}{R} was spent.)|
-Devil's Play|Duel Decks: Sorin vs. Tibalt|72|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.)|
+Devil's Play|Duel Decks: Sorin vs. Tibalt|72|R|{X}{R}|Sorcery|||Devil's Play deals X damage to any target.$Flashback {X}{R}{R}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Akoum Refuge|Duel Decks: Sorin vs. Tibalt|73|U||Land|||Akoum Refuge enters the battlefield tapped.$When Akoum Refuge enters the battlefield, you gain 1 life.${tap}: Add {B} or {R}.|
Rakdos Carnarium|Duel Decks: Sorin vs. Tibalt|74|C||Land|||Rakdos Carnarium enters the battlefield tapped.$When Rakdos Carnarium enters the battlefield, return a land you control to its owner's hand.${tap}: Add {B}{R}.|
Mountain|Duel Decks: Sorin vs. Tibalt|75|L||Basic Land - Mountain|||R|
@@ -5799,7 +5799,7 @@ Zurgo Helmsmasher|Duel Decks: Speed vs. Cunning|1|M|{2}{R}{W}{B}|Legendary Creat
Hell's Thunder|Duel Decks: Speed vs. Cunning|10|R|{1}{R}{R}|Creature - Elemental|4|4|Flying, haste$At the beginning of the end step, sacrifice Hell's Thunder.$Unearth {4}{R} ({4}{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.)|
Kathari Bomber|Duel Decks: Speed vs. Cunning|11|C|{1}{B}{R}|Creature - Bird Shaman|2|2|Flying$When Kathari Bomber deals combat damage to a player, put two 1/1 red Goblin creature tokens onto the battlefield and sacrifice Kathari Bomber.$Unearth {3}{B}{R} ({3}{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.)|
Shambling Remains|Duel Decks: Speed vs. Cunning|12|U|{1}{B}{R}|Creature - Zombie Horror|4|3|Shambling Remains can't block.$Unearth {B}{R} ({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.)|
-Mardu Heart-Piercer|Duel Decks: Speed vs. Cunning|13|U|{3}{R}|Creature - Human Archer|2|3|Raid - When Mardu Heart-Piercer enters the battlefield, if you attacked with a creature this turn, Mardu Heart-Piercer deals 2 damage to target creature or player.|
+Mardu Heart-Piercer|Duel Decks: Speed vs. Cunning|13|U|{3}{R}|Creature - Human Archer|2|3|Raid - When Mardu Heart-Piercer enters the battlefield, if you attacked with a creature this turn, Mardu Heart-Piercer deals 2 damage to any target.|
Beetleback Chief|Duel Decks: Speed vs. Cunning|14|U|{2}{R}{R}|Creature - Goblin Warrior|2|2|When Beetleback Chief enters the battlefield, put two 1/1 red Goblin creature tokens onto the battlefield.|
Krenko, Mob Boss|Duel Decks: Speed vs. Cunning|15|R|{2}{R}{R}|Legendary Creature - Goblin Warrior|3|3|{tap}: Put X 1/1 red Goblin creature tokens onto the battlefield, where X is the number of Goblins you control.|
Ogre Battledriver|Duel Decks: Speed vs. Cunning|16|R|{2}{R}{R}|Creature - Ogre Warrior|3|3|Whenever another creature enters the battlefield under your control, that creature gets +2/+0 and gains haste until end of turn. (It can attack and {tap} this turn.)|
@@ -5807,19 +5807,19 @@ Flame-Kin Zealot|Duel Decks: Speed vs. Cunning|17|U|{1}{R}{R}{W}|Creature - Elem
Scourge Devil|Duel Decks: Speed vs. Cunning|18|U|{4}{R}|Creature - Devil|3|3|When Scourge Devil enters the battlefield, creatures you control get +1/+0 until end of turn.$Unearth {2}{R} ({2}{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.)|
Oni of Wild Places|Duel Decks: Speed vs. Cunning|19|U|{5}{R}|Creature - Demon Spirit|6|5|Haste$At the beginning of your upkeep, return a red creature you control to its owner's hand.|
Frenzied Goblin|Duel Decks: Speed vs. Cunning|2|U|{R}|Creature - Goblin Berserker|1|1|Whenever Frenzied Goblin attacks, you may pay {R}. If you do, target creature can't block this turn.|
-Reckless Abandon|Duel Decks: Speed vs. Cunning|20|C|{R}|Sorcery|||As an additional cost to cast Reckless Abandon, sacrifice a creature.$Reckless Abandon deals 4 damage to target creature or player.|
-Shock|Duel Decks: Speed vs. Cunning|21|C|{R}|Instant|||Shock deals 2 damage to target creature or player.|
+Reckless Abandon|Duel Decks: Speed vs. Cunning|20|C|{R}|Sorcery|||As an additional cost to cast Reckless Abandon, sacrifice a creature.$Reckless Abandon deals 4 damage to any target.|
+Shock|Duel Decks: Speed vs. Cunning|21|C|{R}|Instant|||Shock deals 2 damage to any target.|
Bone Splinters|Duel Decks: Speed vs. Cunning|22|C|{B}|Sorcery|||As an additional cost to cast Bone Splinters, sacrifice a creature.$Destroy target creature.|
-Arc Trail|Duel Decks: Speed vs. Cunning|23|U|{1}{R}|Sorcery|||Arc Trail deals 2 damage to target creature or player and 1 damage to another target creature or player.|
-Goblin Bombardment|Duel Decks: Speed vs. Cunning|24|U|{1}{R}|Enchantment|||Sacrifice a creature: Goblin Bombardment deals 1 damage to target creature or player.|
+Arc Trail|Duel Decks: Speed vs. Cunning|23|U|{1}{R}|Sorcery|||Arc Trail deals 2 damage to any target and 1 damage to another any target.|
+Goblin Bombardment|Duel Decks: Speed vs. Cunning|24|U|{1}{R}|Enchantment|||Sacrifice a creature: Goblin Bombardment deals 1 damage to any target.|
Krenko's Command|Duel Decks: Speed vs. Cunning|25|C|{1}{R}|Sorcery|||Put two 1/1 red Goblin creature tokens onto the battlefield.|
Act of Treason|Duel Decks: Speed vs. Cunning|26|C|{2}{R}|Sorcery|||Gain control of target creature until end of turn. Untap that creature. It gains haste until end of turn.|
Dauntless Onslaught|Duel Decks: Speed vs. Cunning|27|U|{2}{W}|Instant|||Up to two target creatures each get +2/+2 until end of turn.|
-Orcish Cannonade|Duel Decks: Speed vs. Cunning|28|C|{1}{R}{R}|Instant|||Orcish Cannonade deals 2 damage to target creature or player and 3 damage to you.$Draw a card.|
+Orcish Cannonade|Duel Decks: Speed vs. Cunning|28|C|{1}{R}{R}|Instant|||Orcish Cannonade deals 2 damage to any target and 3 damage to you.$Draw a card.|
Fiery Fall|Duel Decks: Speed vs. Cunning|29|C|{5}{R}|Instant|||Fiery Fall deals 5 damage to target creature.$Basic landcycling {1}{R} ({1}{R}, Discard this card: Search your library for a basic land card, reveal it, and put it into your hand. Then shuffle your library.)|
Infantry Veteran|Duel Decks: Speed vs. Cunning|3|C|{W}|Creature - Human Soldier|1|1|{tap}: Target attacking creature gets +1/+1 until end of turn.|
Fury of the Horde|Duel Decks: Speed vs. Cunning|30|R|{5}{R}{R}|Sorcery|||You may exile two red cards from your hand rather than pay Fury of the Horde's mana cost.$Untap all creatures that attacked this turn. After this main phase, there is an additional combat phase followed by an additional main phase.|
-Banefire|Duel Decks: Speed vs. Cunning|31|R|{X}{R}|Sorcery|||Banefire deals X damage to target creature or player.$If X is 5 or more, Banefire can't be countered by spells or abilities and the damage can't be prevented.|
+Banefire|Duel Decks: Speed vs. Cunning|31|R|{X}{R}|Sorcery|||Banefire deals X damage to any target.$If X is 5 or more, Banefire can't be countered by spells or abilities and the damage can't be prevented.|
Evolving Wilds|Duel Decks: Speed vs. Cunning|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.|
Ghitu Encampment|Duel Decks: Speed vs. Cunning|33|U||Land|||Ghitu Encampment enters the battlefield tapped.${tap}: Add {R}.${1}{R}: Ghitu Encampment becomes a 2/1 red Warrior creature with first strike until end of turn. It's still a land. (It deals combat damage before creatures without first strike.)|
Nomad Outpost|Duel Decks: Speed vs. Cunning|34|U||Land|||Nomad Outpost enters the battlefield tapped.${tap}: Add {R}, {W}, or {B}.|
@@ -5837,7 +5837,7 @@ Coral Trickster|Duel Decks: Speed vs. Cunning|44|C|{1}{U}|Creature - Merfolk Rog
Fathom Seer|Duel Decks: Speed vs. Cunning|45|C|{1}{U}|Creature - Illusion|1|3|Morph-Return two Islands you control to their owner's hand. (You may cast this card 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.|
Jeskai Elder|Duel Decks: Speed vs. Cunning|46|U|{1}{U}|Creature - Human Monk|1|2|Prowess (Whenever you cast a noncreature spell, this creature gets +1/+1 until end of turn.)$Whenever Jeskai Elder deals combat damage to a player, you may draw a card. If you do, discard a card.|
Willbender|Duel Decks: Speed vs. Cunning|47|U|{1}{U}|Creature - Human Wizard|1|2|Morph {1}{U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Willbender is turned face up, change the target of target spell or ability with a single target.|
-Sparkmage Apprentice|Duel Decks: Speed vs. Cunning|48|C|{1}{R}|Creature - Human Wizard|1|1|When Sparkmage Apprentice enters the battlefield, it deals 1 damage to target creature or player.|
+Sparkmage Apprentice|Duel Decks: Speed vs. Cunning|48|C|{1}{R}|Creature - Human Wizard|1|1|When Sparkmage Apprentice enters the battlefield, it deals 1 damage to any target.|
Lone Missionary|Duel Decks: Speed vs. Cunning|49|C|{1}{W}|Creature - Kor Monk|2|1|When Lone Missionary enters the battlefield, you gain 4 life.|
Dregscape Zombie|Duel Decks: Speed vs. Cunning|5|C|{1}{B}|Creature - Zombie|2|1|Unearth {B} ({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.)|
Master Decoy|Duel Decks: Speed vs. Cunning|50|C|{1}{W}|Creature - Human Soldier|1|2|{W}, {tap}: Tap target creature.|
@@ -5856,7 +5856,7 @@ Stave Off|Duel Decks: Speed vs. Cunning|61|C|{W}|Instant|||Target creature gains
Swift Justice|Duel Decks: Speed vs. Cunning|62|C|{W}|Instant|||Until end of turn, target creature gets +1/+0 and gains first strike and lifelink.|
Impulse|Duel Decks: Speed vs. Cunning|63|C|{1}{U}|Instant|||Look at the top four cards of your library. Put one of them into your hand and the rest on the bottom of your library in any order.|
Mana Leak|Duel Decks: Speed vs. Cunning|64|C|{1}{U}|Instant|||Counter target spell unless its controller pays {3}.|
-Lightning Helix|Duel Decks: Speed vs. Cunning|65|U|{R}{W}|Instant|||Lightning Helix deals 3 damage to target creature or player and you gain 3 life.|
+Lightning Helix|Duel Decks: Speed vs. Cunning|65|U|{R}{W}|Instant|||Lightning Helix deals 3 damage to any target and you gain 3 life.|
Hold the Line|Duel Decks: Speed vs. Cunning|66|R|{1}{W}{W}|Instant|||Blocking creatures get +7/+7 until end of turn.|
Inferno Trap|Duel Decks: Speed vs. Cunning|67|U|{3}{R}|Instant - Trap|||If you've been dealt damage by two or more creatures this turn, you may pay {R} rather than pay Inferno Trap's mana cost.$Inferno Trap deals 4 damage to target creature.|
Steam Augury|Duel Decks: Speed vs. Cunning|68|R|{2}{U}{R}|Instant|||Reveal the top five cards of your library and separate them into two piles. An opponent chooses one of those piles. Put that pile into your hand and the other into your graveyard.|
@@ -5914,14 +5914,14 @@ Plains|Duel Decks: Venser vs. Koth|40|L||Basic Land - Plains|||W|
Island|Duel Decks: Venser vs. Koth|41|L||Basic Land - Island|||U|
Island|Duel Decks: Venser vs. Koth|42|L||Basic Land - Island|||U|
Island|Duel Decks: Venser vs. Koth|43|L||Basic Land - Island|||U|
-Koth of the Hammer|Duel Decks: Venser vs. Koth|44|M|{2}{R}{R}|Legendary Planeswalker - Koth|||+1: Untap target Mountain. It becomes a 4/4 red Elemental creature until end of turn. It's still a land.$-2: Add {R} for each Mountain you control.$-5: You get an emblem with "Mountains you control have {tap}: This land deals 1 damage to target creature or player.'"|
+Koth of the Hammer|Duel Decks: Venser vs. Koth|44|M|{2}{R}{R}|Legendary Planeswalker - Koth|||+1: Untap target Mountain. It becomes a 4/4 red Elemental creature until end of turn. It's still a land.$-2: Add {R} for each Mountain you control.$-5: You get an emblem with "Mountains you control have {tap}: This land deals 1 damage to any target.'"|
Plated Geopede|Duel Decks: Venser vs. Koth|45|C|{1}{R}|Creature - Insect|1|1|First strike$Landfall - Whenever a land enters the battlefield under your control, Plated Geopede gets +2/+2 until end of turn.|
Pygmy Pyrosaur|Duel Decks: Venser vs. Koth|46|C|{1}{R}|Creature - Lizard|1|1|Pygmy Pyrosaur can't block.$${R}: Pygmy Pyrosaur gets +1/+0 until end of turn.|
Pilgrim's Eye|Duel Decks: Venser vs. Koth|47|C|{3}|Artifact Creature - Thopter|1|1|Flying$When Pilgrim's Eye enters the battlefield, you may search your library for a basic land card, reveal it, put it into your hand, then shuffle your library.|
AEther Membrane|Duel Decks: Venser vs. Koth|48|U|{1}{R}{R}|Creature - Wall|0|5|Defender; reach (This creature can block creatures with flying.)$Whenever Æther Membrane blocks a creature, return that creature to its owner's hand at end of combat.|
Fiery Hellhound|Duel Decks: Venser vs. Koth|49|C|{1}{R}{R}|Creature - Elemental Hound|2|2|{R}: Fiery Hellhound gets +1/+0 until end of turn.|
Minamo Sightbender|Duel Decks: Venser vs. Koth|5|U|{1}{U}|Creature - Human Wizard|1|2|{X}, {tap}: Target creature with power X or less is unblockable this turn.|
-Vulshok Sorcerer|Duel Decks: Venser vs. Koth|50|C|{1}{R}{R}|Creature - Human Shaman|1|1|Haste${tap}: Vulshok Sorcerer deals 1 damage to target creature or player.|
+Vulshok Sorcerer|Duel Decks: Venser vs. Koth|50|C|{1}{R}{R}|Creature - Human Shaman|1|1|Haste${tap}: Vulshok Sorcerer deals 1 damage to any target.|
Anger|Duel Decks: Venser vs. Koth|51|U|{3}{R}|Creature - Incarnation|2|2|Haste$As long as Anger is in your graveyard and you control a Mountain, creatures you control have haste.|
Cosi's Ravager|Duel Decks: Venser vs. Koth|52|C|{3}{R}|Creature - Elemental|2|2|Landfall - Whenever a land enters the battlefield under your control, you may have Cosi's Ravager deal 1 damage to target player.|
Vulshok Berserker|Duel Decks: Venser vs. Koth|53|C|{3}{R}|Creature - Human Berserker|3|2|Haste (This creature can attack and {tap} as soon as it comes under your control.)|
@@ -5944,7 +5944,7 @@ Vulshok Battlegear|Duel Decks: Venser vs. Koth|68|U|{3}|Artifact - Equipment|||E
Downhill Charge|Duel Decks: Venser vs. Koth|69|C|{2}{R}|Instant|||You may sacrifice a Mountain rather than pay Downhill Charge's mana cost.$$Target creature gets +X/+0 until end of turn, where X is the number of Mountains you control.|
Scroll Thief|Duel Decks: Venser vs. Koth|7|C|{2}{U}|Creature - Merfolk Rogue|1|3|Whenever Scroll Thief deals combat damage to a player, draw a card.|
Seismic Strike|Duel Decks: Venser vs. Koth|70|C|{2}{R}|Instant|||Seismic Strike deals damage to target creature equal to the number of Mountains you control.|
-Spire Barrage|Duel Decks: Venser vs. Koth|71|C|{4}{R}|Sorcery|||Spire Barrage deals damage to target creature or player equal to the number of Mountains you control.|
+Spire Barrage|Duel Decks: Venser vs. Koth|71|C|{4}{R}|Sorcery|||Spire Barrage deals damage to any target equal to the number of Mountains you control.|
Jaws of Stone|Duel Decks: Venser vs. Koth|72|U|{5}{R}|Sorcery|||Jaws of Stone deals X damage divided as you choose among any number of target creatures and/or players, where X is the number of Mountains you control as you cast Jaws of Stone.|
Volley of Boulders|Duel Decks: Venser vs. Koth|73|R|{8}{R}|Sorcery|||Volley of Boulders deals 6 damage divided as you choose among any number of target creatures and/or players.$Flashback {R}{R}{R}{R}{R}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Mountain|Duel Decks: Venser vs. Koth|74|L||Basic Land - Mountain|||R|
@@ -6038,11 +6038,11 @@ Vicious Hunger|Eighth Edition|171|C|{B}{B}|Sorcery|||Vicious Hunger deals 2 dama
Warped Devotion|Eighth Edition|172|R|{2}{B}|Enchantment|||Whenever a permanent is returned to a player's hand, that player discards a card.|
Western Paladin|Eighth Edition|173|R|{2}{B}{B}|Creature - Zombie Knight|3|3|{B}{B}, {tap}: Destroy target white creature.|
Zombify|Eighth Edition|174|U|{3}{B}|Sorcery|||Return target creature card from your graveyard to the battlefield.|
-Anaba Shaman|Eighth Edition|175|C|{3}{R}|Creature - Minotaur Shaman|2|2|{R}, {tap}: Anaba Shaman deals 1 damage to target creature or player.|
+Anaba Shaman|Eighth Edition|175|C|{3}{R}|Creature - Minotaur Shaman|2|2|{R}, {tap}: Anaba Shaman deals 1 damage to any target.|
Balduvian Barbarians|Eighth Edition|176|C|{1}{R}{R}|Creature - Human Barbarian|3|2||
-Blaze|Eighth Edition|177|U|{X}{R}|Sorcery|||Blaze deals X damage to target creature or player.|
+Blaze|Eighth Edition|177|U|{X}{R}|Sorcery|||Blaze deals X damage to any target.|
Blood Moon|Eighth Edition|178|R|{2}{R}|Enchantment|||Nonbasic lands are Mountains.|
-Bloodshot Cyclops|Eighth Edition|179|R|{5}{R}|Creature - Cyclops Giant|4|4|{tap}, Sacrifice a creature: Bloodshot Cyclops deals damage equal to the sacrificed creature's power to target creature or player.|
+Bloodshot Cyclops|Eighth Edition|179|R|{5}{R}|Creature - Cyclops Giant|4|4|{tap}, Sacrifice a creature: Bloodshot Cyclops deals damage equal to the sacrificed creature's power to any target.|
Elite Archers|Eighth Edition|18|R|{5}{W}|Creature - Human Soldier Archer|3|3|{tap}: Elite Archers deals 3 damage to target attacking or blocking creature.|
Boil|Eighth Edition|180|U|{3}{R}|Instant|||Destroy all Islands.|
Canyon Wildcat|Eighth Edition|181|C|{1}{R}|Creature - Cat|2|1|Mountainwalk|
@@ -6057,8 +6057,8 @@ Goblin Glider|Eighth Edition|189|U|{1}{R}|Creature - Goblin|1|1|Flying$Goblin Gl
Elite Javelineer|Eighth Edition|19|U|{2}{W}|Creature - Human Soldier|2|2|Whenever Elite Javelineer blocks, it deals 1 damage to target attacking creature.|
Goblin King|Eighth Edition|190|R|{1}{R}{R}|Creature - Goblin|2|2|Other Goblin creatures get +1/+1 and have mountainwalk. (They're unblockable as long as defending player controls a Mountain.)|
Goblin Raider|Eighth Edition|191|C|{1}{R}|Creature - Goblin Warrior|2|2|Goblin Raider can't block.|
-Guerrilla Tactics|Eighth Edition|192|U|{1}{R}|Instant|||Guerrilla Tactics deals 2 damage to target creature or player.$When a spell or ability an opponent controls causes you to discard Guerrilla Tactics, Guerrilla Tactics deals 4 damage to target creature or player.|
-Hammer of Bogardan|Eighth Edition|193|R|{1}{R}{R}|Sorcery|||Hammer of Bogardan deals 3 damage to target creature or player.${2}{R}{R}{R}: Return Hammer of Bogardan from your graveyard to your hand. Activate this ability only during your upkeep.|
+Guerrilla Tactics|Eighth Edition|192|U|{1}{R}|Instant|||Guerrilla Tactics deals 2 damage to any target.$When a spell or ability an opponent controls causes you to discard Guerrilla Tactics, Guerrilla Tactics deals 4 damage to any target.|
+Hammer of Bogardan|Eighth Edition|193|R|{1}{R}{R}|Sorcery|||Hammer of Bogardan deals 3 damage to any target.${2}{R}{R}{R}: Return Hammer of Bogardan from your graveyard to your hand. Activate this ability only during your upkeep.|
Hill Giant|Eighth Edition|194|C|{3}{R}|Creature - Giant|3|3||
Hulking Cyclops|Eighth Edition|195|U|{3}{R}{R}|Creature - Cyclops|5|5|Hulking Cyclops can't block.|
Inferno|Eighth Edition|196|R|{5}{R}{R}|Instant|||Inferno deals 6 damage to each creature and each player.|
@@ -6068,14 +6068,14 @@ Lesser Gargadon|Eighth Edition|199|U|{2}{R}{R}|Creature - Beast|6|4|Whenever Les
Angelic Page|Eighth Edition|2|C|{1}{W}|Creature - Angel Spirit|1|1|Flying${tap}: Target attacking or blocking creature gets +1/+1 until end of turn.|
Vengeance|Eighth Edition|2|U|{3}{W}|Sorcery|||Destroy target tapped creature.|
Glorious Anthem|Eighth Edition|20|R|{1}{W}{W}|Enchantment|||Creatures you control get +1/+1.|
-Lightning Blast|Eighth Edition|200|U|{3}{R}|Instant|||Lightning Blast deals 4 damage to target creature or player.|
+Lightning Blast|Eighth Edition|200|U|{3}{R}|Instant|||Lightning Blast deals 4 damage to any target.|
Lightning Elemental|Eighth Edition|201|C|{3}{R}|Creature - Elemental|4|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)|
Mana Clash|Eighth Edition|202|R|{R}|Sorcery|||You and target opponent each flip a coin. Mana Clash deals 1 damage to each player whose coin comes up tails. Repeat this process until both players' coins come up heads on the same flip.|
Mogg Sentry|Eighth Edition|203|R|{R}|Creature - Goblin Warrior|1|1|Whenever an opponent casts a spell, Mogg Sentry gets +2/+2 until end of turn.|
Obliterate|Eighth Edition|204|R|{6}{R}{R}|Sorcery|||Obliterate can't be countered.$Destroy all artifacts, creatures, and lands. They can't be regenerated.|
Ogre Taskmaster|Eighth Edition|205|U|{3}{R}|Creature - Ogre|4|3|Ogre Taskmaster can't block.|
Okk|Eighth Edition|206|R|{1}{R}|Creature - Goblin|4|4|Okk can't attack unless a creature with greater power also attacks.$Okk can't block unless a creature with greater power also blocks.|
-Orcish Artillery|Eighth Edition|207|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Artillery deals 2 damage to target creature or player and 3 damage to you.|
+Orcish Artillery|Eighth Edition|207|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Artillery deals 2 damage to any target and 3 damage to you.|
Orcish Spy|Eighth Edition|208|C|{R}|Creature - Orc Rogue|1|1|{tap}: Look at the top three cards of target player's library.|
Panic Attack|Eighth Edition|209|C|{2}{R}|Sorcery|||Up to three target creatures can't block this turn.|
Glory Seeker|Eighth Edition|21|C|{1}{W}|Creature - Human Soldier|2|2||
@@ -6087,13 +6087,13 @@ Relentless Assault|Eighth Edition|214|R|{2}{R}{R}|Sorcery|||Untap all creatures
Ridgeline Rager|Eighth Edition|215|C|{2}{R}|Creature - Beast|1|2|{R}: Ridgeline Rager gets +1/+0 until end of turn.|
Rukh Egg|Eighth Edition|216|R|{3}{R}|Creature - Bird|0|3|When Rukh Egg dies, put a 4/4 red Bird creature token with flying onto the battlefield at the beginning of the next end step.|
Sabretooth Tiger|Eighth Edition|217|C|{2}{R}|Creature - Cat|2|1|First strike|
-Searing Wind|Eighth Edition|218|R|{8}{R}|Instant|||Searing Wind deals 10 damage to target creature or player.|
-Seismic Assault|Eighth Edition|219|R|{R}{R}{R}|Enchantment|||Discard a land card: Seismic Assault deals 2 damage to target creature or player.|
-Healing Salve|Eighth Edition|22|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to target creature or player this turn.|
+Searing Wind|Eighth Edition|218|R|{8}{R}|Instant|||Searing Wind deals 10 damage to any target.|
+Seismic Assault|Eighth Edition|219|R|{R}{R}{R}|Enchantment|||Discard a land card: Seismic Assault deals 2 damage to any target.|
+Healing Salve|Eighth Edition|22|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to any target this turn.|
Shatter|Eighth Edition|220|C|{1}{R}|Instant|||Destroy target artifact.|
Shivan Dragon|Eighth Edition|221|R|{4}{R}{R}|Creature - Dragon|5|5|Flying${R}: Shivan Dragon gets +1/+0 until end of turn.|
-Shock|Eighth Edition|222|C|{R}|Instant|||Shock deals 2 damage to target creature or player.|
-Shock Troops|Eighth Edition|223|C|{3}{R}|Creature - Human Soldier|2|2|Sacrifice Shock Troops: Shock Troops deals 2 damage to target creature or player.|
+Shock|Eighth Edition|222|C|{R}|Instant|||Shock deals 2 damage to any target.|
+Shock Troops|Eighth Edition|223|C|{3}{R}|Creature - Human Soldier|2|2|Sacrifice Shock Troops: Shock Troops deals 2 damage to any target.|
Sizzle|Eighth Edition|224|C|{2}{R}|Sorcery|||Sizzle deals 3 damage to each opponent.|
Stone Rain|Eighth Edition|225|C|{2}{R}|Sorcery|||Destroy target land.|
Sudden Impact|Eighth Edition|226|U|{3}{R}|Instant|||Sudden Impact deals damage to target player equal to the number of cards in that player's hand.|
@@ -6102,9 +6102,9 @@ Tremor|Eighth Edition|228|C|{R}|Sorcery|||Tremor deals 1 damage to each creature
Two-Headed Dragon|Eighth Edition|229|R|{4}{R}{R}|Creature - Dragon|4|4|Flying${1}{R}: Two-Headed Dragon gets +2/+0 until end of turn.$Two-Headed Dragon can't be blocked except by two or more creatures.$Two-Headed Dragon can block an additional creature each combat.|
Holy Day|Eighth Edition|23|C|{W}|Instant|||Prevent all combat damage that would be dealt this turn.|
Viashino Sandstalker|Eighth Edition|230|U|{1}{R}{R}|Creature - Viashino Warrior|4|2|Haste (This creature can attack the turn it comes under your control.)$At the beginning of the end step, return Viashino Sandstalker to its owner's hand. (Return it only if it's on the battlefield.)|
-Volcanic Hammer|Eighth Edition|231|C|{1}{R}|Sorcery|||Volcanic Hammer deals 3 damage to target creature or player.|
+Volcanic Hammer|Eighth Edition|231|C|{1}{R}|Sorcery|||Volcanic Hammer deals 3 damage to any target.|
Wall of Stone|Eighth Edition|232|U|{1}{R}{R}|Creature - Wall|0|8|Defender (This creature can't attack.)|
-Birds of Paradise|Eighth Edition|233|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color to your mana pool.|
+Birds of Paradise|Eighth Edition|233|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color.|
Blanchwood Armor|Eighth Edition|234|U|{2}{G}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Enchanted creature gets +1/+1 for each Forest you control.|
Call of the Wild|Eighth Edition|235|R|{2}{G}{G}|Enchantment|||{2}{G}{G}: Reveal the top card of your library. If it's a creature card, put it onto the battlefield. Otherwise, put it into your graveyard.|
Canopy Spider|Eighth Edition|236|C|{1}{G}|Creature - Spider|1|3|Reach (This creature can block creatures with flying.)|
@@ -6168,7 +6168,7 @@ Wing Snare|Eighth Edition|288|U|{2}{G}|Sorcery|||Destroy target creature with fl
Wood Elves|Eighth Edition|289|C|{2}{G}|Creature - Elf Scout|1|1|When Wood Elves enters the battlefield, search your library for a Forest card and put that card onto the battlefield. Then shuffle your library.|
Master Decoy|Eighth Edition|29|C|{1}{W}|Creature - Human Soldier|1|2|{W}, {tap}: Tap target creature.|
Yavimaya Enchantress|Eighth Edition|290|U|{2}{G}|Creature - Human Druid|2|2|Yavimaya Enchantress gets +1/+1 for each enchantment on the battlefield.|
-Aladdin's Ring|Eighth Edition|291|R|{8}|Artifact|||{8}, {tap}: Aladdin's Ring deals 4 damage to target creature or player.|
+Aladdin's Ring|Eighth Edition|291|R|{8}|Artifact|||{8}, {tap}: Aladdin's Ring deals 4 damage to any target.|
Beast of Burden|Eighth Edition|292|R|{6}|Artifact Creature - Golem|*|*|Beast of Burden's power and toughness are each equal to the number of creatures on the battlefield.|
Brass Herald|Eighth Edition|293|R|{6}|Artifact Creature - Golem|2|2|As Brass Herald enters the battlefield, choose a creature type.$When Brass Herald enters the battlefield, reveal the top four cards of your library. Put all creature cards of the chosen type revealed this way into your hand and the rest on the bottom of your library in any order.$Creatures of the chosen type get +1/+1.|
Coat of Arms|Eighth Edition|294|R|{5}|Artifact|||Each creature gets +1/+1 for each other creature on the battlefield that shares at least one creature type with it. (For example, if two Goblin Warriors and a Goblin Shaman are on the battlefield, each gets +2/+2.)|
@@ -6179,7 +6179,7 @@ Disrupting Scepter|Eighth Edition|298|R|{3}|Artifact|||{3}, {tap}: Target player
Distorting Lens|Eighth Edition|299|R|{2}|Artifact|||{tap}: Target permanent becomes the color of your choice until end of turn.|
Ardent Militia|Eighth Edition|3|U|{4}{W}|Creature - Human Soldier|2|5|Vigilance|
Giant Octopus|Eighth Edition|3|C|{3}{U}|Creature - Octopus|3|3||
-Master Healer|Eighth Edition|30|R|{4}{W}|Creature - Human Cleric|1|4|{tap}: Prevent the next 4 damage that would be dealt to target creature or player this turn.|
+Master Healer|Eighth Edition|30|R|{4}{W}|Creature - Human Cleric|1|4|{tap}: Prevent the next 4 damage that would be dealt to any target this turn.|
Ensnaring Bridge|Eighth Edition|300|R|{3}|Artifact|||Creatures with power greater than the number of cards in your hand can't attack.|
Flying Carpet|Eighth Edition|301|R|{4}|Artifact|||{2}, {tap}: Target creature gains flying until end of turn.|
Fodder Cannon|Eighth Edition|302|U|{4}|Artifact|||{4}, {tap}, Sacrifice a creature: Fodder Cannon deals 4 damage to target creature.|
@@ -6193,10 +6193,10 @@ Phyrexian Colossus|Eighth Edition|309|R|{7}|Artifact Creature - Golem|8|8|Phyrex
Noble Purpose|Eighth Edition|31|R|{3}{W}{W}|Enchantment|||Whenever a creature you control deals combat damage, you gain that much life.|
Phyrexian Hulk|Eighth Edition|310|U|{6}|Artifact Creature - Golem|5|4||
Planar Portal|Eighth Edition|311|R|{6}|Artifact|||{6}, {tap}: Search your library for a card and put that card into your hand. Then shuffle your library.|
-Rod of Ruin|Eighth Edition|312|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to target creature or player.|
+Rod of Ruin|Eighth Edition|312|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to any target.|
Skull of Orm|Eighth Edition|313|R|{3}|Artifact|||{5}, {tap}: Return target enchantment card from your graveyard to your hand.|
Spellbook|Eighth Edition|314|U|{0}|Artifact|||You have no maximum hand size.|
-Star Compass|Eighth Edition|315|U|{2}|Artifact|||Star Compass enters the battlefield tapped.${tap}: Add to your mana pool one mana of any color that a basic land you control could produce.|
+Star Compass|Eighth Edition|315|U|{2}|Artifact|||Star Compass enters the battlefield tapped.${tap}: Add one mana of any color that a basic land you control could produce.|
Teferi's Puzzle Box|Eighth Edition|316|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.|
Throne of Bone|Eighth Edition|317|U|{1}|Artifact|||Whenever a player casts a black spell, you may pay {1}. If you do, you gain 1 life.|
Urza's Armor|Eighth Edition|318|R|{6}|Artifact|||If a source would deal damage to you, prevent 1 of that damage.|
@@ -6204,7 +6204,7 @@ Vexing Arcanix|Eighth Edition|319|R|{4}|Artifact|||{3}, {tap}: Target player nam
Oracle's Attendants|Eighth Edition|32|R|{3}{W}|Creature - Human Soldier|1|5|{tap}: All damage that would be dealt to target creature this turn by a source of your choice is dealt to Oracle's Attendants instead.|
Wall of Spears|Eighth Edition|320|U|{3}|Artifact Creature - Wall|2|3|Defender (This creature can't attack.)$First strike|
Wooden Sphere|Eighth Edition|321|U|{1}|Artifact|||Whenever a player casts a green spell, you may pay {1}. If you do, you gain 1 life.|
-City of Brass|Eighth Edition|322|R||Land|||Whenever City of Brass becomes tapped, it deals 1 damage to you.${tap}: Add one mana of any color to your mana pool.|
+City of Brass|Eighth Edition|322|R||Land|||Whenever City of Brass becomes tapped, it deals 1 damage to you.${tap}: Add one mana of any color.|
Coastal Tower|Eighth Edition|323|U||Land|||Coastal Tower enters the battlefield tapped.${tap}: Add {W} or {U}.|
Elfhame Palace|Eighth Edition|324|U||Land|||Elfhame Palace enters the battlefield tapped.${tap}: Add {G} or {W}.|
Salt Marsh|Eighth Edition|325|U||Land|||Salt Marsh enters the battlefield tapped.${tap}: Add {U} or {B}.|
@@ -6243,7 +6243,7 @@ Sacred Ground|Eighth Edition|39|R|{1}{W}|Enchantment|||Whenever a spell or abili
Avatar of Hope|Eighth Edition|4|R|{6}{W}{W}|Creature - Avatar|4|9|If you have 3 or less life, Avatar of Hope costs {6} less to cast.$Flying$Avatar of Hope can block any number of creatures.|
Sea Eagle|Eighth Edition|4|C|{1}{U}|Creature - Bird|1|1|Flying|
Sacred Nectar|Eighth Edition|40|C|{1}{W}|Sorcery|||You gain 4 life.|
-Samite Healer|Eighth Edition|41|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Samite Healer|Eighth Edition|41|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.|
Sanctimony|Eighth Edition|42|U|{1}{W}|Enchantment|||Whenever an opponent taps a Mountain for mana, you may gain 1 life.|
Savannah Lions|Eighth Edition|43|R|{W}|Creature - Cat|2|1||
Seasoned Marshal|Eighth Edition|44|U|{2}{W}{W}|Creature - Human Soldier|2|2|Whenever Seasoned Marshal attacks, you may tap target creature.|
@@ -6312,7 +6312,7 @@ Sage Owl|Eighth Edition|98|C|{1}{U}|Creature - Bird|1|1|Flying$When Sage Owl ent
Sea Monster|Eighth Edition|99|C|{4}{U}{U}|Creature - Serpent|6|6|Sea Monster can't attack unless defending player controls an Island.|
Archon of Justice|Eventide|1|R|{3}{W}{W}|Creature - Archon|4|4|Flying$When Archon of Justice dies, exile target permanent.|
Light from Within|Eventide|10|R|{2}{W}{W}|Enchantment|||Chroma - Each creature you control gets +1/+1 for each white mana symbol in its mana cost.|
-Crackleburr|Eventide|100|R|{1}{UR}{UR}|Creature - Elemental|2|2|{UR}{UR}, {tap}, Tap two untapped red creatures you control: Crackleburr deals 3 damage to target creature or player.${UR}{UR}, {untap}, Untap two tapped blue creatures you control: Return target creature to its owner's hand. ({untap} is the untap symbol.)|
+Crackleburr|Eventide|100|R|{1}{UR}{UR}|Creature - Elemental|2|2|{UR}{UR}, {tap}, Tap two untapped red creatures you control: Crackleburr deals 3 damage to any target.${UR}{UR}, {untap}, Untap two tapped blue creatures you control: Return target creature to its owner's hand. ({untap} is the untap symbol.)|
Crag Puca|Eventide|101|U|{UR}{UR}{UR}|Creature - Shapeshifter|2|4|{UR}: Switch Crag Puca's power and toughness until end of turn.|
Dominus of Fealty|Eventide|102|R|{UR}{UR}{UR}{UR}{UR}|Creature - Spirit Avatar|4|4|Flying$At the beginning of your upkeep, you may gain control of target permanent until end of turn. If you do, untap it and it gains haste until end of turn.|
Inside Out|Eventide|103|C|{1}{UR}|Instant|||Switch target creature's power and toughness until end of turn.$Draw a card.|
@@ -6363,7 +6363,7 @@ Moonhold|Eventide|143|U|{2}{RW}|Instant|||Target player can't play land cards th
Nobilis of War|Eventide|144|R|{RW}{RW}{RW}{RW}{RW}|Creature - Spirit Avatar|3|4|Flying$Attacking creatures you control get +2/+0.|
Rise of the Hobgoblins|Eventide|145|R|{RW}{RW}|Enchantment|||When Rise of the Hobgoblins enters the battlefield, you may pay {X}. If you do, put X 1/1 red and white Goblin Soldier creature tokens onto the battlefield.${RW}: Red creatures and white creatures you control gain first strike until end of turn.|
Scourge of the Nobilis|Eventide|146|C|{2}{RW}|Enchantment - Aura|||Enchant creature$As long as enchanted creature is red, it gets +1/+1 and has "{RW}: This creature gets +1/+0 until end of turn."$As long as enchanted creature is white, it gets +1/+1 and has lifelink. (Damage dealt by the creature also causes its controller to gain that much life.)|
-Spitemare|Eventide|147|U|{2}{RW}{RW}|Creature - Elemental|3|3|Whenever Spitemare is dealt damage, it deals that much damage to target creature or player.|
+Spitemare|Eventide|147|U|{2}{RW}{RW}|Creature - Elemental|3|3|Whenever Spitemare is dealt damage, it deals that much damage to any target.|
Waves of Aggression|Eventide|148|R|{3}{RW}{RW}|Sorcery|||Untap all creatures that attacked this turn. After this main phase, there is an additional combat phase followed by an additional main phase.$Retrace (You may cast this card from your graveyard by discarding a land card in addition to paying its other costs.)|
Cold-Eyed Selkie|Eventide|149|R|{1}{GU}{GU}|Creature - Merfolk Rogue|1|1|Islandwalk$Whenever Cold-Eyed Selkie deals combat damage to a player, you may draw that many cards.|
Springjack Shepherd|Eventide|15|U|{3}{W}|Creature - Kithkin Wizard|1|2|Chroma - When Springjack Shepherd enters the battlefield, put a 0/1 white Goat creature token onto the battlefield for each white mana symbol in the mana costs of permanents you control.|
@@ -6398,7 +6398,7 @@ Cascade Bluffs|Eventide|175|R||Land|||{tap}: Add {C}.${UR}, {tap}: Add {U}{U}, {
Fetid Heath|Eventide|176|R||Land|||{tap}: Add {C}.${WB}, {tap}: Add {W}{W}, {W}{B}, or {B}{B}.|
Flooded Grove|Eventide|177|R||Land|||{tap}: Add {C}.${GU}, {tap}: Add {G}{G}, {G}{U}, or {U}{U}.|
Rugged Prairie|Eventide|178|R||Land|||{tap}: Add {C}.${RW}, {tap}: Add {R}{R}, {R}{W}, or {W}{W}.|
-Springjack Pasture|Eventide|179|R||Land|||{tap}: Add {C}.${4}, {tap}: Put a 0/1 white Goat creature token onto the battlefield.${tap}, Sacrifice X Goats: Add X mana of any one color to your mana pool. You gain X life.|
+Springjack Pasture|Eventide|179|R||Land|||{tap}: Add {C}.${4}, {tap}: Put a 0/1 white Goat creature token onto the battlefield.${tap}, Sacrifice X Goats: Add X mana of any one color. You gain X life.|
Cache Raiders|Eventide|18|U|{3}{U}{U}|Creature - Merfolk Rogue|4|4|At the beginning of your upkeep, return a permanent you control to its owner's hand.|
Twilight Mire|Eventide|180|R||Land|||{tap}: Add {C}.${BG}, {tap}: Add {B}{B}, {B}{G}, or {G}{G}.|
Dream Fracture|Eventide|19|U|{1}{U}{U}|Instant|||Counter target spell. Its controller draws a card.$Draw a card.|
@@ -6438,22 +6438,22 @@ Chaotic Backlash|Eventide|49|U|{4}{R}|Instant|||Chaotic Backlash deals damage to
Endure|Eventide|5|U|{3}{W}{W}|Instant|||Prevent all damage that would be dealt to you and permanents you control this turn.|
Cinder Pyromancer|Eventide|50|C|{2}{R}|Creature - Elemental Shaman|0|1|{tap}: Cinder Pyromancer deals 1 damage to target player.$Whenever you cast a red spell, you may untap Cinder Pyromancer.|
Duergar Cave-Guard|Eventide|51|U|{3}{R}|Creature - Dwarf Warrior|1|3|Wither (This deals damage to creatures in the form of -1/-1 counters.)${RW}: Duergar Cave-Guard gets +1/+0 until end of turn.|
-Fiery Bombardment|Eventide|52|R|{1}{R}|Enchantment|||Chroma - {2}, Sacrifice a creature: Fiery Bombardment deals damage to target creature or player equal to the number of red mana symbols in the sacrificed creature's mana cost.|
-Flame Jab|Eventide|53|C|{R}|Sorcery|||Flame Jab deals 1 damage to target creature or player.$Retrace (You may cast this card from your graveyard by discarding a land card in addition to paying its other costs.)|
-Hatchet Bully|Eventide|54|U|{3}{R}|Creature - Goblin Warrior|3|3|{2}{R}, {tap}, Put a -1/-1 counter on a creature you control: Hatchet Bully deals 2 damage to target creature or player.|
-Hateflayer|Eventide|55|R|{5}{R}{R}|Creature - Elemental|5|5|Wither (This deals damage to creatures in the form of -1/-1 counters.)${2}{R}, {untap}: Hateflayer deals damage equal to its power to target creature or player. ({untap} is the untap symbol.)|
+Fiery Bombardment|Eventide|52|R|{1}{R}|Enchantment|||Chroma - {2}, Sacrifice a creature: Fiery Bombardment deals damage to any target equal to the number of red mana symbols in the sacrificed creature's mana cost.|
+Flame Jab|Eventide|53|C|{R}|Sorcery|||Flame Jab deals 1 damage to any target.$Retrace (You may cast this card from your graveyard by discarding a land card in addition to paying its other costs.)|
+Hatchet Bully|Eventide|54|U|{3}{R}|Creature - Goblin Warrior|3|3|{2}{R}, {tap}, Put a -1/-1 counter on a creature you control: Hatchet Bully deals 2 damage to any target.|
+Hateflayer|Eventide|55|R|{5}{R}{R}|Creature - Elemental|5|5|Wither (This deals damage to creatures in the form of -1/-1 counters.)${2}{R}, {untap}: Hateflayer deals damage equal to its power to any target. ({untap} is the untap symbol.)|
Heartlash Cinder|Eventide|56|C|{1}{R}|Creature - Elemental Warrior|1|1|Haste$Chroma - When Heartlash Cinder enters the battlefield, it gets +X/+0 until end of turn, where X is the number of red mana symbols in the mana costs of permanents you control.|
Hotheaded Giant|Eventide|57|C|{3}{R}|Creature - Giant Warrior|4|4|Haste$Hotheaded Giant enters the battlefield with two -1/-1 counters on it unless you've cast another red spell this turn.|
Impelled Giant|Eventide|58|U|{4}{R}{R}|Creature - Giant Warrior|3|3|Trample$Tap an untapped red creature you control other than Impelled Giant: Impelled Giant gets +X/+0 until end of turn, where X is the power of the creature tapped this way.|
Outrage Shaman|Eventide|59|U|{3}{R}{R}|Creature - Goblin Shaman|2|2|Chroma - When Outrage Shaman enters the battlefield, it deals damage to target creature equal to the number of red mana symbols in the mana costs of permanents you control.|
Flickerwisp|Eventide|6|U|{1}{W}{W}|Creature - Elemental|3|1|Flying$When Flickerwisp enters the battlefield, exile another target permanent. Return that card to the battlefield under its owner's control at the beginning of the next end step.|
-Puncture Blast|Eventide|60|C|{2}{R}|Instant|||Wither (This deals damage to creatures in the form of -1/-1 counters.)$Puncture Blast deals 3 damage to target creature or player.|
-Rekindled Flame|Eventide|61|R|{2}{R}{R}|Sorcery|||Rekindled Flame deals 4 damage to target creature or player.$At the beginning of your upkeep, if an opponent has no cards in hand, you may return Rekindled Flame from your graveyard to your hand.|
+Puncture Blast|Eventide|60|C|{2}{R}|Instant|||Wither (This deals damage to creatures in the form of -1/-1 counters.)$Puncture Blast deals 3 damage to any target.|
+Rekindled Flame|Eventide|61|R|{2}{R}{R}|Sorcery|||Rekindled Flame deals 4 damage to any target.$At the beginning of your upkeep, if an opponent has no cards in hand, you may return Rekindled Flame from your graveyard to your hand.|
Stigma Lasher|Eventide|62|R|{R}{R}|Creature - Elemental Shaman|2|2|Wither (This deals damage to creatures in the form of -1/-1 counters.)$Whenever Stigma Lasher deals damage to a player, that player can't gain life for the rest of the game.|
Thunderblust|Eventide|63|R|{2}{R}{R}{R}|Creature - Elemental|7|2|Haste$Thunderblust has trample as long as it has a -1/-1 counter on 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.)|
Unwilling Recruit|Eventide|64|U|{X}{R}{R}{R}|Sorcery|||Gain control of target creature until end of turn. Untap that creature. It gets +X/+0 and gains haste until end of turn.|
Aerie Ouphes|Eventide|65|C|{4}{G}|Creature - Ouphe|3|3|Sacrifice Aerie Ouphes: Aerie Ouphes deals damage equal to its power to target creature with flying.$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.)|
-Bloom Tender|Eventide|66|R|{1}{G}|Creature - Elf Druid|1|1|{tap}: For each color among permanents you control, add one mana of that color to your mana pool.|
+Bloom Tender|Eventide|66|R|{1}{G}|Creature - Elf Druid|1|1|{tap}: For each color among permanents you control, add one mana of that color.|
Duskdale Wurm|Eventide|67|U|{5}{G}{G}|Creature - Wurm|7|7|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.)|
Helix Pinnacle|Eventide|68|R|{G}|Enchantment|||Shroud${X}: Put X tower counters on Helix Pinnacle.$At the beginning of your upkeep, if there are 100 or more tower counters on Helix Pinnacle, you win the game.|
Marshdrinker Giant|Eventide|69|U|{3}{G}{G}|Creature - Giant Warrior|4|3|When Marshdrinker Giant enters the battlefield, destroy target Island or Swamp an opponent controls.|
@@ -6575,14 +6575,14 @@ Fighting Chance|Exodus|82|R|{R}|Instant|||For each blocking creature, flip a coi
Flowstone Flood|Exodus|83|U|{3}{R}|Sorcery|||Buyback-Pay 3 life, Discard a card at random. (You may pay 3 life and discard a card at random in addition to any other costs as you cast this spell. If you do, put this card into your hand as it resolves.)$Destroy target land.|
Furnace Brood|Exodus|84|C|{3}{R}|Creature - Elemental|3|3|{R}: Target creature can't be regenerated this turn.|
Keeper of the Flame|Exodus|85|U|{R}{R}|Creature - Human Wizard|1|2|{R}, {tap}: Choose target opponent who had more life than you did as you activated this ability. Keeper of the Flame deals 2 damage to him or her.|
-Mage il-Vec|Exodus|86|C|{2}{R}|Creature - Human Wizard|2|2|{tap}, Discard a card at random: Mage il-Vec deals 1 damage to target creature or player.|
+Mage il-Vec|Exodus|86|C|{2}{R}|Creature - Human Wizard|2|2|{tap}, Discard a card at random: Mage il-Vec deals 1 damage to any target.|
Maniacal Rage|Exodus|87|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2 and can't block.|
Mogg Assassin|Exodus|88|U|{2}{R}|Creature - Goblin Assassin|2|1|{tap}: You choose target creature an opponent controls, and that opponent chooses target creature. Flip a coin. If you win the flip, destroy the creature you chose. If you lose the flip, destroy the creature your opponent chose.|
Monstrous Hound|Exodus|89|R|{3}{R}|Creature - Hound|4|4|Monstrous Hound can't attack unless you control more lands than defending player.$Monstrous Hound can't block unless you control more lands than attacking player.|
Oath of Mages|Exodus|90|R|{1}{R}|Enchantment|||At the beginning of each player's upkeep, that player chooses target player who has more life than he or she does and is his or her opponent. The first player may have Oath of Mages deal 1 damage to the second player.|
-Ogre Shaman|Exodus|91|R|{3}{R}{R}|Creature - Ogre Shaman|3|3|{2}, Discard a card at random: Ogre Shaman deals 2 damage to target creature or player.|
+Ogre Shaman|Exodus|91|R|{3}{R}{R}|Creature - Ogre Shaman|3|3|{2}, Discard a card at random: Ogre Shaman deals 2 damage to any target.|
Onslaught|Exodus|92|C|{R}|Enchantment|||Whenever you cast a creature spell, tap target creature.|
-Pandemonium|Exodus|93|R|{3}{R}|Enchantment|||Whenever a creature enters the battlefield, that creature's controller may have it deal damage equal to its power to target creature or player of his or her choice.|
+Pandemonium|Exodus|93|R|{3}{R}|Enchantment|||Whenever a creature enters the battlefield, that creature's controller may have it deal damage equal to its power to any target of his or her choice.|
Paroxysm|Exodus|94|U|{1}{R}|Enchantment - Aura|||Enchant creature$At the beginning of the upkeep of enchanted creature's controller, that player reveals the top card of his or her library. If that card is a land card, destroy that creature. Otherwise, it gets +3/+3 until end of turn.|
Price of Progress|Exodus|95|U|{1}{R}|Instant|||Price of Progress deals damage to each player equal to twice the number of nonbasic lands that player controls.|
Raging Goblin|Exodus|96|C|{R}|Creature - Goblin Berserker|1|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)|
@@ -6590,9 +6590,9 @@ Ravenous Baboons|Exodus|97|R|{3}{R}|Creature - Ape|2|2|When Ravenous Baboons ent
Reckless Ogre|Exodus|98|C|{3}{R}|Creature - Ogre|3|2|Whenever Reckless Ogre attacks alone, it gets +3/+0 until end of turn.|
Sabertooth Wyvern|Exodus|99|U|{4}{R}|Creature - Drake|3|2|Flying, first strike|
Scalding Salamander|Exodus|100|U|{2}{R}|Creature - Salamander|2|1|Whenever Scalding Salamander attacks, you may have it deal 1 damage to each creature without flying defending player controls.|
-Seismic Assault|Exodus|101|R|{R}{R}{R}|Enchantment|||Discard a land card: Seismic Assault deals 2 damage to target creature or player.|
+Seismic Assault|Exodus|101|R|{R}{R}{R}|Enchantment|||Discard a land card: Seismic Assault deals 2 damage to any target.|
Shattering Pulse|Exodus|102|C|{1}{R}|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.)$Destroy target artifact.|
-Sonic Burst|Exodus|103|C|{1}{R}|Instant|||As an additional cost to cast Sonic Burst, discard a card at random.$Sonic Burst deals 4 damage to target creature or player.|
+Sonic Burst|Exodus|103|C|{1}{R}|Instant|||As an additional cost to cast Sonic Burst, discard a card at random.$Sonic Burst deals 4 damage to any target.|
Spellshock|Exodus|104|U|{2}{R}|Enchantment|||Whenever a player casts a spell, Spellshock deals 2 damage to that player.|
Avenging Druid|Exodus|105|C|{2}{G}|Creature - Human Druid|1|3|Whenever Avenging Druid deals damage to an opponent, you may reveal cards from the top of your library until you reveal a land card. If you do, put that card onto the battlefield and put all other cards revealed this way into your graveyard.|
Bequeathal|Exodus|106|C|{G}|Enchantment - Aura|||Enchant creature$When enchanted creature dies, you draw two cards.|
@@ -6643,7 +6643,7 @@ Dwarven Soldier|Fallen Empires|107|C|{1}{R}|Creature - Dwarf Soldier|2|1|Wheneve
Ebon Praetor|Fallen Empires|11|R|{4}{B}{B}|Creature - Avatar Praetor|5|5|First strike, trample$At the beginning of your upkeep, put a -2/-2 counter on Ebon Praetor.$Sacrifice a creature: Remove a -2/-2 counter from Ebon Praetor. If the sacrificed creature was a Thrull, put a +1/+0 counter on Ebon Praetor. Activate this ability only during your upkeep and only once each turn.|
Goblin Chirurgeon|Fallen Empires|110|C|{R}|Creature - Goblin Shaman|0|2|Sacrifice a Goblin: Regenerate target creature.|
Goblin Flotilla|Fallen Empires|113|R|{2}{R}|Creature - Goblin|2|2|Islandwalk$At the beginning of each combat, unless you pay {R}, whenever Goblin Flotilla blocks or becomes blocked by a creature this combat, that creature gains first strike until end of turn.|
-Goblin Grenade|Fallen Empires|114|C|{R}|Sorcery|||As an additional cost to cast Goblin Grenade, sacrifice a Goblin.$Goblin Grenade deals 5 damage to target creature or player.|
+Goblin Grenade|Fallen Empires|114|C|{R}|Sorcery|||As an additional cost to cast Goblin Grenade, sacrifice a Goblin.$Goblin Grenade deals 5 damage to any target.|
Goblin Kites|Fallen Empires|117|U|{1}{R}|Enchantment|||{R}: Target creature you control with toughness 2 or less gains flying until end of turn. Flip a coin at the beginning of the next end step. If you lose the flip, sacrifice that creature.|
Goblin War Drums|Fallen Empires|118|C|{2}{R}|Enchantment|||Each creature you control can't be blocked except by two or more creatures.|
Hymn to Tourach|Fallen Empires|12|C|{B}{B}|Sorcery|||Target player discards two cards at random.|
@@ -6653,14 +6653,14 @@ Orcish Spy|Fallen Empires|124|C|{R}|Creature - Orc Rogue|1|1|{tap}: Look at the
Orcish Veteran|Fallen Empires|127|C|{2}{R}|Creature - Orc|2|2|Orcish Veteran can't block white creatures with power 2 or greater.${R}: Orcish Veteran gains first strike until end of turn.|
Orgg|Fallen Empires|131|R|{3}{R}{R}|Creature - Orgg|6|6|Trample$Orgg can't attack if defending player controls an untapped creature with power 3 or greater.$Orgg can't block creatures with power 3 or greater.|
Raiding Party|Fallen Empires|132|U|{2}{R}|Enchantment|||Raiding Party can't be the target of white spells or abilities from white sources.$$Sacrifice an Orc: Each player may tap any number of untapped white creatures he or she controls. For each creature tapped this way, that player chooses up to two Plains. Then destroy all Plains that weren't chosen this way by any player.|
-Combat Medic|Fallen Empires|133|C|{2}{W}|Creature - Human Cleric Soldier|0|2|{1}{W}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Combat Medic|Fallen Empires|133|C|{2}{W}|Creature - Human Cleric Soldier|0|2|{1}{W}: Prevent the next 1 damage that would be dealt to any target this turn.|
Farrelite Priest|Fallen Empires|137|U|{1}{W}{W}|Creature - Human Cleric|1|3|{1}: Add {W}. If this ability has been activated four or more times this turn, sacrifice Farrelite Priest at the beginning of the next end step.|
Farrel's Mantle|Fallen Empires|138|U|{2}{W}|Enchantment - Aura|||Enchant creature$Whenever enchanted creature attacks and isn't blocked, its controller may have it deal damage equal to its power plus 2 to another target creature. If that player does, the attacking creature assigns no combat damage this turn.|
Farrel's Zealot|Fallen Empires|139|C|{1}{W}{W}|Creature - Human|2|2|Whenever Farrel's Zealot attacks and isn't blocked, you may have it deal 3 damage to target creature. If you do, Farrel's Zealot assigns no combat damage this turn.|
Hand of Justice|Fallen Empires|142|R|{5}{W}|Creature - Avatar|2|6|{tap}, Tap three untapped white creatures you control: Destroy target creature.|
Heroism|Fallen Empires|143|U|{2}{W}|Enchantment|||Sacrifice a white creature: For each attacking red creature, prevent all combat damage that would be dealt by that creature this turn unless its controller pays {2}{R}.|
Icatian Infantry|Fallen Empires|144|C|{W}|Creature - Human Soldier|1|1|{1}: Icatian Infantry gains first strike until end of turn.${1}: Icatian Infantry gains banding until end of turn. (Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding you control are blocking or being blocked by a creature, you divide that creature's combat damage, not its controller, among any of the creatures it's being blocked by or is blocking.)|
-Icatian Javelineers|Fallen Empires|148|C|{W}|Creature - Human Soldier|1|1|Icatian Javelineers enters the battlefield with a javelin counter on it.${tap}, Remove a javelin counter from Icatian Javelineers: Icatian Javelineers deals 1 damage to target creature or player.|
+Icatian Javelineers|Fallen Empires|148|C|{W}|Creature - Human Soldier|1|1|Icatian Javelineers enters the battlefield with a javelin counter on it.${tap}, Remove a javelin counter from Icatian Javelineers: Icatian Javelineers deals 1 damage to any target.|
Icatian Lieutenant|Fallen Empires|151|R|{W}{W}|Creature - Human Soldier|1|2|{1}{W}: Target Soldier creature gets +1/+0 until end of turn.|
Icatian Moneychanger|Fallen Empires|152|C|{W}|Creature - Human|0|2|Icatian Moneychanger enters the battlefield with three credit counters on it.$When Icatian Moneychanger enters the battlefield, it deals 3 damage to you.$At the beginning of your upkeep, put a credit counter on Icatian Moneychanger.$Sacrifice Icatian Moneychanger: You gain 1 life for each credit counter on Icatian Moneychanger. Activate this ability only during your upkeep.|
Icatian Phalanx|Fallen Empires|155|U|{4}{W}|Creature - Human Soldier|2|4|Banding (Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding you control are blocking or being blocked by a creature, you divide that creature's combat damage, not its controller, among any of the creatures it's being blocked by or is blocking.)|
@@ -6670,14 +6670,14 @@ Initiates of the Ebon Hand|Fallen Empires|16|C|{B}|Creature - Cleric|1|1|{1}: Ad
Icatian Skirmishers|Fallen Empires|161|R|{3}{W}|Creature - Human Soldier|1|1|First strike; banding (Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding you control are blocking or being blocked by a creature, you divide that creature's combat damage, not its controller, among any of the creatures it's being blocked by or is blocking.)$Whenever Icatian Skirmishers attacks, all creatures banded with it gain first strike until end of turn.|
Icatian Town|Fallen Empires|162|R|{5}{W}|Sorcery|||Put four 1/1 white Citizen creature tokens onto the battlefield.|
Order of Leitbur|Fallen Empires|163|C|{W}{W}|Creature - Human Cleric Knight|2|1|Protection from black${W}: Order of Leitbur gains first strike until end of turn.${W}{W}: Order of Leitbur gets +1/+0 until end of turn.|
-Aeolipile|Fallen Empires|166|R|{2}|Artifact|||{1}, {tap}, Sacrifice Aeolipile: Aeolipile deals 2 damage to target creature or player.|
-Balm of Restoration|Fallen Empires|167|R|{2}|Artifact|||{1}, {tap}, Sacrifice Balm of Restoration: Choose one - You gain 2 life; or prevent the next 2 damage that would be dealt to target creature or player this turn.|
+Aeolipile|Fallen Empires|166|R|{2}|Artifact|||{1}, {tap}, Sacrifice Aeolipile: Aeolipile deals 2 damage to any target.|
+Balm of Restoration|Fallen Empires|167|R|{2}|Artifact|||{1}, {tap}, Sacrifice Balm of Restoration: Choose one - You gain 2 life; or prevent the next 2 damage that would be dealt to any target this turn.|
Conch Horn|Fallen Empires|168|R|{2}|Artifact|||{1}, {tap}, Sacrifice Conch Horn: Draw two cards, then put a card from your hand on top of your library.|
Delif's Cone|Fallen Empires|169|C|{0}|Artifact|||{tap}, Sacrifice Delif's Cone: This turn, when target creature you control attacks and isn't blocked, you may gain life equal to its power. If you do, it assigns no combat damage this turn.|
Delif's Cube|Fallen Empires|170|R|{1}|Artifact|||{2}, {tap}: This turn, when target creature you control attacks and isn't blocked, it assigns no combat damage this turn and you put a cube counter on Delif's Cube.${2}, Remove a cube counter from Delif's Cube: Regenerate target creature.|
Draconian Cylix|Fallen Empires|171|R|{3}|Artifact|||{2}, {tap}, Discard a card at random: Regenerate target creature.|
Elven Lyre|Fallen Empires|172|R|{2}|Artifact|||{1}, {tap}, Sacrifice Elven Lyre: Target creature gets +2/+2 until end of turn.|
-Implements of Sacrifice|Fallen Empires|173|R|{2}|Artifact|||{1}, {tap}, Sacrifice Implements of Sacrifice: Add two mana of any one color to your mana pool.|
+Implements of Sacrifice|Fallen Empires|173|R|{2}|Artifact|||{1}, {tap}, Sacrifice Implements of Sacrifice: Add two mana of any one color.|
Ring of Renewal|Fallen Empires|174|R|{5}|Artifact|||{5}, {tap}: Discard a card at random, then draw two cards.|
Spirit Shield|Fallen Empires|175|R|{3}|Artifact|||You may choose not to untap Spirit Shield during your untap step.${2}, {tap}: Target creature gets +0/+2 for as long as Spirit Shield remains tapped.|
Zelyon Sword|Fallen Empires|176|R|{3}|Artifact|||You may choose not to untap Zelyon Sword during your untap step.${3}, {tap}: Target creature gets +2/+0 for as long as Zelyon Sword remains tapped.|
@@ -6688,7 +6688,7 @@ Ebon Stronghold|Fallen Empires|180|U||Land|||Ebon Stronghold enters the battlefi
Havenwood Battleground|Fallen Empires|181|U||Land|||Havenwood Battleground enters the battlefield tapped.${tap}: Add {G}.${tap}, Sacrifice Havenwood Battleground: Add {G}{G}.|
Hollow Trees|Fallen Empires|182|R||Land|||Hollow Trees enters the battlefield tapped.$You may choose not to untap Hollow Trees during your untap step.$At the beginning of your upkeep, if Hollow Trees is tapped, put a storage counter on it.${tap}, Remove any number of storage counters from Hollow Trees: Add {G} for each storage counter removed this way.|
Icatian Store|Fallen Empires|183|R||Land|||Icatian Store enters the battlefield tapped.$You may choose not to untap Icatian Store during your untap step.$At the beginning of your upkeep, if Icatian Store is tapped, put a storage counter on it.${tap}, Remove any number of storage counters from Icatian Store: Add {W} for each storage counter removed this way.|
-Rainbow Vale|Fallen Empires|184|R||Land|||{tap}: Add one mana of any color to your mana pool. An opponent gains control of Rainbow Vale at the beginning of the next end step.|
+Rainbow Vale|Fallen Empires|184|R||Land|||{tap}: Add one mana of any color. An opponent gains control of Rainbow Vale at the beginning of the next end step.|
Ruins of Trokair|Fallen Empires|185|U||Land|||Ruins of Trokair enters the battlefield tapped.${tap}: Add {W}.${tap}, Sacrifice Ruins of Trokair: Add {W}{W}.|
Sand Silos|Fallen Empires|186|R||Land|||Sand Silos enters the battlefield tapped.$You may choose not to untap Sand Silos during your untap step.$At the beginning of your upkeep, if Sand Silos is tapped, put a storage counter on it.${tap}, Remove any number of storage counters from Sand Silos: Add {U} for each storage counter removed this way.|
Svyelunite Temple|Fallen Empires|187|U||Land|||Svyelunite Temple enters the battlefield tapped.${tap}: Add {U}.${tap}, Sacrifice Svyelunite Temple: Add {U}{U}.|
@@ -6734,8 +6734,8 @@ Thelonite Druid|Fallen Empires|92|U|{2}{G}|Creature - Human Cleric Druid|1|1|{1}
Thelonite Monk|Fallen Empires|93|R|{2}{G}{G}|Creature - Insect Monk Cleric|1|2|{tap}, Sacrifice a green creature: Target land becomes a Forest. (This effect lasts indefinitely.)|
Thelon's Chant|Fallen Empires|94|U|{1}{G}{G}|Enchantment|||At the beginning of your upkeep, sacrifice Thelon's Chant unless you pay {G}.$Whenever a player puts a Swamp onto the battlefield, Thelon's Chant deals 3 damage to that player unless he or she puts a -1/-1 counter on a creature he or she controls.|
Thelon's Curse|Fallen Empires|95|R|{G}{G}|Enchantment|||Blue creatures don't untap during their controllers' untap steps.$At the beginning of each player's upkeep, that player may choose any number of tapped blue creatures he or she controls and pay {U} for each creature chosen this way. If the player does, untap those creatures.|
-Thorn Thallid|Fallen Empires|96|C|{1}{G}{G}|Creature - Fungus|2|2|At the beginning of your upkeep, put a spore counter on Thorn Thallid.$Remove three spore counters from Thorn Thallid: Thorn Thallid deals 1 damage to target creature or player.|
-Ugin, the Spirit Dragon|Fate Reforged|1|M|{8}|Legendary Planeswalker - Ugin|||+2: Ugin, the Spirit Dragon deals 3 damage to target creature or player.$?X: Exile each permanent with converted mana cost X or less that's one or more colors.$?10: You gain 7 life, draw seven cards, then put up to seven permanent cards from your hand onto the battlefield.|
+Thorn Thallid|Fallen Empires|96|C|{1}{G}{G}|Creature - Fungus|2|2|At the beginning of your upkeep, put a spore counter on Thorn Thallid.$Remove three spore counters from Thorn Thallid: Thorn Thallid deals 1 damage to any target.|
+Ugin, the Spirit Dragon|Fate Reforged|1|M|{8}|Legendary Planeswalker - Ugin|||+2: Ugin, the Spirit Dragon deals 3 damage to any target.$?X: Exile each permanent with converted mana cost X or less that's one or more colors.$?10: You gain 7 life, draw seven cards, then put up to seven permanent cards from your hand onto the battlefield.|
Dragon Bell Monk|Fate Reforged|10|C|{2}{W}|Creature - Human Monk|2|2|Vigilance$Prowess (Whenever you cast a noncreature spell, this creature gets +1/+1 until end of turn.)|
Flamewake Phoenix|Fate Reforged|100|R|{1}{R}{R}|Creature - Phoenix|2|2|Flying, haste$Flamewake Phoenix attacks each turn if able.$Ferocious - At the beginning of combat on your turn, if you control a creature with power 4 or greater, you may pay {R}. If you do, return Flamewake Phoenix from your graveyard to the battlefield.|
Friendly Fire|Fate Reforged|101|U|{3}{R}|Instant|||Target creature's controller reveals a card at random from his or her hand. Friendly Fire deals damage to that creature and that player equal to the revealed card's converted mana cost.|
@@ -6748,7 +6748,7 @@ Mardu Runemark|Fate Reforged|107|C|{2}{R}|Enchantment - Aura|||Enchant creature$
Mardu Scout|Fate Reforged|108|C|{R}{R}|Creature - Goblin Scout|3|1|Dash {1}{R} (You may cast this spell for its dash cost. If you do, it gains haste, and it's returned from the battlefield to its owner's hand at the beginning of the next end step.)|
Mob Rule|Fate Reforged|109|R|{4}{R}{R}|Sorcery|||Choose one -$ Gain control of all creatures with power 4 or greater until end of turn. Untap those creatures. They gain haste until end of turn.$ Gain control of all creatures with power 3 or less until end of turn. Untap those creatures. They gain haste until end of turn.|
Dragonscale General|Fate Reforged|11|R|{3}{W}|Creature - Human Warrior|2|3|At the beginning of your end step, bolster X, where X is the number of tapped creatures you control. (Choose a creature with the least toughness among creatures you control and put X +1/+1 counters on it.)|
-Outpost Siege|Fate Reforged|110|R|{3}{R}|Enchantment|||As Outpost Siege enters the battlefield, choose Khans or Dragons.$ Khans - At the beginning of your upkeep, exile the top card of your library. Until end of turn, you may play that card.$ Dragons - Whenever a creature you control leaves the battlefield, Outpost Siege deals 1 damage to target creature or player.|
+Outpost Siege|Fate Reforged|110|R|{3}{R}|Enchantment|||As Outpost Siege enters the battlefield, choose Khans or Dragons.$ Khans - At the beginning of your upkeep, exile the top card of your library. Until end of turn, you may play that card.$ Dragons - Whenever a creature you control leaves the battlefield, Outpost Siege deals 1 damage to any target.|
Pyrotechnics|Fate Reforged|111|U|{4}{R}|Sorcery|||Pyrotechnics deals 4 damage divided as you choose among any number of target creatures and/or players.|
Rageform|Fate Reforged|112|U|{2}{R}{R}|Enchantment|||When Rageform enters the battlefield, it becomes an Aura with enchant creature. Manifest the top card of your library and attach Rageform to it. (To manifest a card, put it onto the battlefield face down as a 2/2 creature. Turn it face up any time for its mana cost if it's a creature card.)$Enchanted creature has double strike. (It deals both first-strike and regular combat damage.)|
Shaman of the Great Hunt|Fate Reforged|113|M|{3}{R}|Creature - Orc Shaman|4|2|Haste$Whenever a creature you control deals combat damage to a player, put a +1/+1 counter on it.$Ferocious - {2}{GU}{GU}: Draw a card for each creature you control with power 4 or greater.|
@@ -6756,7 +6756,7 @@ Shockmaw Dragon|Fate Reforged|114|U|{4}{R}{R}|Creature - Dragon|4|4|Flying$Whene
Smoldering Efreet|Fate Reforged|115|C|{1}{R}|Creature - Efreet Monk|2|2|When Smoldering Efreet dies, it deals 2 damage to you.|
Temur Battle Rage|Fate Reforged|116|C|{1}{R}|Instant|||Target creature gains double strike until end of turn. (It deals both first-strike and regular combat damage.)$Ferocious - That creature also gains trample until end of turn if you control a creature with power 4 or greater.|
Vaultbreaker|Fate Reforged|117|U|{3}{R}|Creature - Orc Rogue|4|2|Whenever Vaultbreaker attacks, you may discard a card. If you do, draw a card.$Dash {2}{R} (You may cast this spell for its dash cost. If you do, it gains haste, and it's returned from the battlefield to its owner's hand at the beginning of the next end step.)|
-Wild Slash|Fate Reforged|118|U|{R}|Instant|||Ferocious - If you control a creature with power 4 or greater, damage can't be prevented this turn.$Wild Slash deals 2 damage to target creature or player.|
+Wild Slash|Fate Reforged|118|U|{R}|Instant|||Ferocious - If you control a creature with power 4 or greater, damage can't be prevented this turn.$Wild Slash deals 2 damage to any target.|
Abzan Beastmaster|Fate Reforged|119|U|{2}{G}|Creature - Hound Shaman|2|1|At the beginning of your upkeep, draw a card if you control the creature with the greatest toughness or tied for the greatest toughness.|
Elite Scaleguard|Fate Reforged|12|U|{4}{W}|Creature - Human Soldier|2|3|When Elite Scaleguard enters the battlefield, bolster 2. (Choose a creature with the least toughness among creatures you control and put two +1/+1 counters on it.)$Whenever a creature you control with a +1/+1 counter on it attacks, tap target creature defending player controls.|
Abzan Kin-Guard|Fate Reforged|120|U|{3}{G}|Creature - Human Warrior|3|3|Abzan Kin-Guard has lifelink as long as you control a white or black permanent.|
@@ -6796,12 +6796,12 @@ Cunning Strike|Fate Reforged|150|C|{3}{U}{R}|Instant|||Cunning Strike deals 2 da
Dromoka, the Eternal|Fate Reforged|151|R|{3}{G}{W}|Legendary Creature - Dragon|5|5|Flying$Whenever a Dragon you control attacks, bolster 2. (Choose a creature with the least toughness among creatures you control and put two +1/+1 counters on it.)|
Ethereal Ambush|Fate Reforged|152|C|{3}{G}{U}|Instant|||Manifest the top two cards of your library. (To manifest a card, put it onto the battlefield face down as a 2/2 creature. Turn it face up any time for its mana cost if it's a creature card.)|
Grim Contest|Fate Reforged|153|C|{1}{B}{G}|Instant|||Choose target creature you control and target creature an opponent controls. Each of those creatures deals damage equal to its toughness to the other.|
-Harsh Sustenance|Fate Reforged|154|C|{1}{W}{B}|Instant|||Harsh Sustenance deals X damage to target creature or player and you gain X life, where X is the number of creatures you control.|
+Harsh Sustenance|Fate Reforged|154|C|{1}{W}{B}|Instant|||Harsh Sustenance deals X damage to any target and you gain X life, where X is the number of creatures you control.|
Kolaghan, the Storm's Fury|Fate Reforged|155|R|{3}{B}{R}|Legendary Creature - Dragon|4|5|Flying$Whenever a Dragon you control attacks, creatures you control get +1/+0 until end of turn.$Dash {3}{B}{R} (You may cast this spell for its dash cost. If you do, it gains haste, and it's returned from the battlefield to its owner's hand at the beginning of the next end step.)|
Ojutai, Soul of Winter|Fate Reforged|156|R|{5}{W}{U}|Legendary Creature - Dragon|5|6|Flying, vigilance$Whenever a Dragon you control attacks, tap target nonland permanent an opponent controls. That permanent doesn't untap during its controller's next untap step.|
Silumgar, the Drifting Death|Fate Reforged|157|R|{4}{U}{B}|Legendary Creature - Dragon|3|7|Flying, hexproof$Whenever a Dragon you control attacks, creatures defending player controls get -1/-1 until end of turn.|
War Flare|Fate Reforged|158|C|{2}{R}{W}|Instant|||Creatures you control get +2/+1 until end of turn. Untap those creatures.|
-Goblin Boom Keg|Fate Reforged|159|U|{4}|Artifact|||At the beginning of your upkeep, sacrifice Goblin Boom Keg.$When Goblin Boom Keg is put into a graveyard from the battlefield, it deals 3 damage to target creature or player.|
+Goblin Boom Keg|Fate Reforged|159|U|{4}|Artifact|||At the beginning of your upkeep, sacrifice Goblin Boom Keg.$When Goblin Boom Keg is put into a graveyard from the battlefield, it deals 3 damage to any target.|
Lightform|Fate Reforged|16|U|{1}{W}{W}|Enchantment|||When Lightform enters the battlefield, it becomes an Aura with enchant creature. Manifest the top card of your library and attach Lightform to it. (To manifest a card, put it onto the battlefield face down as a 2/2 creature. Turn it face up any time for its mana cost if it's a creature card.)$Enchanted creature has flying and lifelink.|
Hero's Blade|Fate Reforged|160|U|{2}|Artifact - Equipment|||Equipped creature gets +3/+2.$Whenever a legendary creature enters the battlefield under your control, you may attach Hero's Blade to it.$Equip {4}|
Hewed Stone Retainers|Fate Reforged|161|U|{3}|Artifact Creature - Golem|4|4|Cast Hewed Stone Retainers only if you've cast another spell this turn.|
@@ -6810,7 +6810,7 @@ Scroll of the Masters|Fate Reforged|163|R|{2}|Artifact|||Whenever you cast a non
Ugin's Construct|Fate Reforged|164|U|{4}|Artifact Creature - Construct|4|5|When Ugin's Construct enters the battlefield, sacrifice a permanent that's one or more colors.|
Bloodfell Caves|Fate Reforged|165|C||Land|||Bloodfell Caves enters the battlefield tapped.$When Bloodfell Caves enters the battlefield, you gain 1 life.${tap}: Add {B} or {R}.|
Blossoming Sands|Fate Reforged|166|C||Land|||Blossoming Sands enters the battlefield tapped.$When Blossoming Sands enters the battlefield, you gain 1 life.${tap}: Add {G} or {W}.|
-Crucible of the Spirit Dragon|Fate Reforged|167|R||Land|||{tap}: Add {C}.${1}, {tap}: Put a storage counter on Crucible of the Spirit Dragon.${tap}, Remove X storage counters from Crucible of the Spirit Dragon: Add X mana in any combination of colors to your mana pool. Spend this mana only to cast Dragon spells or activate abilities of Dragons.|
+Crucible of the Spirit Dragon|Fate Reforged|167|R||Land|||{tap}: Add {C}.${1}, {tap}: Put a storage counter on Crucible of the Spirit Dragon.${tap}, Remove X storage counters from Crucible of the Spirit Dragon: Add X mana in any combination of colors. Spend this mana only to cast Dragon spells or activate abilities of Dragons.|
Dismal Backwater|Fate Reforged|168|C||Land|||Dismal Backwater enters the battlefield tapped.$When Dismal Backwater enters the battlefield, you gain 1 life.${tap}: Add {U} or {B}.|
Jungle Hollow|Fate Reforged|169|C||Land|||Jungle Hollow enters the battlefield tapped.$When Jungle Hollow enters the battlefield, you gain 1 life.${tap}: Add {B} or {G}.|
Lotus-Eye Mystics|Fate Reforged|17|U|{3}{W}|Creature - Human Monk|3|2|Prowess (Whenever you cast a noncreature spell, this creature gets +1/+1 until end of turn.)$When Lotus-Eye Mystics enters the battlefield, return target enchantment card from your graveyard to your hand.|
@@ -6915,13 +6915,13 @@ Arcbond|Fate Reforged|91|R|{2}{R}|Instant|||Choose target creature. Whenever tha
Bathe in Dragonfire|Fate Reforged|92|C|{2}{R}|Sorcery|||Bathe in Dragonfire deals 4 damage to target creature.|
Bloodfire Enforcers|Fate Reforged|93|U|{3}{R}|Creature - Human Monk|5|2|Bloodfire Enforcers has first strike and trample as long as an instant card and a sorcery card are in your graveyard.|
Break Through the Line|Fate Reforged|94|U|{1}{R}|Enchantment|||{R}: Target creature with power 2 or less gains haste until end of turn and can't be blocked this turn.|
-Collateral Damage|Fate Reforged|95|C|{R}|Instant|||As an additional cost to cast Collateral Damage, sacrifice a creature.$Collateral Damage deals 3 damage to target creature or player.|
+Collateral Damage|Fate Reforged|95|C|{R}|Instant|||As an additional cost to cast Collateral Damage, sacrifice a creature.$Collateral Damage deals 3 damage to any target.|
Defiant Ogre|Fate Reforged|96|C|{5}{R}|Creature - Ogre Warrior|3|5|When Defiant Ogre enters the battlefield, choose one -$ Put a +1/+1 counter on Defiant Ogre.$ Destroy target artifact.|
Dragonrage|Fate Reforged|97|U|{2}{R}|Instant|||Add {R} for each attacking creature you control. Until end of turn, attacking creatures you control gain "{R}: This creature gets +1/+0 until end of turn."|
Fierce Invocation|Fate Reforged|98|C|{4}{R}|Sorcery|||Manifest the top card of your library, then put two +1/+1 counters on it. (To manifest a card, put it onto the battlefield face down as a 2/2 creature. Turn it face up any time for its mana cost if it's a creature card.)|
Flamerush Rider|Fate Reforged|99|R|{4}{R}|Creature - Human Warrior|3|3|Whenever Flamerush Rider attacks, put a token onto the battlefield tapped and attacking that's a copy of another target attacking creature. Exile the token at end of combat.$Dash {2}{R}{R} (You may cast this spell for its dash cost. If you do, it gains haste, and it's returned from the battlefield to its owner's hand at the beginning of the next end step.)|
Abuna's Chant|Fifth Dawn|1|C|{3}{W}|Instant|||Choose one - You gain 5 life; or prevent the next 5 damage that would be dealt to target creature this turn.$Entwine {2} (Choose both if you pay the entwine cost.)|
-Loxodon Anchorite|Fifth Dawn|10|C|{2}{W}{W}|Creature - Elephant Cleric|2|3|{tap}: Prevent the next 2 damage that would be dealt to target creature or player this turn.|
+Loxodon Anchorite|Fifth Dawn|10|C|{2}{W}{W}|Creature - Elephant Cleric|2|3|{tap}: Prevent the next 2 damage that would be dealt to any target this turn.|
Viridian Scout|Fifth Dawn|100|C|{3}{G}|Creature - Elf Warrior Scout|1|2|{2}{G}, Sacrifice Viridian Scout: Viridian Scout deals 2 damage to target creature with flying.|
Anodet Lurker|Fifth Dawn|101|C|{5}|Artifact Creature - Construct|3|3|When Anodet Lurker dies, you gain 3 life.|
Arachnoid|Fifth Dawn|102|U|{6}|Artifact Creature - Spider|2|6|Reach (This creature can block creatures with flying.)|
@@ -6929,7 +6929,7 @@ Arcbound Wanderer|Fifth Dawn|103|U|{6}|Artifact Creature - Golem|0|0|Modular-Sun
Avarice Totem|Fifth Dawn|104|U|{1}|Artifact|||{5}: Exchange control of Avarice Totem and target nonland permanent.|
Baton of Courage|Fifth Dawn|105|C|{3}|Artifact|||Flash$Sunburst (This enters the battlefield with a charge counter on it for each color of mana spent to cast it.)$Remove a charge counter from Baton of Courage: Target creature gets +1/+1 until end of turn.|
Battered Golem|Fifth Dawn|106|C|{3}|Artifact Creature - Golem|3|2|Battered Golem doesn't untap during your untap step.$Whenever an artifact enters the battlefield, you may untap Battered Golem.|
-Blasting Station|Fifth Dawn|107|U|{3}|Artifact|||{tap}, Sacrifice a creature: Blasting Station deals 1 damage to target creature or player.$Whenever a creature enters the battlefield, you may untap Blasting Station.|
+Blasting Station|Fifth Dawn|107|U|{3}|Artifact|||{tap}, Sacrifice a creature: Blasting Station deals 1 damage to any target.$Whenever a creature enters the battlefield, you may untap Blasting Station.|
Chimeric Coils|Fifth Dawn|108|U|{1}|Artifact|||{X}{1}: Chimeric Coils becomes an X/X Construct artifact creature. Sacrifice it at the beginning of the next end step.|
Clearwater Goblet|Fifth Dawn|109|R|{5}|Artifact|||Sunburst (This enters the battlefield with a charge counter on it for each color of mana spent to cast it.)$At the beginning of your upkeep, you may gain life equal to the number of charge counters on Clearwater Goblet.|
Loxodon Stalwart|Fifth Dawn|11|U|{3}{W}{W}|Creature - Elephant Soldier|3|3|Vigilance${W}: Loxodon Stalwart gets +0/+1 until end of turn.|
@@ -6948,14 +6948,14 @@ Eon Hub|Fifth Dawn|120|R|{5}|Artifact|||Players skip their upkeep steps.|
Etched Oracle|Fifth Dawn|121|U|{4}|Artifact Creature - Wizard|0|0|Sunburst (This enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.)${1}, Remove four +1/+1 counters from Etched Oracle: Target player draws three cards.|
Ferropede|Fifth Dawn|122|U|{3}|Artifact Creature - Insect|1|1|Ferropede is unblockable.$Whenever Ferropede deals combat damage to a player, you may remove a counter from target permanent.|
Fist of Suns|Fifth Dawn|123|R|{3}|Artifact|||You may pay {W}{U}{B}{R}{G} rather than pay the mana cost for spells that you cast.|
-Gemstone Array|Fifth Dawn|124|U|{4}|Artifact|||{2}: Put a charge counter on Gemstone Array.$Remove a charge counter from Gemstone Array: Add one mana of any color to your mana pool.|
-Goblin Cannon|Fifth Dawn|125|U|{4}|Artifact|||{2}: Goblin Cannon deals 1 damage to target creature or player. Sacrifice Goblin Cannon.|
+Gemstone Array|Fifth Dawn|124|U|{4}|Artifact|||{2}: Put a charge counter on Gemstone Array.$Remove a charge counter from Gemstone Array: Add one mana of any color.|
+Goblin Cannon|Fifth Dawn|125|U|{4}|Artifact|||{2}: Goblin Cannon deals 1 damage to any target. Sacrifice Goblin Cannon.|
Grafted Wargear|Fifth Dawn|126|U|{3}|Artifact - Equipment|||Equipped creature gets +3/+2.$Whenever Grafted Wargear becomes unattached from a permanent, sacrifice that permanent.$Equip {0} ({0}: Attach to target creature you control. Equip only as a sorcery.)|
Grinding Station|Fifth Dawn|127|U|{2}|Artifact|||{tap}, Sacrifice an artifact: Target player puts the top three cards of his or her library into his or her graveyard.$Whenever an artifact enters the battlefield, you may untap Grinding Station.|
Guardian Idol|Fifth Dawn|128|U|{2}|Artifact|||Guardian Idol enters the battlefield tapped.${tap}: Add {C}.${2}: Guardian Idol becomes a 2/2 Golem artifact creature until end of turn.|
-Healer's Headdress|Fifth Dawn|129|C|{2}|Artifact - Equipment|||Equipped creature gets +0/+2 and has "{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn."${W}{W}: Attach Healer's Headdress to target creature you control.$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)|
+Healer's Headdress|Fifth Dawn|129|C|{2}|Artifact - Equipment|||Equipped creature gets +0/+2 and has "{tap}: Prevent the next 1 damage that would be dealt to any target this turn."${W}{W}: Attach Healer's Headdress to target creature you control.$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)|
Retaliate|Fifth Dawn|13|R|{2}{W}{W}|Instant|||Destroy all creatures that dealt damage to you this turn.|
-Heliophial|Fifth Dawn|130|C|{5}|Artifact|||Sunburst (This enters the battlefield with a charge counter on it for each color of mana spent to cast it.)${2}, Sacrifice Heliophial: Heliophial deals damage equal to the number of charge counters on it to target creature or player.|
+Heliophial|Fifth Dawn|130|C|{5}|Artifact|||Sunburst (This enters the battlefield with a charge counter on it for each color of mana spent to cast it.)${2}, Sacrifice Heliophial: Heliophial deals damage equal to the number of charge counters on it to any target.|
Helm of Kaldra|Fifth Dawn|131|R|{3}|Legendary Artifact - Equipment|||Equipped creature has first strike, trample, and haste.${1}: If you control Equipment named Helm of Kaldra, Sword of Kaldra, and Shield of Kaldra, put a legendary 4/4 colorless Avatar creature token named Kaldra onto the battlefield and attach those Equipment to it.$Equip {2}|
Horned Helm|Fifth Dawn|132|C|{2}|Artifact - Equipment|||Equipped creature gets +1/+1 and has trample.${G}{G}: Attach Horned Helm to target creature you control.$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)|
Infused Arrows|Fifth Dawn|133|U|{4}|Artifact|||Sunburst (This enters the battlefield with a charge counter on it for each color of mana spent to cast it.)${tap}, Remove X charge counters from Infused Arrows: Target creature gets -X/-X until end of turn.|
@@ -6968,8 +6968,8 @@ Myr Servitor|Fifth Dawn|139|C|{1}|Artifact Creature - Myr|1|1|At the beginning o
Roar of Reclamation|Fifth Dawn|14|R|{5}{W}{W}|Sorcery|||Each player returns all artifact cards from his or her graveyard to the battlefield.|
Neurok Stealthsuit|Fifth Dawn|140|C|{2}|Artifact - Equipment|||Equipped creature has shroud. (It can't be the target of spells or abilities.)${U}{U}: Attach Neurok Stealthsuit to target creature you control.$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)|
Opaline Bracers|Fifth Dawn|141|C|{4}|Artifact - Equipment|||Sunburst (This enters the battlefield with a charge counter on it for each color of mana spent to cast it.)$Equipped creature gets +X/+X, where X is the number of charge counters on Opaline Bracers.$Equip {2} ({2}: Attach to target creature you control. Equip only as a sorcery.)|
-Paradise Mantle|Fifth Dawn|142|U|{0}|Artifact - Equipment|||Equipped creature has "{tap}: Add one mana of any color to your mana pool."$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)|
-Pentad Prism|Fifth Dawn|143|C|{2}|Artifact|||Sunburst (This enters the battlefield with a charge counter on it for each color of mana spent to cast it.)$Remove a charge counter from Pentad Prism: Add one mana of any color to your mana pool.|
+Paradise Mantle|Fifth Dawn|142|U|{0}|Artifact - Equipment|||Equipped creature has "{tap}: Add one mana of any color."$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)|
+Pentad Prism|Fifth Dawn|143|C|{2}|Artifact|||Sunburst (This enters the battlefield with a charge counter on it for each color of mana spent to cast it.)$Remove a charge counter from Pentad Prism: Add one mana of any color.|
Possessed Portal|Fifth Dawn|144|R|{8}|Artifact|||If a player would draw a card, that player skips that draw instead.$At the beginning of each end step, each player sacrifices a permanent unless he or she discards a card.|
Razorgrass Screen|Fifth Dawn|145|C|{1}|Artifact Creature - Wall|2|1|Defender (This creature can't attack.)$Razorgrass Screen blocks each turn if able.|
Razormane Masticore|Fifth Dawn|146|R|{5}|Artifact Creature - Masticore|5|5|First strike (This creature deals combat damage before creatures without first strike.)$At the beginning of your upkeep, sacrifice Razormane Masticore unless you discard a card.$At the beginning of your draw step, you may have Razormane Masticore deal 3 damage to target creature.|
@@ -7043,20 +7043,20 @@ Relentless Rats|Fifth Dawn|58|U|{1}{B}{B}|Creature - Rat|2|2|Relentless Rats get
Shattered Dreams|Fifth Dawn|59|U|{B}|Sorcery|||Target opponent reveals his or her hand. You choose an artifact card from it. That player discards that card.|
Beacon of Immortality|Fifth Dawn|6|R|{5}{W}|Instant|||Double target player's life total. Shuffle Beacon of Immortality into its owner's library.|
Vicious Betrayal|Fifth Dawn|60|C|{3}{B}{B}|Sorcery|||As an additional cost to cast Vicious Betrayal, sacrifice any number of creatures.$Target creature gets +2/+2 until end of turn for each creature sacrificed this way.|
-Beacon of Destruction|Fifth Dawn|61|R|{3}{R}{R}|Instant|||Beacon of Destruction deals 5 damage to target creature or player. Shuffle Beacon of Destruction into its owner's library.|
+Beacon of Destruction|Fifth Dawn|61|R|{3}{R}{R}|Instant|||Beacon of Destruction deals 5 damage to any target. Shuffle Beacon of Destruction into its owner's library.|
Bringer of the Red Dawn|Fifth Dawn|62|R|{7}{R}{R}|Creature - Bringer|5|5|You may pay {W}{U}{B}{R}{G} rather than pay Bringer of the Red Dawn's mana cost.$Trample$At the beginning of your upkeep, you may untap target creature and gain control of it until end of turn. That creature gains haste until end of turn.|
Cosmic Larva|Fifth Dawn|63|R|{1}{R}{R}|Creature - Beast|7|6|Trample$At the beginning of your upkeep, sacrifice Cosmic Larva unless you sacrifice two lands.|
Feedback Bolt|Fifth Dawn|64|U|{4}{R}|Instant|||Feedback Bolt deals damage to target player equal to the number of artifacts you control.|
Furnace Whelp|Fifth Dawn|65|U|{2}{R}{R}|Creature - Dragon|2|2|Flying${R}: Furnace Whelp gets +1/+0 until end of turn.|
Goblin Brawler|Fifth Dawn|66|C|{2}{R}|Creature - Goblin Warrior|2|2|First strike$Goblin Brawler can't be equipped.|
Granulate|Fifth Dawn|67|R|{2}{R}{R}|Sorcery|||Destroy each nonland artifact with converted mana cost 4 or less.|
-Ion Storm|Fifth Dawn|68|R|{2}{R}|Enchantment|||{1}{R}, Remove a +1/+1 counter or a charge counter from a permanent you control: Ion Storm deals 2 damage to target creature or player.|
+Ion Storm|Fifth Dawn|68|R|{2}{R}|Enchantment|||{1}{R}, Remove a +1/+1 counter or a charge counter from a permanent you control: Ion Storm deals 2 damage to any target.|
Iron-Barb Hellion|Fifth Dawn|69|U|{5}{R}|Creature - Hellion Beast|5|4|Haste$Iron-Barb Hellion can't block.|
Bringer of the White Dawn|Fifth Dawn|7|R|{7}{W}{W}|Creature - Bringer|5|5|You may pay {W}{U}{B}{R}{G} rather than pay Bringer of the White Dawn's mana cost.$Trample$At the beginning of your upkeep, you may return target artifact card from your graveyard to the battlefield.|
Krark-Clan Engineers|Fifth Dawn|70|U|{3}{R}|Creature - Goblin Artificer|2|2|{R}, Sacrifice two artifacts: Destroy target artifact.|
Krark-Clan Ogre|Fifth Dawn|71|C|{3}{R}{R}|Creature - Ogre|3|3|{R}, Sacrifice an artifact: Target creature can't block this turn.|
Magma Giant|Fifth Dawn|72|R|{5}{R}{R}|Creature - Giant|5|5|When Magma Giant enters the battlefield, it deals 2 damage to each creature and each player.|
-Magma Jet|Fifth Dawn|73|U|{1}{R}|Instant|||Magma Jet deals 2 damage to target creature or player.$Scry 2. (To scry 2, look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)|
+Magma Jet|Fifth Dawn|73|U|{1}{R}|Instant|||Magma Jet deals 2 damage to any target.$Scry 2. (To scry 2, look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)|
Magnetic Theft|Fifth Dawn|74|U|{R}|Instant|||Attach target Equipment to target creature. (Control of the Equipment doesn't change.)|
Mana Geyser|Fifth Dawn|75|C|{3}{R}{R}|Sorcery|||Add {R} for each tapped land your opponents control.|
Rain of Rust|Fifth Dawn|76|C|{3}{R}{R}|Instant|||Choose one - Destroy target artifact; or destroy target land.$Entwine {3}{R} (Choose both if you pay the entwine cost.)|
@@ -7064,7 +7064,7 @@ Reversal of Fortune|Fifth Dawn|77|R|{4}{R}{R}|Sorcery|||Target opponent reveals
Screaming Fury|Fifth Dawn|78|C|{2}{R}|Sorcery|||Target creature gets +5/+0 and gains haste until end of turn.|
Spark Elemental|Fifth Dawn|79|C|{R}|Creature - Elemental|3|1|Trample, haste (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. This creature can attack and {tap} as soon as it comes under your control.)$At the beginning of the end step, sacrifice Spark Elemental.|
Circle of Protection: Artifacts|Fifth Dawn|8|U|{1}{W}|Enchantment|||{2}: The next time an artifact source of your choice would deal damage to you this turn, prevent that damage.|
-Vulshok Sorcerer|Fifth Dawn|80|C|{1}{R}{R}|Creature - Human Shaman|1|1|Haste${tap}: Vulshok Sorcerer deals 1 damage to target creature or player.|
+Vulshok Sorcerer|Fifth Dawn|80|C|{1}{R}{R}|Creature - Human Shaman|1|1|Haste${tap}: Vulshok Sorcerer deals 1 damage to any target.|
All Suns' Dawn|Fifth Dawn|81|R|{4}{G}|Sorcery|||For each color, return up to one target card of that color from your graveyard to your hand. Exile All Suns' Dawn.|
Beacon of Creation|Fifth Dawn|82|R|{3}{G}|Sorcery|||Put a 1/1 green Insect creature token onto the battlefield for each Forest you control. Shuffle Beacon of Creation into its owner's library.|
Bringer of the Green Dawn|Fifth Dawn|83|R|{7}{G}{G}|Creature - Bringer|5|5|You may pay {W}{U}{B}{R}{G} rather than pay Bringer of the Green Dawn's mana cost.$Trample$At the beginning of your upkeep, you may put a 3/3 green Beast creature token onto the battlefield.|
@@ -7073,12 +7073,12 @@ Dawn's Reflection|Fifth Dawn|85|C|{3}{G}|Enchantment - Aura|||Enchant land$Whene
Eternal Witness|Fifth Dawn|86|U|{1}{G}{G}|Creature - Human Shaman|2|1|When Eternal Witness enters the battlefield, you may return target card from your graveyard to your hand.|
Fangren Pathcutter|Fifth Dawn|87|U|{4}{G}{G}|Creature - Beast|4|6|Whenever Fangren Pathcutter attacks, attacking creatures gain trample until end of turn.|
Ferocious Charge|Fifth Dawn|88|C|{2}{G}|Instant|||Target creature gets +4/+4 until end of turn.$Scry 2. (To scry 2, look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)|
-Joiner Adept|Fifth Dawn|89|R|{1}{G}|Creature - Elf Druid|2|1|Lands you control have "{tap}: Add one mana of any color to your mana pool."|
+Joiner Adept|Fifth Dawn|89|R|{1}{G}|Creature - Elf Druid|2|1|Lands you control have "{tap}: Add one mana of any color."|
Leonin Squire|Fifth Dawn|9|C|{1}{W}|Creature - Cat Soldier|2|2|When Leonin Squire enters the battlefield, return target artifact card with converted mana cost 1 or less from your graveyard to your hand.|
Ouphe Vandals|Fifth Dawn|90|U|{2}{G}|Creature - Ouphe Rogue|2|2|{G}, Sacrifice Ouphe Vandals: Counter target activated ability from an artifact source and destroy that artifact if it's on the battlefield. (Mana abilities can't be targeted.)|
Rite of Passage|Fifth Dawn|91|R|{2}{G}|Enchantment|||Whenever a creature you control is dealt damage, put a +1/+1 counter on it. (The damage is dealt before the counter is put on.)|
Rude Awakening|Fifth Dawn|92|R|{4}{G}|Sorcery|||Choose one - Untap all lands you control; or until end of turn, lands you control become 2/2 creatures that are still lands.$Entwine {2}{G} (Choose both if you pay the entwine cost.)|
-Sylvok Explorer|Fifth Dawn|93|C|{1}{G}|Creature - Human Druid|1|1|{tap}: Add to your mana pool one mana of any color that a land an opponent controls could produce.|
+Sylvok Explorer|Fifth Dawn|93|C|{1}{G}|Creature - Human Druid|1|1|{tap}: Add one mana of any color that a land an opponent controls could produce.|
Tangle Asp|Fifth Dawn|94|C|{1}{G}|Creature - Snake|1|2|Whenever Tangle Asp blocks or becomes blocked by a creature, destroy that creature at end of combat.|
Tel-Jilad Justice|Fifth Dawn|95|U|{1}{G}|Instant|||Destroy target artifact.$Scry 2. (To scry 2, look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)|
Tel-Jilad Lifebreather|Fifth Dawn|96|C|{4}{G}|Creature - Troll Shaman|3|2|{G}, {tap}, Sacrifice a Forest: Regenerate target creature.|
@@ -7096,11 +7096,11 @@ Mind Bomb|Fifth Edition|105|U|{U}|Sorcery|||Each player may discard up to three
Phantasmal Forces|Fifth Edition|106|U|{3}{U}|Creature - Illusion|4|1|Flying$At the beginning of your upkeep, sacrifice Phantasmal Forces unless you pay {U}.|
Phantasmal Terrain|Fifth Edition|107|C|{U}{U}|Enchantment - Aura|||Enchant land$As Phantasmal Terrain enters the battlefield, choose a basic land type.$Enchanted land is the chosen type.|
Phantom Monster|Fifth Edition|108|U|{3}{U}|Creature - Illusion|3|3|Flying|
-Pirate Ship|Fifth Edition|109|R|{4}{U}|Creature - Human Pirate|4|3|Pirate Ship can't attack unless defending player controls an Island.${tap}: Pirate Ship deals 1 damage to target creature or player.$When you control no Islands, sacrifice Pirate Ship.|
+Pirate Ship|Fifth Edition|109|R|{4}{U}|Creature - Human Pirate|4|3|Pirate Ship can't attack unless defending player controls an Island.${tap}: Pirate Ship deals 1 damage to any target.$When you control no Islands, sacrifice Pirate Ship.|
Broken Visage|Fifth Edition|11|R|{4}{B}|Instant|||Destroy target nonartifact attacking creature. It can't be regenerated. Put a black Spirit creature token with that creature's power and toughness onto the battlefield. Sacrifice the token at the beginning of the next end step.|
Portent|Fifth Edition|110|C|{U}|Sorcery|||Look at the top three cards of target player's library, then put them back in any order. You may have that player shuffle his or her library.$Draw a card at the beginning of the next turn's upkeep.|
Power Sink|Fifth Edition|111|U|{X}{U}|Instant|||Counter target spell unless its controller pays {X}. If he or she doesn't, that player taps all lands with mana abilities he or she controls and empties his or her mana pool.|
-Prodigal Sorcerer|Fifth Edition|112|C|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to target creature or player.|
+Prodigal Sorcerer|Fifth Edition|112|C|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to any target.|
Psychic Venom|Fifth Edition|113|C|{1}{U}|Enchantment - Aura|||Enchant land$Whenever enchanted land becomes tapped, Psychic Venom deals 2 damage to that land's controller.|
Ray of Command|Fifth Edition|114|C|{3}{U}|Instant|||Untap target creature an opponent controls and gain control of it until end of turn. That creature gains haste until end of turn. When you lose control of the creature, tap it.|
Recall|Fifth Edition|115|R|{X}{X}{U}|Sorcery|||Discard X cards, then return a card from your graveyard to your hand for each card discarded this way. Exile Recall.|
@@ -7133,7 +7133,7 @@ An-Havva Constable|Fifth Edition|139|R|{1}{G}{G}|Creature - Human|2|1+*|An-Havva
Cursed Land|Fifth Edition|14|U|{2}{B}{B}|Enchantment - Aura|||Enchant land$At the beginning of the upkeep of enchanted land's controller, Cursed Land deals 1 damage to that player.|
Aspect of Wolf|Fifth Edition|140|R|{1}{G}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +X/+Y, where X is half the number of Forests you control, rounded down, and Y is half the number of Forests you control, rounded up.|
Aurochs|Fifth Edition|141|C|{3}{G}|Creature - Aurochs|2|3|Trample$Whenever Aurochs attacks, it gets +1/+0 until end of turn for each other attacking Aurochs.|
-Birds of Paradise|Fifth Edition|142|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color to your mana pool.|
+Birds of Paradise|Fifth Edition|142|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color.|
Carapace|Fifth Edition|143|C|{G}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +0/+2.$Sacrifice Carapace: Regenerate enchanted creature.|
Cat Warriors|Fifth Edition|144|C|{1}{G}{G}|Creature - Cat Warrior|2|2|Forestwalk|
Chub Toad|Fifth Edition|145|C|{2}{G}|Creature - Frog|1|1|Whenever Chub Toad blocks or becomes blocked, it gets +2/+2 until end of turn.|
@@ -7174,7 +7174,7 @@ Lure|Fifth Edition|176|U|{1}{G}{G}|Enchantment - Aura|||Enchant creature$All cre
Marsh Viper|Fifth Edition|177|C|{3}{G}|Creature - Snake|1|2|Whenever Marsh Viper deals damage to a player, that player gets two poison counters. (A player with ten or more poison counters loses the game.)|
Nature's Lore|Fifth Edition|178|C|{1}{G}|Sorcery|||Search your library for a Forest card and put that card onto the battlefield. Then shuffle your library.|
Pradesh Gypsies|Fifth Edition|179|C|{2}{G}|Creature - Human Nomad|1|1|{1}{G}, {tap}: Target creature gets -2/-0 until end of turn.|
-Drain Life|Fifth Edition|18|C|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Drain Life deals X damage to target creature or player. You gain life equal to the damage dealt, but not more life than the player's life total before Drain Life dealt damage or the creature's toughness.|
+Drain Life|Fifth Edition|18|C|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Drain Life deals X damage to any target. You gain life equal to the damage dealt, but not more life than the player's life total before Drain Life dealt damage or the creature's toughness.|
Primal Order|Fifth Edition|180|R|{2}{G}{G}|Enchantment|||At the beginning of each player's upkeep, Primal Order deals damage to that player equal to the number of nonbasic lands he or she controls.|
Rabid Wombat|Fifth Edition|181|U|{2}{G}{G}|Creature - Wombat|0|1|Vigilance$Rabid Wombat gets +2/+2 for each Aura attached to it.|
Radjan Spirit|Fifth Edition|182|U|{3}{G}|Creature - Spirit|3|2|{tap}: Target creature loses flying until end of turn.|
@@ -7214,12 +7214,12 @@ Ball Lightning|Fifth Edition|210|R|{R}{R}{R}|Creature - Elemental|6|1|Trample (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Enchanted creature has fear. (It can't be blocked except by artifact creatures and/or black creatures.)|
Hurloon Minotaur|Fifth Edition|240|C|{1}{R}{R}|Creature - Minotaur|2|3||
Imposing Visage|Fifth Edition|241|C|{R}|Enchantment - Aura|||Enchant creature$Enchanted creature can't be blocked except by two or more creatures.|
-Incinerate|Fifth Edition|242|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.|
+Incinerate|Fifth Edition|242|C|{1}{R}|Instant|||Incinerate deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.|
Inferno|Fifth Edition|243|R|{5}{R}{R}|Instant|||Inferno deals 6 damage to each creature and each player.|
Ironclaw Curse|Fifth Edition|244|R|{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets -0/-1.$Enchanted creature can't block creatures with power equal to or greater than the enchanted creature's toughness.|
Ironclaw Orcs|Fifth Edition|245|C|{1}{R}|Creature - Orc|2|2|Ironclaw Orcs can't block creatures with power 2 or greater.|
@@ -7258,7 +7258,7 @@ Frozen Shade|Fifth Edition|25|C|{2}{B}|Creature - Shade|0|1|{B}: Frozen Shade ge
Manabarbs|Fifth Edition|250|R|{3}{R}|Enchantment|||Whenever a player taps a land for mana, Manabarbs deals 1 damage to that player.|
Mons's Goblin Raiders|Fifth Edition|251|C|{R}|Creature - Goblin|1|1||
Mountain Goat|Fifth Edition|252|C|{R}|Creature - Goat|1|1|Mountainwalk|
-Orcish Artillery|Fifth Edition|253|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Artillery deals 2 damage to target creature or player and 3 damage to you.|
+Orcish Artillery|Fifth Edition|253|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Artillery deals 2 damage to any target and 3 damage to you.|
Orcish Captain|Fifth Edition|254|U|{R}|Creature - Orc Warrior|1|1|{1}: Flip a coin. If you win the flip, target Orc creature gets +2/+0 until end of turn. If you lose the flip, it gets -0/-2 until end of turn.|
Orcish Conscripts|Fifth Edition|255|C|{R}|Creature - Orc|2|2|Orcish Conscripts can't attack unless at least two other creatures attack.$$Orcish Conscripts can't block unless at least two other creatures block.|
Orcish Farmer|Fifth Edition|256|C|{1}{R}{R}|Creature - Orc|2|2|{tap}: Target land becomes a Swamp until its controller's next untap step.|
@@ -7286,7 +7286,7 @@ Winds of Change|Fifth Edition|275|R|{R}|Sorcery|||Each player shuffles the cards
Word of Blasting|Fifth Edition|276|U|{1}{R}|Instant|||Destroy target Wall. It can't be regenerated. Word of Blasting deals damage equal to that Wall's converted mana cost to the Wall's controller.|
Abbey Gargoyles|Fifth Edition|277|U|{2}{W}{W}{W}|Creature - Gargoyle|3|4|Flying, protection from red|
Akron Legionnaire|Fifth Edition|278|R|{6}{W}{W}|Creature - Giant Soldier|8|4|Except for creatures named Akron Legionnaire and artifact creatures, creatures you control can't attack.|
-Alabaster Potion|Fifth Edition|279|C|{X}{W}{W}|Instant|||Choose one - Target player gains X life; or prevent the next X damage that would be dealt to target creature or player this turn.|
+Alabaster Potion|Fifth Edition|279|C|{X}{W}{W}|Instant|||Choose one - Target player gains X life; or prevent the next X damage that would be dealt to any target this turn.|
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.|
Angry Mob|Fifth Edition|280|U|{2}{W}{W}|Creature - Human|2+*|2+*|Trample$As long as it's your turn, Angry Mob's power and toughness are each equal to 2 plus the number of Swamps your opponents control. As long as it's not your turn, Angry Mob's power and toughness are each 2.|
Animate Wall|Fifth Edition|281|R|{W}|Enchantment - Aura|||Enchant Wall$Enchanted Wall can attack as though it didn't have defender.|
@@ -7298,7 +7298,7 @@ Benalish Hero|Fifth Edition|286|C|{W}|Creature - Human Soldier|1|1|Banding (A
Blessed Wine|Fifth Edition|287|C|{1}{W}|Instant|||You gain 1 life.$Draw a card at the beginning of the next turn's upkeep.|
Blinking Spirit|Fifth Edition|288|R|{3}{W}|Creature - Spirit|2|2|{0}: Return Blinking Spirit to its owner's hand.|
Brainwash|Fifth Edition|289|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature can't attack unless its controller pays {3}.|
-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.|
+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 any target.|
Caribou Range|Fifth Edition|290|R|{2}{W}{W}|Enchantment - Aura|||Enchant land you control$Enchanted land has "{W}{W}, {tap}: Put a 0/1 white Caribou creature token onto the battlefield."$Sacrifice a Caribou token: You gain 1 life.|
Castle|Fifth Edition|291|U|{3}{W}|Enchantment|||Untapped creatures you control get +0/+2.|
Circle of Protection: Artifacts|Fifth Edition|292|U|{1}{W}|Enchantment|||{2}: The next time an artifact source of your choice would deal damage to you this turn, prevent that damage.|
@@ -7319,8 +7319,8 @@ Divine Transformation|Fifth Edition|304|U|{2}{W}{W}|Enchantment - Aura|||Enchant
Dust to Dust|Fifth Edition|305|U|{1}{W}{W}|Sorcery|||Exile two target artifacts.|
Eye for an Eye|Fifth Edition|306|R|{W}{W}|Instant|||The next time a source of your choice would deal damage to you this turn, instead that source deals that much damage to you and Eye for an Eye deals that much damage to that source's controller.|
Greater Realm of Preservation|Fifth Edition|307|U|{1}{W}|Enchantment|||{1}{W}: The next time a black or red source of your choice would deal damage to you this turn, prevent that damage.|
-Heal|Fifth Edition|309|C|{W}|Instant|||Prevent the next 1 damage that would be dealt to target creature or player this turn.$$Draw a card at the beginning of the next turn's upkeep.|
-Healing Salve|Fifth Edition|309|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to target creature or player this turn.|
+Heal|Fifth Edition|309|C|{W}|Instant|||Prevent the next 1 damage that would be dealt to any target this turn.$$Draw a card at the beginning of the next turn's upkeep.|
+Healing Salve|Fifth Edition|309|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to any target this turn.|
Initiates of the Ebon Hand|Fifth Edition|31|C|{B}|Creature - Cleric|1|1|{1}: Add {B}. 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.|
Hipparion|Fifth Edition|310|C|{1}{W}|Creature - Horse|1|3|Hipparion can't block creatures with power 3 or greater unless you pay {1}.|
Holy Strength|Fifth Edition|311|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+2.|
@@ -7347,9 +7347,9 @@ Repentant Blacksmith|Fifth Edition|330|C|{1}{W}|Creature - Human|1|2|Protection
Reverse Damage|Fifth Edition|331|R|{1}{W}{W}|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.|
Righteousness|Fifth Edition|332|R|{W}|Instant|||Target blocking creature gets +7/+7 until end of turn.|
Sacred Boon|Fifth Edition|333|U|{1}{W}|Instant|||Prevent the next 3 damage that would be dealt to target creature this turn. At the beginning of the next end step, put a +0/+1 counter on that creature for each 1 damage prevented this way.|
-Samite Healer|Fifth Edition|334|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Samite Healer|Fifth Edition|334|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.|
Serra Bestiary|Fifth Edition|336|U|{W}{W}|Enchantment - Aura|||Enchant creature$At the beginning of your upkeep, sacrifice Serra Bestiary unless you pay {W}{W}.$Enchanted creature can't attack or block, and its activated abilities with {tap} in their costs can't be activated.|
-Serra Paladin|Fifth Edition|337|U|{2}{W}{W}|Creature - Human Knight|2|2|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.${1}{W}{W}, {tap}: Target creature gains vigilance until end of turn.|
+Serra Paladin|Fifth Edition|337|U|{2}{W}{W}|Creature - Human Knight|2|2|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.${1}{W}{W}, {tap}: Target creature gains vigilance until end of turn.|
Shield Wall|Fifth Edition|339|C|{1}{W}|Instant|||Creatures you control get +0/+2 until end of turn.|
Krovikan Fetish|Fifth Edition|34|C|{2}{B}|Enchantment - Aura|||Enchant creature$When Krovikan Fetish enters the battlefield, draw a card at the beginning of the next turn's upkeep.$Enchanted creature gets +1/+1.|
Spirit Link|Fifth Edition|340|U|{W}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Whenever enchanted creature deals damage, you gain that much life.|
@@ -7358,13 +7358,13 @@ Tundra Wolves|Fifth Edition|342|C|{W}|Creature - Wolf|1|1|First strike (This
Wall of Swords|Fifth Edition|343|U|{3}{W}|Creature - Wall|3|5|Defender, flying (This creature can't attack, and it can block creatures with flying.)|
White Knight|Fifth Edition|344|U|{W}{W}|Creature - Human Knight|2|2|First strike (This creature deals combat damage before creatures without first strike.)$Protection from black (This creature can't be blocked, targeted, dealt damage, or enchanted by anything black.)|
Wrath of God|Fifth Edition|345|R|{2}{W}{W}|Sorcery|||Destroy all creatures. They can't be regenerated.|
-Aladdin's Ring|Fifth Edition|346|R|{8}|Artifact|||{8}, {tap}: Aladdin's Ring deals 4 damage to target creature or player.|
-Amulet of Kroog|Fifth Edition|347|C|{2}|Artifact|||{2}, {tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Aladdin's Ring|Fifth Edition|346|R|{8}|Artifact|||{8}, {tap}: Aladdin's Ring deals 4 damage to any target.|
+Amulet of Kroog|Fifth Edition|347|C|{2}|Artifact|||{2}, {tap}: Prevent the next 1 damage that would be dealt to any target this turn.|
Ankh of Mishra|Fifth Edition|348|R|{2}|Artifact|||Whenever a land enters the battlefield, Ankh of Mishra deals 2 damage to that land's controller.|
Ashnod's Altar|Fifth Edition|349|U|{3}|Artifact|||Sacrifice a creature: Add {C}{C}.|
Leshrac's Rite|Fifth Edition|35|U|{B}|Enchantment - Aura|||Enchant creature$Enchanted creature has swampwalk.|
Ashnod's Transmogrant|Fifth Edition|350|C|{1}|Artifact|||{tap}, Sacrifice Ashnod's Transmogrant: Put a +1/+1 counter on target nonartifact creature. That creature becomes an artifact in addition to its other types.|
-Barbed Sextant|Fifth Edition|351|C|{1}|Artifact|||{1}, {tap}, Sacrifice Barbed Sextant: Add one mana of any color to your mana pool. Draw a card at the beginning of the next turn's upkeep.|
+Barbed Sextant|Fifth Edition|351|C|{1}|Artifact|||{1}, {tap}, Sacrifice Barbed Sextant: Add one mana of any color. Draw a card at the beginning of the next turn's upkeep.|
Barl's Cage|Fifth Edition|352|R|{4}|Artifact|||{3}: Target creature doesn't untap during its controller's next untap step.|
Battering Ram|Fifth Edition|353|C|{2}|Artifact Creature - Construct|1|1|At the beginning of combat on your turn, Battering Ram gains banding until end of combat. (Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding you control are being blocked by a creature, you divide that creature's combat damage, not its controller, among any of the creatures it's blocking.)$Whenever Battering Ram becomes blocked by a Wall, destroy that Wall at end of combat.|
Bottle of Suleiman|Fifth Edition|354|R|{4}|Artifact|||{1}, Sacrifice Bottle of Suleiman: Flip a coin. If you lose the flip, Bottle of Suleiman deals 5 damage to you. If you win the flip, put a 5/5 colorless Djinn artifact creature token with flying onto the battlefield.|
@@ -7383,7 +7383,7 @@ Disrupting Scepter|Fifth Edition|365|R|{3}|Artifact|||{3}, {tap}: Target player
Dragon Engine|Fifth Edition|366|R|{3}|Artifact Creature - Construct|1|3|{2}: Dragon Engine gets +1/+0 until end of turn.|
Elkin Bottle|Fifth Edition|367|R|{3}|Artifact|||{3}, {tap}: Exile the top card of your library. Until the beginning of your next upkeep, you may play that card.|
Feldon's Cane|Fifth Edition|368|U|{1}|Artifact|||{tap}, Exile Feldon's Cane: Shuffle your graveyard into your library.|
-Fellwar Stone|Fifth Edition|369|U|{2}|Artifact|||{tap}: Add to your mana pool one mana of any color that a land an opponent controls could produce.|
+Fellwar Stone|Fifth Edition|369|U|{2}|Artifact|||{tap}: Add one mana of any color that a land an opponent controls could produce.|
Lost Soul|Fifth Edition|37|C|{1}{B}{B}|Creature - Spirit Minion|2|1|Swampwalk|
Feroz's Ban|Fifth Edition|370|R|{6}|Artifact|||Creature spells cost {2} more to cast.|
Flying Carpet|Fifth Edition|371|R|{4}|Artifact|||{2}, {tap}: Target creature gains flying until end of turn.|
@@ -7413,10 +7413,10 @@ Obelisk of Undoing|Fifth Edition|392|R|{1}|Artifact|||{6}, {tap}: Return target
Ornithopter|Fifth Edition|393|U|{0}|Artifact Creature - Thopter|0|2|Flying|
Pentagram of the Ages|Fifth Edition|394|R|{4}|Artifact|||{4}, {tap}: The next time a source of your choice would deal damage to you this turn, prevent that damage.|
Primal Clay|Fifth Edition|395|R|{4}|Artifact Creature - Shapeshifter|*|*|As Primal Clay enters the battlefield, it becomes your choice of a 3/3 artifact creature, a 2/2 artifact creature with flying, or a 1/6 Wall artifact creature with defender in addition to its other types. (A creature with defender can't attack.)|
-Rod of Ruin|Fifth Edition|396|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to target creature or player.|
+Rod of Ruin|Fifth Edition|396|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to any target.|
Serpent Generator|Fifth Edition|397|R|{6}|Artifact|||{4}, {tap}: Put a 1/1 colorless Snake artifact creature token onto the battlefield. It has "Whenever this creature deals damage to a player, that player gets a poison counter." (A player with ten or more poison counters loses the game.)|
Shapeshifter|Fifth Edition|398|U|{6}|Artifact Creature - Shapeshifter|*|7-*|As Shapeshifter enters the battlefield, choose a number between 0 and 7.$At the beginning of your upkeep, you may choose a number between 0 and 7.$Shapeshifter's power is equal to the last chosen number and its toughness is equal to 7 minus that number.|
-Skull Catapult|Fifth Edition|399|U|{4}|Artifact|||{1}, {tap}, Sacrifice a creature: Skull Catapult deals 2 damage to target creature or player.|
+Skull Catapult|Fifth Edition|399|U|{4}|Artifact|||{1}, {tap}, Sacrifice a creature: Skull Catapult deals 2 damage to any target.|
Bad Moon|Fifth Edition|4|R|{1}{B}|Enchantment|||Black creatures get +1/+1.|
Shield Bearer|Fifth Edition|4|C|{1}{W}|Creature - Human Soldier|0|3|Banding (Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding you control are blocking or being blocked by a creature, you divide that creature's combat damage, not its controller, among any of the creatures it's being blocked by or is blocking.)|
Mindstab Thrull|Fifth Edition|40|C|{1}{B}{B}|Creature - Thrull|2|2|Whenever Mindstab Thrull attacks and isn't blocked, you may sacrifice it. If you do, defending player discards three cards.|
@@ -7434,7 +7434,7 @@ Mole Worms|Fifth Edition|41|U|{2}{B}|Creature - Worm|1|1|You may choose not to u
Adarkar Wastes|Fifth Edition|410|R||Land|||{tap}: Add {C}.${tap}: Add {W} or {U}. Adarkar Wastes deals 1 damage to you.|
Bottomless Vault|Fifth Edition|411|R||Land|||Bottomless Vault enters the battlefield tapped.$You may choose not to untap Bottomless Vault during your untap step.$At the beginning of your upkeep, if Bottomless Vault is tapped, put a storage counter on it.${tap}, Remove any number of storage counters from Bottomless Vault: Add {B} for each storage counter removed this way.|
Brushland|Fifth Edition|412|R||Land|||{tap}: Add {C}.${tap}: Add {G} or {W}. Brushland deals 1 damage to you.|
-City of Brass|Fifth Edition|413|R||Land|||Whenever City of Brass becomes tapped, it deals 1 damage to you.${tap}: Add one mana of any color to your mana pool.|
+City of Brass|Fifth Edition|413|R||Land|||Whenever City of Brass becomes tapped, it deals 1 damage to you.${tap}: Add one mana of any color.|
Dwarven Hold|Fifth Edition|414|R||Land|||Dwarven Hold enters the battlefield tapped.$You may choose not to untap Dwarven Hold during your untap step.$At the beginning of your upkeep, if Dwarven Hold is tapped, put a storage counter on it.${tap}, Remove any number of storage counters from Dwarven Hold: Add {R} for each storage counter removed this way.|
Dwarven Ruins|Fifth Edition|415|U||Land|||Dwarven Ruins enters the battlefield tapped.${tap}: Add {R}.${tap}, Sacrifice Dwarven Ruins: Add {R}{R}.|
Ebon Stronghold|Fifth Edition|416|U||Land|||Ebon Stronghold enters the battlefield tapped.${tap}: Add {B}.${tap}, Sacrifice Ebon Stronghold: Add {B}{B}.|
@@ -7541,7 +7541,7 @@ Wall of Water|Fourth Edition|114|U|{1}{U}{U}|Creature - Wall|0|5|Defender (Th
Water Elemental|Fourth Edition|115|U|{3}{U}{U}|Creature - Elemental|5|4||
Zephyr Falcon|Fourth Edition|116|C|{1}{U}|Creature - Bird|1|1|Flying, vigilance|
Aspect of Wolf|Fourth Edition|117|R|{1}{G}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +X/+Y, where X is half the number of Forests you control, rounded down, and Y is half the number of Forests you control, rounded up.|
-Birds of Paradise|Fourth Edition|118|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color to your mana pool.|
+Birds of Paradise|Fourth Edition|118|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color.|
Carnivorous Plant|Fourth Edition|119|C|{3}{G}|Creature - Plant Wall|4|5|Defender|
Cyclopean Mummy|Fourth Edition|12|C|{1}{B}|Creature - Zombie|2|1|When Cyclopean Mummy dies, exile it.|
Channel|Fourth Edition|120|U|{G}{G}|Sorcery|||Until end of turn, any time you could activate a mana ability, you may pay 1 life. If you do, add {C}.|
@@ -7587,7 +7587,7 @@ Stream of Life|Fourth Edition|156|C|{X}{G}|Sorcery|||Target player gains X life.
Sylvan Library|Fourth Edition|157|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.|
Thicket Basilisk|Fourth Edition|158|U|{3}{G}{G}|Creature - Basilisk|2|4|Whenever Thicket Basilisk blocks or becomes blocked by a non-Wall creature, destroy that creature at end of combat.|
Timber Wolves|Fourth Edition|159|R|{G}|Creature - Wolf|1|1|Banding (Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding you control are blocking or being blocked by a creature, you divide that creature's combat damage, not its controller, among any of the creatures it's being blocked by or is blocking.)|
-Drain Life|Fourth Edition|16|C|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Drain Life deals X damage to target creature or player. You gain life equal to the damage dealt, but not more life than the player's life total before Drain Life dealt damage or the creature's toughness.|
+Drain Life|Fourth Edition|16|C|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Drain Life deals X damage to any target. You gain life equal to the damage dealt, but not more life than the player's life total before Drain Life dealt damage or the creature's toughness.|
Titania's Song|Fourth Edition|160|R|{3}{G}|Enchantment|||Each noncreature artifact loses all abilities and becomes an artifact creature with power and toughness each equal to its converted mana cost. If Titania's Song leaves the battlefield, this effect continues until end of turn.|
Tranquility|Fourth Edition|161|C|{2}{G}|Sorcery|||Destroy all enchantments.|
Tsunami|Fourth Edition|162|U|{3}{G}|Sorcery|||Destroy all Islands.|
@@ -7617,7 +7617,7 @@ Ali Baba|Fourth Edition|193|U|{R}|Creature - Human Rogue|1|1|{R}: Tap target Wal
Ball Lightning|Fourth Edition|194|R|{R}{R}{R}|Creature - Elemental|6|1|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.)$Haste (This creature can attack and {tap} as soon as it comes under your control.)$At the beginning of the end step, sacrifice Ball Lightning.|
Bird Maiden|Fourth Edition|195|C|{2}{R}|Creature - Human Bird|1|2|Flying|
Blood Lust|Fourth Edition|196|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.|
-Brothers of Fire|Fourth Edition|197|C|{1}{R}{R}|Creature - Human Shaman|2|2|{1}{R}{R}: Brothers of Fire deals 1 damage to target creature or player and 1 damage to you.|
+Brothers of Fire|Fourth Edition|197|C|{1}{R}{R}|Creature - Human Shaman|2|2|{1}{R}{R}: Brothers of Fire deals 1 damage to any target and 1 damage to you.|
Burrowing|Fourth Edition|198|U|{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has mountainwalk.|
Cave People|Fourth Edition|199|U|{1}{R}{R}|Creature - Human|1|4|Whenever Cave People attacks, it gets +1/-2 until end of turn.${1}{R}{R}, {tap}: Target creature gains mountainwalk until end of turn.|
Animate Dead|Fourth Edition|2|U|{1}{B}|Enchantment - Aura|||Enchant creature card in a graveyard$When Animate Dead enters the battlefield, if it's on the battlefield, it loses "enchant creature card in a graveyard" and gains "enchant creature put onto the battlefield with Animate Dead." Return enchanted creature card to the battlefield under your control and attach Animate Dead to it. When Animate Dead leaves the battlefield, that creature's controller sacrifices it.$Enchanted creature gets -1/-0.|
@@ -7626,7 +7626,7 @@ Evil Presence|Fourth Edition|20|U|{B}|Enchantment - Aura|||Enchant land$Enchante
Chaoslace|Fourth Edition|200|R|{R}|Instant|||Target spell or permanent becomes red. (Its mana symbols remain unchanged.)|
Crimson Manticore|Fourth Edition|201|R|{2}{R}{R}|Creature - Manticore|2|2|Flying${R}, {tap}: Crimson Manticore deals 1 damage to target attacking or blocking creature.|
Detonate|Fourth Edition|202|U|{X}{R}|Sorcery|||Destroy target artifact with converted mana cost X. It can't be regenerated. Detonate deals X damage to that artifact's controller.|
-Disintegrate|Fourth Edition|203|C|{X}{R}|Sorcery|||Disintegrate deals X damage to target creature or player. That creature can't be regenerated this turn. If the creature would die this turn, exile it instead.|
+Disintegrate|Fourth Edition|203|C|{X}{R}|Sorcery|||Disintegrate deals X damage to any target. That creature can't be regenerated this turn. If the creature would die this turn, exile it instead.|
Dragon Whelp|Fourth Edition|204|U|{2}{R}{R}|Creature - Dragon|2|3|Flying${R}: Dragon Whelp gets +1/+0 until end of turn. If this ability has been activated four or more times this turn, sacrifice Dragon Whelp at the beginning of the next end step.|
Dwarven Warriors|Fourth Edition|205|C|{2}{R}|Creature - Dwarf Warrior|1|1|{tap}: Target creature with power 2 or less is unblockable this turn.|
Earth Elemental|Fourth Edition|206|U|{3}{R}{R}|Creature - Elemental|4|5||
@@ -7651,14 +7651,14 @@ Immolation|Fourth Edition|222|C|{R}|Enchantment - Aura|||Enchant creature$Enchan
Inferno|Fourth Edition|223|R|{5}{R}{R}|Instant|||Inferno deals 6 damage to each creature and each player.|
Ironclaw Orcs|Fourth Edition|224|C|{1}{R}|Creature - Orc|2|2|Ironclaw Orcs can't block creatures with power 2 or greater.|
Keldon Warlord|Fourth Edition|225|U|{2}{R}{R}|Creature - Human Barbarian|*|*|Keldon Warlord's power and toughness are each equal to the number of non-Wall creatures you control.|
-Lightning Bolt|Fourth Edition|226|C|{R}|Instant|||Lightning Bolt deals 3 damage to target creature or player.|
+Lightning Bolt|Fourth Edition|226|C|{R}|Instant|||Lightning Bolt deals 3 damage to any target.|
Magnetic Mountain|Fourth Edition|227|R|{1}{R}{R}|Enchantment|||Blue creatures don't untap during their controllers' untap steps.$At the beginning of each player's upkeep, that player may choose any number of tapped blue creatures he or she controls and pay {4} for each creature chosen this way. If the player does, untap those creatures.|
Mana Clash|Fourth Edition|228|R|{R}|Sorcery|||You and target opponent each flip a coin. Mana Clash deals 1 damage to each player whose coin comes up tails. Repeat this process until both players' coins come up heads on the same flip.|
Mana Flare|Fourth Edition|229|R|{2}{R}|Enchantment|||Whenever a player taps a land for mana, that player adds one mana to his or her mana pool of any type that land produced.|
Gloom|Fourth Edition|23|U|{2}{B}|Enchantment|||White spells cost {3} more to cast.$Activated abilities of white enchantments cost {3} more to activate.|
Manabarbs|Fourth Edition|230|R|{3}{R}|Enchantment|||Whenever a player taps a land for mana, Manabarbs deals 1 damage to that player.|
Mons's Goblin Raiders|Fourth Edition|231|C|{R}|Creature - Goblin|1|1||
-Orcish Artillery|Fourth Edition|232|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Artillery deals 2 damage to target creature or player and 3 damage to you.|
+Orcish Artillery|Fourth Edition|232|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Artillery deals 2 damage to any target and 3 damage to you.|
Orcish Oriflamme|Fourth Edition|233|U|{3}{R}|Enchantment|||Attacking creatures you control get +1/+0.|
Power Surge|Fourth Edition|234|R|{R}{R}|Enchantment|||At the beginning of each player's upkeep, Power Surge deals X damage to that player, where X is the number of untapped lands he or she controlled at the beginning of this turn.|
Pyrotechnics|Fourth Edition|235|U|{4}{R}|Sorcery|||Pyrotechnics deals 4 damage divided as you choose among any number of target creatures and/or players.|
@@ -7678,7 +7678,7 @@ Wall of Fire|Fourth Edition|248|U|{1}{R}{R}|Creature - Wall|0|5|Defender (Thi
Wall of Stone|Fourth Edition|249|U|{1}{R}{R}|Creature - Wall|0|8|Defender (This creature can't attack.)|
Howl from Beyond|Fourth Edition|25|C|{X}{B}|Instant|||Target creature gets +X/+0 until end of turn.|
Winds of Change|Fourth Edition|250|R|{R}|Sorcery|||Each player shuffles the cards from his or her hand into his or her library, then draws that many cards.|
-Alabaster Potion|Fourth Edition|251|C|{X}{W}{W}|Instant|||Choose one - Target player gains X life; or prevent the next X damage that would be dealt to target creature or player this turn.|
+Alabaster Potion|Fourth Edition|251|C|{X}{W}{W}|Instant|||Choose one - Target player gains X life; or prevent the next X damage that would be dealt to any target this turn.|
Amrou Kithkin|Fourth Edition|252|C|{W}{W}|Creature - Kithkin|1|1|Amrou Kithkin can't be blocked by creatures with power 3 or greater.|
Angry Mob|Fourth Edition|253|U|{2}{W}{W}|Creature - Human|2+*|2+*|Trample$As long as it's your turn, Angry Mob's power and toughness are each equal to 2 plus the number of Swamps your opponents control. As long as it's not your turn, Angry Mob's power and toughness are each 2.|
Animate Wall|Fourth Edition|254|R|{W}|Enchantment - Aura|||Enchant Wall$Enchanted Wall can attack as though it didn't have defender.|
@@ -7706,7 +7706,7 @@ Elder Land Wurm|Fourth Edition|274|R|{4}{W}{W}{W}|Creature - Dragon Wurm|5|5|Def
Eye for an Eye|Fourth Edition|275|R|{W}{W}|Instant|||The next time a source of your choice would deal damage to you this turn, instead that source deals that much damage to you and Eye for an Eye deals that much damage to that source's controller.|
Fortified Area|Fourth Edition|276|C|{1}{W}{W}|Enchantment|||Wall creatures you control get +1/+0 and have banding. (Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding you control are blocking or being blocked by a creature, you divide that creature's combat damage, not its controller, among any of the creatures it's being blocked by or is blocking.)|
Green Ward|Fourth Edition|277|U|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature has protection from green. This effect doesn't remove Green Ward.|
-Healing Salve|Fourth Edition|278|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to target creature or player this turn.|
+Healing Salve|Fourth Edition|278|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to any target this turn.|
Holy Armor|Fourth Edition|279|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +0/+2.${W}: Enchanted creature gets +0/+1 until end of turn.|
Lord of the Pit|Fourth Edition|28|R|{4}{B}{B}{B}|Creature - Demon|7|7|Flying, trample$At the beginning of your upkeep, sacrifice a creature other than Lord of the Pit. If you can't, Lord of the Pit deals 7 damage to you.|
Holy Strength|Fourth Edition|280|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+2.|
@@ -7727,7 +7727,7 @@ Purelace|Fourth Edition|293|R|{W}|Instant|||Target spell or permanent becomes wh
Red Ward|Fourth Edition|294|U|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature has protection from red. This effect doesn't remove Red Ward.|
Reverse Damage|Fourth Edition|295|R|{1}{W}{W}|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.|
Righteousness|Fourth Edition|296|R|{W}|Instant|||Target blocking creature gets +7/+7 until end of turn.|
-Samite Healer|Fourth Edition|297|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Samite Healer|Fourth Edition|297|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.|
Savannah Lions|Fourth Edition|298|R|{W}|Creature - Cat|2|1||
Ashes to Ashes|Fourth Edition|3|U|{1}{B}{B}|Sorcery|||Exile two target nonartifact creatures. Ashes to Ashes deals 5 damage to you.|
Marsh Gas|Fourth Edition|30|C|{B}|Instant|||All creatures get -2/-0 until end of turn.|
@@ -7741,8 +7741,8 @@ White Ward|Fourth Edition|307|U|{W}|Enchantment - Aura|||Enchant creature$Enchan
Wrath of God|Fourth Edition|308|R|{2}{W}{W}|Sorcery|||Destroy all creatures. They can't be regenerated.|
Aladdin's Lamp|Fourth Edition|309|R|{10}|Artifact|||{X}, {tap}: The next time you would draw a card this turn, instead look at the top X cards of your library, put all but one of them on the bottom of your library in a random order, then draw a card. X can't be 0.|
Mind Twist|Fourth Edition|31|R|{X}{B}|Sorcery|||Target player discards X cards at random.|
-Aladdin's Ring|Fourth Edition|310|R|{8}|Artifact|||{8}, {tap}: Aladdin's Ring deals 4 damage to target creature or player.|
-Amulet of Kroog|Fourth Edition|311|C|{2}|Artifact|||{2}, {tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Aladdin's Ring|Fourth Edition|310|R|{8}|Artifact|||{8}, {tap}: Aladdin's Ring deals 4 damage to any target.|
+Amulet of Kroog|Fourth Edition|311|C|{2}|Artifact|||{2}, {tap}: Prevent the next 1 damage that would be dealt to any target this turn.|
Ankh of Mishra|Fourth Edition|312|R|{2}|Artifact|||Whenever a land enters the battlefield, Ankh of Mishra deals 2 damage to that land's controller.|
Armageddon Clock|Fourth Edition|313|R|{6}|Artifact|||At the beginning of your upkeep, put a doom counter on Armageddon Clock.$At the beginning of your draw step, Armageddon Clock deals damage equal to the number of doom counters on it to each player.${4}: Remove a doom counter from Armageddon Clock. Any player may activate this ability but only during any upkeep step.|
Ashnod's Battle Gear|Fourth Edition|314|U|{2}|Artifact|||You may choose not to untap Ashnod's Battle Gear during your untap step.${2}, {tap}: Target creature you control gets +2/-2 for as long as Ashnod's Battle Gear remains tapped.|
@@ -7754,7 +7754,7 @@ Bottle of Suleiman|Fourth Edition|319|R|{4}|Artifact|||{1}, Sacrifice Bottle of
Murk Dwellers|Fourth Edition|32|C|{3}{B}|Creature - Zombie|2|2|Whenever Murk Dwellers attacks and isn't blocked, it gets +2/+0 until end of combat.|
Brass Man|Fourth Edition|320|U|{1}|Artifact Creature - Construct|1|3|Brass Man doesn't untap during your untap step.$At the beginning of your upkeep, you may pay {1}. If you do, untap Brass Man.|
Bronze Tablet|Fourth Edition|321|R|{6}|Artifact|||Remove Bronze Tablet from your deck before playing if you're not playing for ante.$Bronze Tablet enters the battlefield tapped.${4}, {tap}: Exile Bronze Tablet and target nontoken permanent an opponent owns. That player may pay 10 life. If he or she does, put Bronze Tablet into its owner's graveyard. Otherwise, that player owns Bronze Tablet and you own the other exiled card.|
-Celestial Prism|Fourth Edition|322|U|{3}|Artifact|||{2}, {tap}: Add one mana of any color to your mana pool.|
+Celestial Prism|Fourth Edition|322|U|{3}|Artifact|||{2}, {tap}: Add one mana of any color.|
Clay Statue|Fourth Edition|323|C|{4}|Artifact Creature - Golem|3|1|{2}: Regenerate Clay Statue.|
Clockwork Avian|Fourth Edition|324|R|{5}|Artifact Creature - Bird|0|4|Flying$Clockwork Avian enters the battlefield with four +1/+0 counters on it.$At end of combat, if Clockwork Avian attacked or blocked this combat, remove a +1/+0 counter from it.${X}, {tap}: Put up to X +1/+0 counters on Clockwork Avian. This ability can't cause the total number of +1/+0 counters on Clockwork Avian to be greater than four. Activate this ability only during your upkeep.|
Clockwork Beast|Fourth Edition|325|R|{6}|Artifact Creature - Beast|0|4|Clockwork Beast enters the battlefield with seven +1/+0 counters on it.$At end of combat, if Clockwork Beast attacked or blocked this combat, remove a +1/+0 counter from it.${X}, {tap}: Put up to X +1/+0 counters on Clockwork Beast. This ability can't cause the total number of +1/+0 counters on Clockwork Beast to be greater than seven. Activate this ability only during your upkeep.|
@@ -7770,7 +7770,7 @@ Dingus Egg|Fourth Edition|333|R|{4}|Artifact|||Whenever a land is put into a gra
Disrupting Scepter|Fourth Edition|334|R|{3}|Artifact|||{3}, {tap}: Target player discards a card. Activate this ability only during your turn.|
Dragon Engine|Fourth Edition|335|R|{3}|Artifact Creature - Construct|1|3|{2}: Dragon Engine gets +1/+0 until end of turn.|
Ebony Horse|Fourth Edition|336|R|{3}|Artifact|||{2}, {tap}: Untap target attacking creature you control. Prevent all combat damage that would be dealt to and dealt by that creature this turn.|
-Fellwar Stone|Fourth Edition|337|U|{2}|Artifact|||{tap}: Add to your mana pool one mana of any color that a land an opponent controls could produce.|
+Fellwar Stone|Fourth Edition|337|U|{2}|Artifact|||{tap}: Add one mana of any color that a land an opponent controls could produce.|
Flying Carpet|Fourth Edition|338|R|{4}|Artifact|||{2}, {tap}: Target creature gains flying until end of turn.|
Glasses of Urza|Fourth Edition|339|U|{1}|Artifact|||{tap}: Look at target player's hand.|
Nightmare|Fourth Edition|34|R|{5}{B}|Creature - Nightmare Horse|*|*|Flying$Nightmare's power and toughness are each equal to the number of Swamps you control.|
@@ -7799,7 +7799,7 @@ Pestilence|Fourth Edition|36|C|{2}{B}{B}|Enchantment|||At the beginning of the e
Visions|Fourth Edition|36|U|{W}|Sorcery|||Look at the top five cards of target player's library. You may then have that player shuffle that library.|
Primal Clay|Fourth Edition|360|R|{4}|Artifact Creature - Shapeshifter|*|*|As Primal Clay enters the battlefield, it becomes your choice of a 3/3 artifact creature, a 2/2 artifact creature with flying, or a 1/6 Wall artifact creature with defender in addition to its other types. (A creature with defender can't attack.)|
Red Mana Battery|Fourth Edition|361|R|{4}|Artifact|||{2}, {tap}: Put a charge counter on Red Mana Battery.$${tap}, Remove any number of charge counters from Red Mana Battery: Add {R}, then add an additional {R} for each charge counter removed this way.|
-Rod of Ruin|Fourth Edition|362|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to target creature or player.|
+Rod of Ruin|Fourth Edition|362|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to any target.|
Shapeshifter|Fourth Edition|363|U|{6}|Artifact Creature - Shapeshifter|*|7-*|As Shapeshifter enters the battlefield, choose a number between 0 and 7.$At the beginning of your upkeep, you may choose a number between 0 and 7.$Shapeshifter's power is equal to the last chosen number and its toughness is equal to 7 minus that number.|
Soul Net|Fourth Edition|364|U|{1}|Artifact|||Whenever a creature dies, you may pay {1}. If you do, you gain 1 life.|
Sunglasses of Urza|Fourth Edition|365|R|{3}|Artifact|||You may spend white mana as though it were red mana.|
@@ -7810,7 +7810,7 @@ The Hive|Fourth Edition|369|R|{5}|Artifact|||{5}, {tap}: Put a 1/1 colorless Ins
Pit Scorpion|Fourth Edition|37|C|{2}{B}|Creature - Scorpion|1|1|Whenever Pit Scorpion deals damage to a player, that player gets a poison counter. (A player with ten or more poison counters loses the game.)|
The Rack|Fourth Edition|370|U|{1}|Artifact|||As The Rack enters the battlefield, choose an opponent.$At the beginning of the chosen player's upkeep, The Rack deals X damage to that player, where X is 3 minus the number of cards in his or her hand.|
Throne of Bone|Fourth Edition|371|U|{1}|Artifact|||Whenever a player casts a black spell, you may pay {1}. If you do, you gain 1 life.|
-Triskelion|Fourth Edition|372|R|{6}|Artifact Creature - Construct|1|1|Triskelion enters the battlefield with three +1/+1 counters on it.$Remove a +1/+1 counter from Triskelion: Triskelion deals 1 damage to target creature or player.|
+Triskelion|Fourth Edition|372|R|{6}|Artifact Creature - Construct|1|1|Triskelion enters the battlefield with three +1/+1 counters on it.$Remove a +1/+1 counter from Triskelion: Triskelion deals 1 damage to any target.|
Urza's Avenger|Fourth Edition|373|R|{6}|Artifact Creature - Shapeshifter|4|4|{0}: Urza's Avenger gets -1/-1 and gains your choice of banding, flying, first strike, or trample until end of turn. (Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding you control are blocking or being blocked by a creature, you divide that creature's combat damage, not its controller, among any of the creatures it's being blocked by or is blocking.)|
Rebirth|Fourth Edition|373|R|{3}{G}{G}{G}|Sorcery|||Remove Rebirth from your deck before playing if you're not playing for ante.$$Each player may put the top card of his or her library into the ante. If a player does, his or her life total becomes 20.|
Wall of Spears|Fourth Edition|374|C|{3}|Artifact Creature - Wall|2|3|Defender (This creature can't attack.)$First strike|
@@ -7877,11 +7877,11 @@ Phantasmal Forces|Fourth Edition|88|U|{3}{U}|Creature - Illusion|4|1|Flying$At t
Phantasmal Terrain|Fourth Edition|89|C|{U}{U}|Enchantment - Aura|||Enchant land$As Phantasmal Terrain enters the battlefield, choose a basic land type.$Enchanted land is the chosen type.|
Carrion Ants|Fourth Edition|9|U|{2}{B}{B}|Creature - Insect|0|1|{1}: Carrion Ants gets +1/+1 until end of turn.|
Phantom Monster|Fourth Edition|90|U|{3}{U}|Creature - Illusion|3|3|Flying|
-Pirate Ship|Fourth Edition|91|R|{4}{U}|Creature - Human Pirate|4|3|Pirate Ship can't attack unless defending player controls an Island.${tap}: Pirate Ship deals 1 damage to target creature or player.$When you control no Islands, sacrifice Pirate Ship.|
+Pirate Ship|Fourth Edition|91|R|{4}{U}|Creature - Human Pirate|4|3|Pirate Ship can't attack unless defending player controls an Island.${tap}: Pirate Ship deals 1 damage to any target.$When you control no Islands, sacrifice Pirate Ship.|
Power Leak|Fourth Edition|92|C|{1}{U}|Enchantment - Aura|||Enchant enchantment$At the beginning of the upkeep of enchanted enchantment's controller, that player may pay any amount of mana. Power Leak deals 2 damage to that player. Prevent X of that damage, where X is the amount of mana that player paid this way.|
Power Sink|Fourth Edition|93|C|{X}{U}|Instant|||Counter target spell unless its controller pays {X}. If he or she doesn't, that player taps all lands with mana abilities he or she controls and empties his or her mana pool.|
-Prodigal Sorcerer|Fourth Edition|94|C|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to target creature or player.|
-Psionic Entity|Fourth Edition|95|R|{4}{U}|Creature - Illusion|2|2|{tap}: Psionic Entity deals 2 damage to target creature or player and 3 damage to itself.|
+Prodigal Sorcerer|Fourth Edition|94|C|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to any target.|
+Psionic Entity|Fourth Edition|95|R|{4}{U}|Creature - Illusion|2|2|{tap}: Psionic Entity deals 2 damage to any target and 3 damage to itself.|
Psychic Venom|Fourth Edition|96|C|{1}{U}|Enchantment - Aura|||Enchant land$Whenever enchanted land becomes tapped, Psychic Venom deals 2 damage to that land's controller.|
Venom|Fourth Edition|96|C|{1}{G}{G}|Enchantment - Aura|||Enchant creature$Whenever enchanted creature blocks or becomes blocked by a non-Wall creature, destroy the other creature at end of combat.|
Relic Bind|Fourth Edition|97|R|{2}{U}|Enchantment - Aura|||Enchant artifact an opponent controls$Whenever enchanted artifact becomes tapped, choose one - Relic Bind deals 1 damage to target player; or target player gains 1 life.|
@@ -7890,12 +7890,12 @@ Segovian Leviathan|Fourth Edition|99|U|{4}{U}|Creature - Leviathan|3|3|Islandwal
River Boa|Friday Night Magic|1|U|{1}{G}|Creature Snake|2|1|Islandwalk${G}: Regenerate River Boa.|
Terror|Friday Night Magic|2|U|{1}{B}|Instant|||Destroy target nonartifact, nonblack creature. It can't be regenerated.|
Longbow Archer|Friday Night Magic|3|U|{W}{W}| Creature Human Soldier Archer|2|2|First strike$Reach (This creature can block creatures with flying.)|
-Volcanic Geyser|Friday Night Magic|4|U|{X}{R}{R}|Instant|||Volcanic Geyser deals X damage to target creature or player.|
+Volcanic Geyser|Friday Night Magic|4|U|{X}{R}{R}|Instant|||Volcanic Geyser deals X damage to any target.|
Mind Warp|Friday Night Magic|5|U|{X}{3}{B}|Sorcery|||Look at target player's hand and choose X cards from it. That player discards those cards.|
-Shock|Friday Night Magic|6|U|{R}|Instant|||Shock deals 2 damage to target creature or player.|
+Shock|Friday Night Magic|6|U|{R}|Instant|||Shock deals 2 damage to any target.|
Staunch Defenders|Friday Night Magic|7|U|{3}{W}{W}|Creature Human Soldier|3|4|When Staunch Defenders enters the battlefield, you gain 4 life.|
Giant Growth|Friday Night Magic|8|U|{G}|Instant|||Target creature gets +3/+3 until end of turn.|
-Prodigal Sorcerer|Friday Night Magic|9|U|{2}{U}|Creature Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to target creature or player.|
+Prodigal Sorcerer|Friday Night Magic|9|U|{2}{U}|Creature Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to any target.|
Stone Rain|Friday Night Magic|10|U|{2}{R}|Sorcery|||Destroy target land.|
Llanowar Elves|Friday Night Magic|11|U|{G}|Creature Elf Druid|1|1|{tap}: Add {G}.|
Swords to Plowshares|Friday Night Magic|12|U|{W}|Instant|||Exile target creature. Its controller gains life equal to its power.|
@@ -7904,18 +7904,18 @@ Jackal Pup|Friday Night Magic|14|U|{R}|Creature Hound|2|1|Whenever Jackal Pup
Quirion Ranger|Friday Night Magic|15|U|{G}|Creature Elf|1|1|Return a Forest you control to its owner's hand: Untap target creature. Activate this ability only once each turn.|
Carnophage|Friday Night Magic|16|U|{B}|Creature Zombie|2|2|At the beginning of your upkeep, tap Carnophage unless you pay 1 life.|
Impulse|Friday Night Magic|17|U|{1}{U}|Instant|||Look at the top four cards of your library. Put one of them into your hand and the rest on the bottom of your library in any order.|
-Fireblast|Friday Night Magic|18|U|{4}{R}{R}|Instant|||You may sacrifice two Mountains rather than pay Fireblast's mana cost.$Fireblast deals 4 damage to target creature or player.|
+Fireblast|Friday Night Magic|18|U|{4}{R}{R}|Instant|||You may sacrifice two Mountains rather than pay Fireblast's mana cost.$Fireblast deals 4 damage to any target.|
Soltari Priest|Friday Night Magic|19|U|{W}{W}|Creature Soltari Cleric|2|1|Protection from red$Shadow (This creature can block or be blocked by only creatures with shadow.)|
Albino Troll|Friday Night Magic|20|U|{1}{G}|Creature Troll|3|3|Echo {1}{G} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)${1}{G}: Regenerate Albino Troll.|
Dissipate|Friday Night Magic|21|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.|
Black Knight|Friday Night Magic|22|U|{B}{B}|Creature Human Knight|2|2|First strike (This creature deals combat damage before creatures without first strike.)$Protection from white (This creature can't be blocked, targeted, dealt damage, or enchanted by anything white.)|
Wall of Blossoms|Friday Night Magic|23|U|{1}{G}|Creature Plant Wall|0|4|Defender$When Wall of Blossoms enters the battlefield, draw a card.|
-Fireslinger|Friday Night Magic|24|U|{1}{R}|Creature Human Wizard|1|1|{tap}: Fireslinger deals 1 damage to target creature or player and 1 damage to you.|
-Drain Life|Friday Night Magic|25|U|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Drain Life deals X damage to target creature or player. You gain life equal to the damage dealt, but not more life than the player's life total before Drain Life dealt damage or the creature's toughness.|
+Fireslinger|Friday Night Magic|24|U|{1}{R}|Creature Human Wizard|1|1|{tap}: Fireslinger deals 1 damage to any target and 1 damage to you.|
+Drain Life|Friday Night Magic|25|U|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Drain Life deals X damage to any target. You gain life equal to the damage dealt, but not more life than the player's life total before Drain Life dealt damage or the creature's toughness.|
Aura of Silence|Friday Night Magic|26|U|{1}{W}{W}|Enchantment|||Artifact and enchantment spells your opponents cast cost {2} more to cast.$Sacrifice Aura of Silence: Destroy target artifact or enchantment.|
Forbid|Friday Night Magic|27|U|{1}{U}{U}|Instant|||Buyback Discard two cards. (You may discard two cards in addition to any other costs as you cast this spell. If you do, put this card into your hand as it resolves.)$Counter target spell.|
Spike Feeder|Friday Night Magic|28|U|{1}{G}{G}|Creature Spike|0|0|Spike Feeder enters the battlefield with two +1/+1 counters on it.${2}, Remove a +1/+1 counter from Spike Feeder: Put a +1/+1 counter on target creature.$Remove a +1/+1 counter from Spike Feeder: You gain 2 life.|
-Mogg Fanatic|Friday Night Magic|29|U|{R}|Creature Goblin|1|1|Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to target creature or player.|
+Mogg Fanatic|Friday Night Magic|29|U|{R}|Creature Goblin|1|1|Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to any target.|
White Knight|Friday Night Magic|30|U|{W}{W}|Creature Human Knight|2|2|First strike (This creature deals combat damage before creatures without first strike.)$Protection from black (This creature can't be blocked, targeted, dealt damage, or enchanted by anything black.)|
Disenchant|Friday Night Magic|31|U|{1}{W}|Instant|||Destroy target artifact or enchantment.|
Bottle Gnomes|Friday Night Magic|32|U|{3}|Artifact Creature Gnome|1|3|Sacrifice Bottle Gnomes: You gain 3 life.|
@@ -7923,7 +7923,7 @@ Muscle Sliver|Friday Night Magic|33|U|{1}{G}|Creature Sliver|1|1|All Sliver cr
Crystalline Sliver|Friday Night Magic|34|U|{W}{U}|Creature Sliver|2|2|All Slivers have shroud. (They can't be the targets of spells or abilities.)|
Capsize|Friday Night Magic|35|U|{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.|
Priest of Titania|Friday Night Magic|36|U|{1}{G}|Creature Elf Druid|1|1|{tap}: Add {G} for each Elf on the battlefield.|
-Goblin Bombardment|Friday Night Magic|37|U|{1}{R}|Enchantment|||Sacrifice a creature: Goblin Bombardment deals 1 damage to target creature or player.|
+Goblin Bombardment|Friday Night Magic|37|U|{1}{R}|Enchantment|||Sacrifice a creature: Goblin Bombardment deals 1 damage to any target.|
Scragnoth|Friday Night Magic|38|U|{4}{G}|Creature Beast|3|4|Scragnoth can't be countered.$Protection from blue|
Smother|Friday Night Magic|39|U|{1}{B}|Instant|||Destroy target creature with converted mana cost 3 or less. It can't be regenerated.|
Whipcorder|Friday Night Magic|40|U|{W}{W}|Creature Human Soldier Rebel|2|2|{W}, {tap}: Tap target creature.$Morph {W} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
@@ -7934,7 +7934,7 @@ Willbender|Friday Night Magic|44|U|{1}{U}|Creature Human Wizard|Morph {1}{U} <
Slice and Dice|Friday Night Magic|45|U|{4}{R}{R}|Sorcery|||Slice and Dice deals 4 damage to each creature.$Cycling {2}{R} ({2}{R}, Discard this card: Draw a card.)$When you cycle Slice and Dice, you may have it deal 1 damage to each creature.|
Silver Knight|Friday Night Magic|46|U|{W}{W}|Creature Human Knight|2|2|First strike$Protection from red|
Krosan Warchief|Friday Night Magic|47|U|{2}{G}|Creature Beast|2|2|Beast spells you cast cost {1} less to cast.${1}{G}: Regenerate target Beast.|
-Lightning Rift|Friday Night Magic|48|U|{1}{R}|Enchantment|||Whenever a player cycles a card, you may pay {1}. If you do, Lightning Rift deals 2 damage to target creature or player.|
+Lightning Rift|Friday Night Magic|48|U|{1}{R}|Enchantment|||Whenever a player cycles a card, you may pay {1}. If you do, Lightning Rift deals 2 damage to any target.|
Carrion Feeder|Friday Night Magic|49|U|{B}|Creature Zombie|1|1|Carrion Feeder can't block.$acrifice a creature: Put a +1/+1 counter on Carrion Feeder.|
Treetop Village|Friday Night Magic|50|U|||Land|||Treetop Village enters the battlefield tapped.${tap}: Add {G}.${1}{G}: Treetop Village becomes a 3/3 green Ape creature with trample until end of turn. It's still a land. (If it 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.)|
Accumulated Knowledge|Friday Night Magic|51|U|{1}{U}|Instant|||Draw a card, then draw cards equal to the number of cards named Accumulated Knowledge in all graveyards.|
@@ -7968,12 +7968,12 @@ Life|Friday Night Magic|78a|U|{G}|Sorcery|||All lands you control become 1/1 cre
Death|Friday Night Magic|78b|U|{1}{B}|Sorcery|||Return target creature card from your graveyard to the battlefield. You lose life equal to its converted mana cost.|
Fire|Friday Night Magic|79a|U|{1}{R}|Instant|||Fire deals 2 damage divided as you choose among one or two target creatures and/or players.|
Ice|Friday Night Magic|79b|U|{1}{U}|Instant|||Tap target permanent.$Draw a card.|
-Firebolt|Friday Night Magic|80|U|{R}|Sorcery|||Firebolt deals 2 damage to target creature or player.$Flashback {4}{R} $(You may cast this card from your graveyard for its flashback cost. Then exile it.)|
+Firebolt|Friday Night Magic|80|U|{R}|Sorcery|||Firebolt deals 2 damage to any target.$Flashback {4}{R} $(You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Deep Analysis|Friday Night Magic|81|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.)|
Gerrard's Verdict|Friday Night Magic|82|U|{W}{B}|Sorcery|||Target player discards two cards. You gain 3 life for each land card discarded this way.|
Basking Rootwalla|Friday Night Magic|83|U|{G}|Creature - Lizard|1|1|{1}{G}: Basking Rootwalla gets +2/+2 until end of turn. Activate this ability only once each turn.$Madness {0} (If you discard this card, you may cast it for its madness cost instead of putting it into your graveyard.)|
Wonder|Friday Night Magic|84|U|{3}{U}|Creature - Incarnation|2|2|Flying$As long as Wonder is in your graveyard and you control an Island, creatures you control have flying.|
-Goblin Legionnaire|Friday Night Magic|85|U|{W}{R}|Creature - Goblin Soldier|2|2|{R}, Sacrifice Goblin Legionnaire: Goblin Legionnaire deals 2 damage to target creature or player.${W}, Sacrifice Goblin Legionnaire: Prevent the next 2 damage that would be dealt to target creature or player this turn.|
+Goblin Legionnaire|Friday Night Magic|85|U|{W}{R}|Creature - Goblin Soldier|2|2|{R}, Sacrifice Goblin Legionnaire: Goblin Legionnaire deals 2 damage to any target.${W}, Sacrifice Goblin Legionnaire: Prevent the next 2 damage that would be dealt to any target this turn.|
Engineered Plague|Friday Night Magic|86|U|{2}{B}|Enchantment|||As Engineered Plague enters the battlefield, choose a creature type.$All creatures of the chosen type get -1/-1.|
Goblin Ringleader|Friday Night Magic|87|U|{3}{R}|Creature - Goblin|2|2|Haste$When Goblin Ringleader enters the battlefield, reveal the top four cards of your library. Put all Goblin cards revealed this way into your hand and the rest on the bottom of your library in any order.|
Wing Shards|Friday Night Magic|88|U|{1}{W}{W}|Instant|||Target player sacrifices an attacking creature.$Storm (When you cast this spell, copy it for each spell cast before it this turn.)|
@@ -7991,14 +7991,14 @@ Desert|Friday Night Magic|99|U||Land - Desert|||{T}: Add {C}.${T}: Desert deals
Thirst for Knowledge|Friday Night Magic|100|U|{2}{U}|Instant|||Draw three cards. Then discard two cards unless you discard an artifact card.|
Serrated Arrows|Friday Night Magic|101|U|{4}|Artifact|||Serrated Arrows enters the battlefield with three arrowhead counters on it.$At the beginning of your upkeep, if there are no arrowhead counters on Serrated Arrows, sacrifice it.${T}, Remove an arrowhead counter from Serrated Arrows: Put a -1/-1 counter on target creature.|
Isochron Scepter|Friday Night Magic|102|U|{2}|Artifact|||Imprint When Isochron Scepter enters the battlefield, you may exile an instant card with converted mana cost 2 or less from your hand.${2}, {T}: You may copy the exiled card. If you do, you may cast the copy without paying its mana cost.|
-Shrapnel Blast|Friday Night Magic|103|U|{1}{R}|Instant|||As an additional cost to cast Shrapnel Blast, sacrifice an artifact.$Shrapnel Blast deals 5 damage to target creature or player.|
-Magma Jet|Friday Night Magic|104|U|{1}{R}|Instant|||Magma Jet deals 2 damage to target creature or player. Scry 2. (Look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)|
+Shrapnel Blast|Friday Night Magic|103|U|{1}{R}|Instant|||As an additional cost to cast Shrapnel Blast, sacrifice an artifact.$Shrapnel Blast deals 5 damage to any target.|
+Magma Jet|Friday Night Magic|104|U|{1}{R}|Instant|||Magma Jet deals 2 damage to any target. Scry 2. (Look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)|
Myr Enforcer|Friday Night Magic|105|U|{7}|Artifact Creature Myr|4|4|Affinity for artifacts (This spell costs {1} less to cast for each artifact you control.)|
Kitchen Finks|Friday Night Magic|106|U|{1}{GW}{GW}|Creature Ouphe|3|2|When Kitchen Finks enters the battlefield, you gain 2 life.$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.)|
Merrow Reejerey|Friday Night Magic|107|U|{2}{U}|Creature Merfolk Soldier|2|2|Other Merfolk creatures you control get +1/+1.$Whenever you cast a Merfolk spell, you may tap or untap target permanent.|
Wren's Run Vanquisher|Friday Night Magic|108|U|{1}{G}|Creature Elf Warrior|3|3|As an additional cost to cast Wren's Run Vanquisher, reveal an Elf card from your hand or pay {3}.$Deathtouch (Any amount of damage this deals to a creature is enough to destroy it.)|
Mulldrifter|Friday Night Magic|109|U|{4}{U}|Creature Elemental|2|2|Flying$When Mulldrifter enters the battlefield, draw two cards.$Evoke {2}{U} (You may cast this spell for its evoke cost. If you do, it's sacrificed when it enters the battlefield.)|
-Murderous Redcap|Friday Night Magic|110|U|{2}{BR}{BR}|Creature Goblin Assassin|2|2|When Murderous Redcap enters the battlefield, it deals damage equal to its power to target creature or player.$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.)|
+Murderous Redcap|Friday Night Magic|110|U|{2}{BR}{BR}|Creature Goblin Assassin|2|2|When Murderous Redcap enters the battlefield, it deals damage equal to its power to any target.$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.)|
Lightning Greaves|Friday Night Magic|111|U|{2}|Artifact Equipment|||Equipped creature has haste and shroud. (It can't be the target of spells or abilities.)$Equip {0}|
Watchwolf|Friday Night Magic|112|U|{W}{G}|Creature Wolf|3|3||
Browbeat|Friday Night Magic|113|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.|
@@ -8006,14 +8006,14 @@ Oblivion Ring|Friday Night Magic|114|U|{2}{W}|Enchantment|||When Oblivion Ring e
Sakura-Tribe Elder|Friday Night Magic|115|U|{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.|
Tidehollow Sculler|Friday Night Magic|116|U|{W}{B}|Artifact Zombie Creature|2|2|When Tidehollow Sculler enters the battlefield, target opponent reveals his or her hand and you choose a nonland card from it. Exile that card.$When Tidehollow Sculler leaves the battlefield, return the exiled card to its owner's hand.|
Ghostly Prison|Friday Night Magic|117|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.|
-Ancient Ziggurat|Friday Night Magic|118|U||Land|||{T}: Add one mana of any color to your mana pool. Spend this mana only to cast a creature spell.|
+Ancient Ziggurat|Friday Night Magic|118|U||Land|||{T}: Add one mana of any color. Spend this mana only to cast a creature spell.|
Bloodbraid Elf|Friday Night Magic|119|U|{2}{R}{G}|Creature Elf Berserker|3|2|Haste$Cascade (When you cast this spell, exile cards from the top of your library until you exile a nonland card that costs less. You may cast it without paying its mana cost. Put the exiled cards on the bottom in a random order.)|
Cloudpost|Friday Night Magic|120|U||Land - Locus|||Cloudpost enters the battlefield tapped.${T}: Add {C} for each Locus on the battlefield.|
Elvish Visionary|Friday Night Magic|121|U|{1}{G}|Creature Elf Shaman|1|1|When Elvish Visionary enters the battlefield, draw a card.|
Anathemancer|Friday Night Magic|122|U|{1}{B}{R}|Creature Zombie Wizard|2|2|When Anathemancer enters the battlefield, it deals damage to target player equal to the number of nonbasic lands that player controls.$Unearth {5}{B}{R} ({5}{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.)|
Krosan Grip|Friday Night Magic|123|U|{2}{G}|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.)$Destroy target artifact or enchantment.|
Qasali Pridemage|Friday Night Magic|124|U|{W}{G}|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.|
-Rift Bolt|Friday Night Magic|125|U|{2}{R}|Sorcery|||Rift Bolt deals 3 damage to target creature or player.$Suspend 1 {R} (Rather than cast this card from your hand, you may pay {R} and exile it with a time counter on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)|
+Rift Bolt|Friday Night Magic|125|U|{2}{R}|Sorcery|||Rift Bolt deals 3 damage to any target.$Suspend 1 {R} (Rather than cast this card from your hand, you may pay {R} and exile it with a time counter on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)|
Gatekeeper of Malakir|Friday Night Magic|126|U|{B}{B}|Creature Vampire Warrior|2|2|Kicker {B} (You may pay an additional {B} as you cast this spell.)$When Gatekeeper of Malakir enters the battlefield, if it was kicked, target player sacrifices a creature.|
Wild Nacatl|Friday Night Magic|127|U|{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.|
Everflowing Chalice|Friday Night Magic|128|U|{0}|Artifact|||Multikicker {2} (You may pay an additional {2} any number of times as you cast this spell.)$Everflowing Chalice enters the battlefield with a charge counter on it for each time it was kicked.${T}: Add {C} for each charge counter on Everflowing Chalice.|
@@ -8038,9 +8038,9 @@ Forbidden Alchemy|Friday Night Magic|146|U|{3}{U}|Instant|||Look at the top four
Avacyn's Pilgrim|Friday Night Magic|147|U|{G}|Creature Human Monk|1|1|{T}: Add {W}.|
Lingering Souls|Friday Night Magic|148|U|{2}{W}|Sorcery|||Put two 1/1 white Spirit creature tokens with flying onto the battlefield.$Flashback {1}{B} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Evolving Wilds|Friday Night Magic|149|U||Land|||{T}, Sacrifice Evolving Wilds: Search your library for a basic land card and put it onto the battlefield tapped. Then shuffle your library.|
-Pillar of Flame|Friday Night Magic|150|U|{R}|Sorcery|||Pillar of Flame deals 2 damage to target creature or player. If a creature dealt damage this way would die this turn, exile it instead.|
+Pillar of Flame|Friday Night Magic|150|U|{R}|Sorcery|||Pillar of Flame deals 2 damage to any target. If a creature dealt damage this way would die this turn, exile it instead.|
Gitaxian Probe|Friday Night Magic|151|U|{UP}|Sorcery|||({UP} can be paid with either {U} or 2 life.)$Look at target player's hand.$Draw a card.|
-Searing Spear|Friday Night Magic|152|U|{1}{R}|Instant|||Searing Spear deals 3 damage to target creature or player.|
+Searing Spear|Friday Night Magic|152|U|{1}{R}|Instant|||Searing Spear deals 3 damage to any target.|
Reliquary Tower|Friday Night Magic|153|U||Land|||You have no maximum hand size.${T}: Add {C}.|
Farseek|Friday Night Magic|154|U|{1}{G}|Sorcery|||Search your library for a Plains, Island, Swamp, or Mountain card and put it onto the battlefield tapped. Then shuffle your library.|
call of the Conclave|Friday Night Magic|155|U|{W}{G}|Sorcery|||Put a 3/3 green Centaur creature token onto the battlefield.|
@@ -8052,7 +8052,7 @@ Experiment One|Friday Night Magic|160|U|{G}|Creature - Human Oooze|1|1|Evolve (That creature returns under its owner's control.)|
Encroaching Wastes|Friday Night Magic|167|U||Land|||{T}: Add {C}.${4}, {T}, Sacrifice Encroaching Wastes: Destroy target nonbasic land.|
@@ -8063,7 +8063,7 @@ Bile Blight|Friday Night Magic|171|U|{B}{B}|Instant|||Target creature and all ot
Banishing Light|Friday Night Magic|172|U|{2}{W}|Enchantment|||When Banishing Light enters the battlefield, exile target nonland permanent an opponent controls until Banishing Light leaves the battlefield. (That permanent returns under its owner's control.)|
Fanatic of Xenagos|Friday Night Magic|173|U|{1}{R}{G}|Creature - Centaur Warrior|3|3|Trample$Tribute 1 (As this creature enters the battlefield, an opponent of your choice may place a +1/+1 counter on it.)$When Fanatic of Xenagos enters the battlefield, if tribute wasn't paid, it gets +1/+1 and gains haste until end of turn.|
Brain Maggot|Friday Night Magic|174|U|{1}{B}|Enchantment Creature - Insect|1|1|When Brain Maggot enters the battlefield, target opponent reveals his or her hand and you choose a nonland card from it. Exile that card until Brain Maggot leaves the battlefield.|
-Stoke the Flames|Friday Night Magic|175|U|{2}{R}{R}|Instant|||Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.)$Stoke the Flames deals 4 damage to target creature or player.|
+Stoke the Flames|Friday Night Magic|175|U|{2}{R}{R}|Instant|||Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.)$Stoke the Flames deals 4 damage to any target.|
Frenzied Goblin|Friday Night Magic|176|U|{R}|Creature - Goblin Berserker|1|1|Whenever Frenzied Goblin attacks, you may pay {R}. If you do, target creature can't block this turn.|
Disdainful Stroke|Friday Night Magic|177|U|{1}{U}|Instant|||Counter target spell with converted mana cost 4 or greater.|
Hordeling Outburst|Friday Night Magic|178|U|{1}{R}{R}|Sorcery|||Put three 1/1 red Goblin creature tokens onto the battlefield.|
@@ -8083,17 +8083,17 @@ Blighted Fen|Friday Night Magic|191|U||Land|||{T}: Add {C}.${4}{B}, {T}, Sacrifi
Goblin Warchief|Friday Night Magic|192|U|{1}{R}{R}|Creature - Goblin|2|2|Goblin spells you cast cost {1} less to cast.$Goblin creatures you control have haste.|
Sylvan Scrying|Friday Night Magic|193|U|{1}{G}|Sorcery|||Search your library for a land card, reveal it, and put it into your hand. Then shuffle your library.|
Spatial Contortion|Friday Night Magic|194|U|{1}{C}|Instant|||Target creature gets +3/-3 until end of turn.|
-Crumbling Vestige|Friday Night Magic|195|C||Land|||Crumbling Vestige enters the battlefield tapped.$When Crumbling Vestige enters the battlefield, add one mana of any color to your mana pool.${T}: Add {C} to you mana pool. ({C} represents colorless mana.)|
+Crumbling Vestige|Friday Night Magic|195|C||Land|||Crumbling Vestige enters the battlefield tapped.$When Crumbling Vestige enters the battlefield, add one mana of any color.${T}: Add {C} to you mana pool. ({C} represents colorless mana.)|
Flaying Tendrils|Friday Night Magic|196|U|{1}{B}{B}|Sorcery|||Devoid (This card has no color.)$All creatures get -2/-2 until end of turn. If a creature would die this turn, exile it instead.|
Rise from the Tides|Friday Night Magic|197|U|{5}{U}|Sorcery|||Create a tapped 2/2 black Zombie creature token for each instant and sorcery card in your graveyard.|
-Fiery Temper|Friday Night Magic|198|U|{1}{R}{R}|Instant|||Fiery Temper deals 3 damage to target creature or player.$Madness {R} (If you discard this card, discard it into exile. When you do, cast it for its madness cost or put it into your graveyard.)|
+Fiery Temper|Friday Night Magic|198|U|{1}{R}{R}|Instant|||Fiery Temper deals 3 damage to any target.$Madness {R} (If you discard this card, discard it into exile. When you do, cast it for its madness cost or put it into your graveyard.)|
Call the Bloodline|Friday Night Magic|199|Special|{1}{B}|Enchantment|||{1}, Discard a card: Create a 1/1 black Vampire Knight creature token with lifelink. Activate this ability only once each turn.|
Noose Constrictor|Friday Night Magic|200|Special|{1}{G}|Creature - Snake|2|2|Reach$Discard a card: Noose Constrictor gets +1/+1 until end of turn.|
Fortune's Favor|Friday Night Magic|201|Special|{3}{U}|Instant|||Target opponent looks at the top four cards of your library and separates them into a face-down pile and a face-up pile. Put one pile into your hand and the other into your graveyard.|
-Incendiary Flow|Friday Night Magic|202|Special|{1}{R}|Sorcery|||Incendiary Flow deals 3 damage to target creature or player. If a creature dealt damage this way would die this turn, exile it instead.|
+Incendiary Flow|Friday Night Magic|202|Special|{1}{R}|Sorcery|||Incendiary Flow deals 3 damage to any target. If a creature dealt damage this way would die this turn, exile it instead.|
Servo Exhibition|Friday Night Magic|203|Special|{1}{W}|Sorcery|||Create two 1/1 colorless Servo artifact creature tokens.|
Unlicensed Disintegration|Friday Night Magic|204|Special|{1}{B}{R}|Instant|||Destroy target creature. If you control an artifact, Unlicensed Disintegration deals 3 damage to that creature's controller.|
-Aether Hub|Friday Night Magic|205|Special||Land|||When Aether Hub enters the battlefield, you get {E}.${T}: Add {C}.${T}, Pay {E}: Add one mana of any color to your mana pool.|
+Aether Hub|Friday Night Magic|205|Special||Land|||When Aether Hub enters the battlefield, you get {E}.${T}: Add {C}.${T}, Pay {E}: Add one mana of any color.|
Reverse Engineer|Friday Night Magic|206|Special|{3}{U}{U}|Sorcery|||Improvise$Draw three cards.|
Fatal Push|Friday Night Magic|207|Special|{B}|Instant|||Destroy target creature if it has converted mana cost 2 or less.$Revolt — Destroy that creature if it has converted mana cost 4 or less instead if a permanent you controlled left the battlefield this turn.|
Renegade Rallier|Friday Night Magic|208|Special|{1}{G}{W}|Creature - Human Warrior|3|2|Revolt — When Renegade Rallier enters the battlefield, if a permanent you controlled left the battlefield this turn, return target permanent card with converted mana cost 2 or less from your graveyard to the battlefield.|
@@ -8133,11 +8133,11 @@ Draco|From the Vault: Dragons|3|R|{16}|Artifact Creature - Dragon|9|9|Domain D
Dragon Whelp|From the Vault: Dragons|4|R|{2}{R}{R}|Creature - Dragon|2|3|Flying${R}: Dragon Whelp gets +1/+0 until end of turn. If this ability has been activated four or more times this turn, sacrifice Dragon Whelp at the beginning of the next end step.|
Dragonstorm|From the Vault: Dragons|5|R|{8}{R}Sorcery|||Search your library for a Dragon permanent card and put it onto the battlefield. Then shuffle your library.$Storm (When you cast this spell, copy it for each spell cast before it this turn.)|
Ebon Dragon|From the Vault: Dragons|6|R|{5}{B}{B}|Creature - Dragon|5|4|Flying$When Ebon Dragon enters the battlefield, you may have target opponent discard a card.|
-Form of the Dragon|From the Vault: Dragons|7|R|{4}{R}{R}{R}|Enchantment|||At the beginning of your upkeep, Form of the Dragon deals 5 damage to target creature or player.$At the beginning of each end step, your life total becomes 5.$Creatures without flying can't attack you.|
+Form of the Dragon|From the Vault: Dragons|7|R|{4}{R}{R}{R}|Enchantment|||At the beginning of your upkeep, Form of the Dragon deals 5 damage to any target.$At the beginning of each end step, your life total becomes 5.$Creatures without flying can't attack you.|
Hellkite Overlord|From the Vault: Dragons|8|R|{4}{B}{R}{R}{G}|Creature - Dragon|8|8|Flying, trample, haste${R}: Hellkite Overlord gets +1/+0 until end of turn.${B}{G}: Regenerate Hellkite Overlord.|
Kokusho, the Evening Star|From the Vault: Dragons|9|R|{4}{B}{B}|Legendary Creature - Dragon Spirit|5|5|Flying$When Kokusho, the Evening Star dies, each opponent loses 5 life. You gain life equal to the life lost this way.|
Nicol Bolas|From the Vault: Dragons|10|R|{2}{U}{U}{B}{B}{R}{R}|Legendary Creature - Elder Dragon|7|7|Flying$At the beginning of your upkeep, sacrifice Nicol Bolas unless you pay {U}{B}{R}.$Whenever Nicol Bolas deals damage to an opponent, that player discards his or her hand.|
-Niv-Mizzet, the Firemind|From the Vault: Dragons|11|R|{2}{U}{U}{R}{R}|Legendary Creature - Dragon Wizard|4|4|Flying$Whenever you draw a card, Niv-Mizzet, the Firemind deals 1 damage to target creature or player.${T}: Draw a card.|
+Niv-Mizzet, the Firemind|From the Vault: Dragons|11|R|{2}{U}{U}{R}{R}|Legendary Creature - Dragon Wizard|4|4|Flying$Whenever you draw a card, Niv-Mizzet, the Firemind deals 1 damage to any target.${T}: Draw a card.|
Rith, the Awakener|From the Vault: Dragons|12|R|{3}{W}{R}{G}|Legendary Creature - Dragon|6|6|Flying$Whenever Rith, the Awakener deals combat damage to a player, you may pay {2}{G}. If you do, choose a color, then put a 1/1 green Saproling creature token onto the battlefield for each permanent of that color.|
Shivan Dragon|From the Vault: Dragons|13|R|{4}{R}{R}|Creature - Dragon|5|5|Flying (This creature can't be blocked except by creature with flying or reach.)${R}: Shivan Dragon gets +1/+0 until end of turn.|
Thunder Dragon|From the Vault: Dragons|14|R|{5}{R}{R}|Creature - Dragon|5|5|Flying$When Thunder Dragon enters the battlefield, it deals 3 damage to each creature without flying.|
@@ -8148,7 +8148,7 @@ Channel|From the Vault: Exiled|3|M|{G}{G}|Sorcery|||Until end of turn, any time
Gifts Ungiven|From the Vault: Exiled|4|M|{3}{U}|Instant|||Search your library for up to four cards with different names and reveal them. Target opponent chooses two of those cards. Put the chosen cards into your graveyard and the rest into your hand. Then shuffle your library.|
Goblin Lackey|From the Vault: Exiled|5|M|{R}|Creature - Goblin|1|1|Whenever Goblin Lackey deals damage to a player, you may put a Goblin permanent card from your hand onto the battlefield.|
Kird Ape|From the Vault: Exiled|6|M|{R}|Creature - Ape|1|1|Kird Ape gets +1/+2 as long as you control a Forest.|
-Lotus Petal|From the Vault: Exiled|7|M|{0}|Artifact|||{T}, Sacrifice Lotus Petal: Add one mana of any color to your mana pool.|
+Lotus Petal|From the Vault: Exiled|7|M|{0}|Artifact|||{T}, Sacrifice Lotus Petal: Add one mana of any color.|
Mystical Tutor|From the Vault: Exiled|8|M|{U}|Instant|||Search your library for an instant or sorcery card and reveal that card. Shuffle your library, then put the card on top of it.|
Necropotence|From the Vault: Exiled|9|M|{B}{B}{B}|Enchantment|||Skip your draw step.$Whenever you discard a card, exile that card from your graveyard.$Pay 1 life: Exile the top card of your library face down. Put that card into your hand at the beginning of your next end step.|
Sensei's Diving Top|From the Vault: Exiled|10|M|{1}|Artifact|||{1}: Look at the top three cards of your library, then put them back in any order.${T}: Draw a card, then put Sensei's Divining Top on top of its owner's library.|
@@ -8192,7 +8192,7 @@ Boseiju, Who Shelters All|From the Vault: Realms|2|M||Legendary Land|||Boseiju,
Cephalid Coliseum|From the Vault: Realms|3|M||Land|||{T}: Add {U}. Cephalid Coliseum deals 1 damage to you.$Threshold {U}, {T}, Sacrifice Cephalid Coliseum: Target player draws three cards, then discards three cards. Activate this ability only if seven or more cards are in your graveyard.|
Desert|From the Vault: Realms|4|M||Land - Desert|||{T}: Add {C}.${T}: Desert deals 1 damage to target attacking creature. Activate this ability only during the end of combat step.|
Dryad Arbor|From the Vault: Realms|5|M||Land Creature - Forest Dryad|||(Dryad Arbor isn't a spell, it's affected by summoning sickness, and it has "{T}: Add {G}.")|
-Forbidden Orchard|From the Vault: Realms|6|M||Land|||{T}: Add one mana of any color to your mana pool.$Whenever you tap Forbidden Orchard for mana, target opponent puts a 1/1 colorless Spirit creature token onto the battlefield.|
+Forbidden Orchard|From the Vault: Realms|6|M||Land|||{T}: Add one mana of any color.$Whenever you tap Forbidden Orchard for mana, target opponent puts a 1/1 colorless Spirit creature token onto the battlefield.|
Glacial Chasm|From the Vault: Realms|7|M||Land|||Cumulative upkeep Pay 2 life. (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 Glacial Chasm enters the battlefield, sacrifice a land.$Creatures you control can't attack.$Prevent all damage that would be dealt to you.|
Grove of the Burnwillows|From the Vault: Realms|8|M|Land|||{T}: Add {C}.${T}: Add {R} or {G}. Each opponent gains 1 life.|
High Market|From the Vault: Realms|9|M||Land|||{T}: Add {C}.${T}, Sacrifice a creature: You gain 1 life.|
@@ -8211,7 +8211,7 @@ Karn, Silver Golem|From the Vault: Relics|6|M|{5}|Legendary Artifact Creature -
Masticore|From the Vault: Relics|7|M|{4}|Artifact Creature - Masticore|4|4|At the beginning of your upkeep, sacrifice Masticore unless you discard a card.${2}: Masticore deals 1 damage to target creature.${2}: Regenerate Masticore.|
Memory Jar|From the Vault: Relics|8|M|{5}|Artifact|||{T}, Sacrifice Memory Jar: Each player exiles all cards from his or her hand face down and draws seven cards. At the beginning of the next end step, each player discards his or her hand and returns to his or her hand each card he or she exiled this way.|
Mirari|From the Vault: Relics|9|M|{5}|Legendary Artifact|||Whenever you cast an instant or sorcery spell, you may pay {3}. If you do, copy that spell. You may choose new targets for the copy.|
-Mox Diamond|From the Vault: Relics|10|M|{0}|Artifact|||If Mox Diamond would enter the battlefield, you may discard a land card instead. If you do, put Mox Diamond onto the battlefield. If you don't, put it into its owner's graveyard.${T}: Add one mana of any color to your mana pool.|
+Mox Diamond|From the Vault: Relics|10|M|{0}|Artifact|||If Mox Diamond would enter the battlefield, you may discard a land card instead. If you do, put Mox Diamond onto the battlefield. If you don't, put it into its owner's graveyard.${T}: Add one mana of any color.|
Nevinyrral's Disk|From the Vault: Relics|11|M|{4}|Artifact|||Nevinyrral's Disk enters the battlefield tapped.${1}, {T}: Destroy all artifacts, creatures, and enchantments.|
Sol Ring|From the Vault: Relics|12|M|{1}|Artifact|||{T}: Add {C}{C}.|
Sundering Titan|From the Vault: Relics|13|M|{8}|Artifact Creature - Golem|7|10|When Sundering Titan enters the battlefield or leaves the battlefield, choose a land of each basic land type, then destroy those lands.
@@ -8228,9 +8228,9 @@ Tangle Wire|From the Vault: Twenty|8|M|{3}|Artifact|||Fading 4 (This artifact
Fact or Fiction|From the Vault: Twenty|9|M|{3}{U}|Instant||| Reveal the top five cards of your library. An opponent separates those cards into two piles. Put one pile into your hand and the other into your graveyard.|
Chainer's Edict|From the Vault: Twenty|10|M|{1}{B}|Sorcery|||Target player sacrifices a creature.$Flashback {5}{B}{B} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Akroma's Vengeance|From the Vault: Twenty|11|M|{4}{W}{W}|Sorcery|||Destroy all artifacts, creatures, and enchantments.$Cycling {3} ({3}, Discard this card: Draw a card.)|
-Gilded Lotus|From the Vault: Twenty|12|M|{5}|Artifact|||{T}: Add three mana of any one color to your mana pool.|
+Gilded Lotus|From the Vault: Twenty|12|M|{5}|Artifact|||{T}: Add three mana of any one color.|
Ink-Eyes, Servant of Oni|From the Vault: Twenty|13|M|{4}{B}{B}|Legendary Creature - Rat Ninja|5|4|Ninjutsu {3}{B}{B} ({3}{B}{B}, Return an unblocked attacker you control to hand: Put this card onto the battlefield from your hand tapped and attacking.)|Whenever Ink-Eyes, Servant of Oni deals combat damage to a player, you may put target creature card from that player's graveyard onto the battlefield under your control.${1}{B}: Regenerate Ink-Eyes.|
-Char|From the Vault: Twenty|14|M|{2}{R}|Instant|||Char deals 4 damage to target creature or player and 2 damage to you.|
+Char|From the Vault: Twenty|14|M|{2}{R}|Instant|||Char deals 4 damage to any target and 2 damage to you.|
Venser, Shaper Savant|From the Vault: Twenty|15|M|{2}{U}{U}|Legendary Creature - Human Wizard|2|2|Flash (You may cast this spell any time you could cast an instant.)$When Venser, Shaper Savant enters the battlefield, return target spell or permanent to its owner's hand.|
Chameleon Colossus|From the Vault: Twenty|16|M|{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.|
Cruel Ultimatum|From the Vault: Twenty|17|M|{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.|
@@ -8244,7 +8244,7 @@ Magus of the Moon|Future Sight|101|R|{2}{R}|Creature - Human Wizard|2|2|Nonbasic
Molten Disaster|Future Sight|102|R|{X}{R}{R}|Sorcery|||Kicker {R} (You may pay an additional {R} as you cast this spell.)$If Molten Disaster was kicked, it has split second. (As long as this spell is on the stack, players can't cast spells or activate abilities that aren't mana abilities.)$Molten Disaster deals X damage to each creature without flying and each player.|
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.|
Pyromancer's Swath|Future Sight|104|R|{2}{R}|Enchantment|||If an instant or sorcery source you control would deal damage to a creature or player, it deals that much damage plus 2 to that creature or player instead.$At the beginning of each end step, discard your hand.|
-Riddle of Lightning|Future Sight|105|C|{3}{R}{R}|Instant|||Choose target creature or player. Scry 3, then reveal the top card of your library. Riddle of Lightning deals damage equal to that card's converted mana cost to that creature or player. (To scry 3, look at the top three cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)|
+Riddle of Lightning|Future Sight|105|C|{3}{R}{R}|Instant|||Choose any target. Scry 3, then reveal the top card of your library. Riddle of Lightning deals damage equal to that card's converted mana cost to that creature or player. (To scry 3, look at the top three cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)|
Rift Elemental|Future Sight|106|C|{R}|Creature - Elemental|1|1|{1}{R}, Remove a time counter from a permanent you control or suspended card you own: Rift Elemental gets +2/+0 until end of turn.|
Scourge of Kher Ridges|Future Sight|107|R|{6}{R}{R}|Creature - Dragon|6|6|Flying${1}{R}: Scourge of Kher Ridges deals 2 damage to each creature without flying.${5}{R}: Scourge of Kher Ridges deals 6 damage to each other creature with flying.|
Shivan Sand-Mage|Future Sight|108|U|{2}{R}{R}|Creature - Viashino Shaman|3|2|When Shivan Sand-Mage enters the battlefield, choose one - Remove two time counters from target permanent or suspended card; or put two time counters on target permanent with a time counter on it or suspended card.$Suspend 4-{R} (Rather than cast this card from your hand, you may pay {R} and exile it with four time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost. It has haste.)|
@@ -8255,7 +8255,7 @@ Boldwyr Intimidator|Future Sight|111|U|{5}{R}{R}|Creature - Giant Warrior|5|5|Co
Emblem of the Warmind|Future Sight|112|U|{1}{R}|Enchantment - Aura|||Enchant creature you control$Creatures you control have haste.|
Flowstone Embrace|Future Sight|113|C|{1}{R}|Enchantment - Aura|||Enchant creature${tap}: Enchanted creature gets +2/-2 until end of turn.|
Fomori Nomad|Future Sight|114|C|{4}{R}|Creature - Nomad Giant|4|4||
-Ghostfire|Future Sight|115|C|{2}{R}|Instant|||Ghostfire is colorless.$Ghostfire deals 3 damage to target creature or player.|
+Ghostfire|Future Sight|115|C|{2}{R}|Instant|||Ghostfire is colorless.$Ghostfire deals 3 damage to any target.|
Grinning Ignus|Future Sight|116|C|{2}{R}|Creature - Elemental|2|2|{R}, Return Grinning Ignus to its owner's hand: Add {C}{C}{R}. Activate this ability only any time you could cast a sorcery.|
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.|
Homing Sliver|Future Sight|118|C|{2}{R}|Creature - Sliver|2|2|Each Sliver card in each player's hand has slivercycling {3}.$Slivercycling {3} ({3}, Discard this card: Search your library for a Sliver card, reveal it, and put it into your hand. Then shuffle your library.)|
@@ -8265,7 +8265,7 @@ Skizzik Surger|Future Sight|120|U|{4}{R}{R}|Creature - Elemental|6|4|Haste$Echo-
Steamflogger Boss|Future Sight|121|R|{3}{R}|Creature - Goblin Rigger|3|3|Other Rigger creatures you control get +1/+0 and have haste.$If a Rigger you control would assemble a Contraption, it assembles two Contraptions instead.|
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.|
Tarox Bladewing|Future Sight|123|R|{2}{R}{R}{R}|Legendary Creature - Dragon|4|3|Flying, haste$Grandeur - Discard another card named Tarox Bladewing: Tarox Bladewing gets +X/+X until end of turn, where X is its power.|
-Thunderblade Charge|Future Sight|124|R|{1}{R}{R}|Sorcery|||Thunderblade Charge deals 3 damage to target creature or player.$Whenever one or more creatures you control deal combat damage to a player, if Thunderblade Charge is in your graveyard, you may pay {2}{R}{R}{R}. If you do, you may cast it without paying its mana cost.|
+Thunderblade Charge|Future Sight|124|R|{1}{R}{R}|Sorcery|||Thunderblade Charge deals 3 damage to any target.$Whenever one or more creatures you control deal combat damage to a player, if Thunderblade Charge is in your graveyard, you may pay {2}{R}{R}{R}. If you do, you may cast it without paying its mana cost.|
Cyclical Evolution|Future Sight|125|U|{3}{G}{G}|Sorcery|||Target creature gets +3/+3 until end of turn. Exile Cyclical Evolution with three time counters on it.$Suspend 3-{2}{G} (Rather than cast this card from your hand, you may pay {2}{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.)|
Force of Savagery|Future Sight|126|R|{2}{G}|Creature - Elemental|8|0|Trample|
Heartwood Storyteller|Future Sight|127|R|{1}{G}{G}|Creature - Treefolk|2|3|Whenever a player casts a noncreature spell, each of that player's opponents may draw a card.|
@@ -8283,7 +8283,7 @@ Rites of Flourishing|Future Sight|137|R|{2}{G}|Enchantment|||At the beginning of
Sprout Swarm|Future Sight|138|C|{1}{G}|Instant|||Convoke (Each creature you tap while casting this spell reduces its total cost by {1} or by one mana of that creature's color.)$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.)$Put a 1/1 green Saproling creature token onto the battlefield.|
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.|
Saltskitter|Future Sight|14|C|{3}{W}|Creature - Wurm|3|4|Whenever another creature enters the battlefield, exile Saltskitter. Return Saltskitter to the battlefield under its owner's control at the beginning of the next end step.|
-Utopia Mycon|Future Sight|140|U|{G}|Creature - Fungus|0|2|At the beginning of your upkeep, put a spore counter on Utopia Mycon.$Remove three spore counters from Utopia Mycon: Put a 1/1 green Saproling creature token onto the battlefield.$Sacrifice a Saproling: Add one mana of any color to your mana pool.|
+Utopia Mycon|Future Sight|140|U|{G}|Creature - Fungus|0|2|At the beginning of your upkeep, put a spore counter on Utopia Mycon.$Remove three spore counters from Utopia Mycon: Put a 1/1 green Saproling creature token onto the battlefield.$Sacrifice a Saproling: Add one mana of any color.|
Wrap in Vigor|Future Sight|141|C|{1}{G}|Instant|||Regenerate each creature you control.|
Baru, Fist of Krosa|Future Sight|142|R|{3}{G}{G}|Legendary Creature - Human Druid|4|4|Whenever a Forest enters the battlefield, green creatures you control get +1/+1 and gain trample until end of turn.$Grandeur - Discard another card named Baru, Fist of Krosa: Put an X/X green Wurm creature token onto the battlefield, where X is the number of lands you control.|
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.|
@@ -8306,7 +8306,7 @@ Sliver Legion|Future Sight|158|R|{W}{U}{B}{R}{G}|Legendary Creature - Sliver|7|7
Akroma's Memorial|Future Sight|159|R|{7}|Legendary Artifact|||Creatures you control have flying, first strike, vigilance, trample, haste, and protection from black and from red.|
Scout's Warning|Future Sight|16|R|{W}|Instant|||The next creature card you play this turn can be played as though it had flash.$Draw a card.|
Cloud Key|Future Sight|160|R|{3}|Artifact|||As Cloud Key enters the battlefield, choose artifact, creature, enchantment, instant, or sorcery.$Spells you cast of the chosen type cost {1} less to cast.|
-Coalition Relic|Future Sight|161|R|{3}|Artifact|||{tap}: Add one mana of any color to your mana pool.${tap}: Put a charge counter on Coalition Relic.$At the beginning of your precombat main phase, remove all charge counters from Coalition Relic. Add one mana of any color to your mana pool for each charge counter removed this way.|
+Coalition Relic|Future Sight|161|R|{3}|Artifact|||{tap}: Add one mana of any color.${tap}: Put a charge counter on Coalition Relic.$At the beginning of your precombat main phase, remove all charge counters from Coalition Relic. Add one mana of any color for each charge counter removed this way.|
Epochrasite|Future Sight|162|R|{2}|Artifact Creature - Construct|1|1|Epochrasite enters the battlefield with three +1/+1 counters on it if you didn't cast it from your hand.$When Epochrasite dies, exile it with three time counters on it and it gains suspend. (At the beginning of your upkeep, remove a time counter. When the last is removed, cast this card without paying its mana cost. It has haste.)|
Sliversmith|Future Sight|163|U|{2}|Artifact Creature - Spellshaper|1|1|{1}, {tap}, Discard a card: Put a 1/1 colorless Sliver artifact creature token named Metallic Sliver onto the battlefield.|
Soultether Golem|Future Sight|164|U|{2}|Artifact Creature - Golem|3|3|Vanishing 1 (This permanent enters the battlefield with a time counter on it. At the beginning of your upkeep, remove a time counter from it. When the last is removed, sacrifice it.)$Whenever another creature enters the battlefield under your control, put a time counter on Soultether Golem.|
@@ -8316,7 +8316,7 @@ Darksteel Garrison|Future Sight|167|R|{2}|Artifact - Fortification|||Fortified l
Whetwheel|Future Sight|168|R|{4}|Artifact|||{X}{X}, {tap}: Target player puts the top X cards of his or her library into his or her graveyard.$Morph {3} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
Dakmor Salvage|Future Sight|169|U||Land|||Dakmor Salvage enters the battlefield tapped.${tap}: Add {B}.$Dredge 2 (If you would draw a card, instead you may put exactly two cards from the top of your library into your graveyard. If you do, return this card from your graveyard to your hand. Otherwise, draw a card.)|
Spirit en-Dal|Future Sight|17|U|{2}{W}|Creature - Spirit|2|1|Shadow (This creature can block or be blocked by only creatures with shadow.)$Forecast - {1}{W}, Reveal Spirit en-Dal from your hand: Target creature gains shadow until end of turn. (Activate this ability only during your upkeep and only once each turn.)|
-Keldon Megaliths|Future Sight|170|U||Land|||Keldon Megaliths enters the battlefield tapped.${tap}: Add {R}.$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.|
+Keldon Megaliths|Future Sight|170|U||Land|||Keldon Megaliths enters the battlefield tapped.${tap}: Add {R}.$Hellbent - {1}{R}, {tap}: Keldon Megaliths deals 1 damage to any target. Activate this ability only if you have no cards in hand.|
Llanowar Reborn|Future Sight|171|U||Land|||Llanowar Reborn enters the battlefield tapped.${tap}: Add {G}.$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.)|
New Benalia|Future Sight|172|U||Land|||New Benalia enters the battlefield tapped.$When New Benalia enters the battlefield, scry 1. (To scry 1, look at the top card of your library, then you may put that card on the bottom of your library.)${tap}: Add {W}.|
Tolaria West|Future Sight|173|U||Land|||Tolaria West enters the battlefield tapped.${tap}: Add {U}.$Transmute {1}{U}{U} ({1}{U}{U}, Discard this card: Search your library for a card with converted mana cost 0, reveal it, and put it into your hand. Then shuffle your library. Transmute only as a sorcery.)|
@@ -8411,7 +8411,7 @@ Street Wraith|Future Sight|90|U|{3}{B}{B}|Creature - Wraith|3|4|Swampwalk$Cyclin
Tombstalker|Future Sight|91|R|{6}{B}{B}|Creature - Demon|5|5|Flying$Delve (You may exile any number of cards from your graveyard as you cast this spell. It costs {1} less to cast for each card exiled this way.)|
Witch's Mist|Future Sight|92|U|{2}{B}|Enchantment|||{2}{B}, {tap}: Destroy target creature that was dealt damage this turn.|
Yixlid Jailer|Future Sight|93|U|{1}{B}|Creature - Zombie Wizard|2|1|Cards in graveyards lose all abilities.|
-Arc Blade|Future Sight|94|U|{3}{R}{R}|Sorcery|||Arc Blade deals 2 damage to target creature or player. Exile Arc Blade with three time counters on it.$Suspend 3-{2}{R} (Rather than cast this card from your hand, you may pay {2}{R} and exile it with three time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)|
+Arc Blade|Future Sight|94|U|{3}{R}{R}|Sorcery|||Arc Blade deals 2 damage to any target. Exile Arc Blade with three time counters on it.$Suspend 3-{2}{R} (Rather than cast this card from your hand, you may pay {2}{R} and exile it with three time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)|
Bogardan Lancer|Future Sight|95|C|{1}{R}|Creature - Human Knight|1|1|Bloodthirst 1 (If an opponent was dealt damage this turn, this creature enters the battlefield with a +1/+1 counter on it.)$Flanking (Whenever a creature without flanking blocks this creature, the blocking creature gets -1/-1 until end of turn.)|
Char-Rumbler|Future Sight|96|U|{2}{R}{R}|Creature - Elemental|-1|3|Double strike${R}: Char-Rumbler gets +1/+0 until end of turn.|
Emberwilde Augur|Future Sight|97|C|{1}{R}|Creature - Goblin Shaman|2|1|Sacrifice Emberwilde Augur: Emberwilde Augur deals 3 damage to target player. Activate this ability only during your upkeep.|
@@ -8419,7 +8419,7 @@ Fatal Attraction|Future Sight|98|C|{2}{R}|Enchantment - Aura|||Enchant creature$
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 card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
Aerial Maneuver|Gatecrash|1|C|{1}{W}|Instant|||Target creature gets +1/+1 and gains flying and first strike until end of turn.|
Debtor's Pulpit|Gatecrash|10|U|{4}{W}|Enchantment - Aura|||Enchant land$Enchanted land has "{tap}: Tap target creature."|
-Massive Raid|Gatecrash|100|C|{1}{R}{R}|Instant|||Massive Raid deals damage to target creature or player equal to the number of creatures you control.|
+Massive Raid|Gatecrash|100|C|{1}{R}{R}|Instant|||Massive Raid deals damage to any target equal to the number of creatures you control.|
Molten Primordial|Gatecrash|101|R|{5}{R}{R}|Creature - Avatar|6|4|Haste$When Molten Primordial enters the battlefield, for each opponent, gain control of up to one target creature that player controls until end of turn. Untap those creatures. They gain haste until end of turn.|
Mugging|Gatecrash|102|C|{R}|Sorcery|||Mugging deals 2 damage to target creature. That creature can't block this turn.|
Ripscale Predator|Gatecrash|103|U|{4}{R}{R}|Creature - Lizard|6|5|Ripscale Predator can't be blocked except by two or more creatures.|
@@ -8470,7 +8470,7 @@ Aurelia, the Warleader|Gatecrash|143|M|{2}{R}{R}{W}{W}|Legendary Creature - Ange
Aurelia's Fury|Gatecrash|144|M|{X}{R}{W}|Instant|||Aurelia's Fury deals X damage divided as you choose among any number of target creatures and/or players. Tap each creature dealt damage this way. Players dealt damage this way can't cast noncreature spells this turn.|
Bane Alley Broker|Gatecrash|145|U|{1}{U}{B}|Creature - Human Rogue|0|3|{tap}: Draw a card, then exile a card from your hand face down.$You may look at cards exiled with Bane Alley Broker.${U}{B}, {tap}: Return a card exiled with Bane Alley Broker to its owner's hand.|
Biovisionary|Gatecrash|146|R|{1}{G}{U}|Creature - Human Wizard|2|3|At the beginning of the end step, if you control four or more creatures named Biovisionary, you win the game.|
-Borborygmos Enraged|Gatecrash|147|M|{4}{R}{R}{G}{G}|Legendary Creature - Cyclops|7|6|Trample$Whenever Borborygmos Enraged deals combat damage to a player, reveal the top three cards of your library. Put all land cards revealed this way into your hand and the rest into your graveyard.$Discard a land card: Borborygmos Enraged deals 3 damage to target creature or player.|
+Borborygmos Enraged|Gatecrash|147|M|{4}{R}{R}{G}{G}|Legendary Creature - Cyclops|7|6|Trample$Whenever Borborygmos Enraged deals combat damage to a player, reveal the top three cards of your library. Put all land cards revealed this way into your hand and the rest into your graveyard.$Discard a land card: Borborygmos Enraged deals 3 damage to any target.|
Boros Charm|Gatecrash|148|U|{R}{W}|Instant|||Choose one - Boros Charm deals 4 damage to target player; or permanents you control are indestructible this turn; or target creature gains double strike until end of turn.|
Call of the Nightwing|Gatecrash|149|U|{2}{U}{B}|Sorcery|||Put a 1/1 blue and black Horror creature token with flying onto the battlefield.$Cipher (Then you may exile this spell card encoded on a creature you control. Whenever that creature deals combat damage to a player, its controller may cast a copy of the encoded card without paying its mana cost.)|
Guildscorn Ward|Gatecrash|15|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature has protection from multicolored.|
@@ -8488,9 +8488,9 @@ Hold the Gates|Gatecrash|16|U|{2}{W}|Enchantment|||Creatures you control get +0/
Elusive Krasis|Gatecrash|160|U|{1}{G}{U}|Creature - Fish Mutant|0|4|Elusive Krasis is unblockable.$Evolve (Whenever a creature enters the battlefield under your control, if that creature has greater power or toughness than this creature, put a +1/+1 counter on this creature.)|
Executioner's Swing|Gatecrash|161|C|{W}{B}|Instant|||Target creature that dealt damage this turn gets -5/-5 until end of turn.|
Fathom Mage|Gatecrash|162|R|{2}{G}{U}|Creature - Human Wizard|1|1|Evolve (Whenever a creature enters the battlefield under your control, if that creature has greater power or toughness than this creature, put a +1/+1 counter on this creature.)$Whenever a +1/+1 counter is placed on Fathom Mage, you may draw a card.|
-Firemane Avenger|Gatecrash|163|R|{2}{R}{W}|Creature - Angel|3|3|Flying$Battalion - Whenever Firemane Avenger and at least two other creatures attack, Firemane Avenger deals 3 damage to target creature or player and you gain 3 life.|
+Firemane Avenger|Gatecrash|163|R|{2}{R}{W}|Creature - Angel|3|3|Flying$Battalion - Whenever Firemane Avenger and at least two other creatures attack, Firemane Avenger deals 3 damage to any target and you gain 3 life.|
Fortress Cyclops|Gatecrash|164|U|{3}{R}{W}|Creature - Cyclops Soldier|3|3|Whenever Fortress Cyclops attacks, it gets +3/+0 until end of turn.$Whenever Fortress Cyclops blocks, it gets +0/+3 until end of turn.|
-Foundry Champion|Gatecrash|165|R|{4}{R}{W}|Creature - Elemental Soldier|4|4|When Foundry Champion enters the battlefield, it deals damage to target creature or player equal to the number of creatures you control.${R}: Foundry Champion gets +1/+0 until end of turn.${W}: Foundry Champion gets +0/+1 until end of turn.|
+Foundry Champion|Gatecrash|165|R|{4}{R}{W}|Creature - Elemental Soldier|4|4|When Foundry Champion enters the battlefield, it deals damage to any target equal to the number of creatures you control.${R}: Foundry Champion gets +1/+0 until end of turn.${W}: Foundry Champion gets +0/+1 until end of turn.|
Frenzied Tilling|Gatecrash|166|U|{3}{R}{G}|Sorcery|||Destroy target land. Search your library for a basic land card and put that card onto the battlefield tapped. Then shuffle your library.|
Ghor-Clan Rampager|Gatecrash|167|U|{2}{R}{G}|Creature - Beast|4|4|Trample$Bloodrush - {R}{G}, Discard Ghor-Clan Rampager: Target attacking creature gets +4/+4 and gains trample until end of turn.|
Ground Assault|Gatecrash|168|U|{R}{G}|Sorcery|||Ground Assault deals damage to target creature equal to the number of lands you control.|
@@ -8546,7 +8546,7 @@ Arrows of Justice|Gatecrash|211|U|{2}{RW}|Instant|||Arrows of Justice deals 4 da
Beckon Apparition|Gatecrash|212|C|{WB}|Instant|||Exile target card from a graveyard. Put a 1/1 white and black Spirit creature token with flying onto the battlefield.|
Biomass Mutation|Gatecrash|213|R|{X}{GU}{GU}|Instant|||Creatures you control become X/X until end of turn.|
Bioshift|Gatecrash|214|C|{GU}|Instant|||Move any number of +1/+1 counters from target creature onto another target creature with the same controller.|
-Boros Reckoner|Gatecrash|215|R|{RW}{RW}{RW}|Creature - Minotaur Wizard|3|3|Whenever Boros Reckoner is dealt damage, it deals that much damage to target creature or player.${RW}: Boros Reckoner gains first strike until end of turn.|
+Boros Reckoner|Gatecrash|215|R|{RW}{RW}{RW}|Creature - Minotaur Wizard|3|3|Whenever Boros Reckoner is dealt damage, it deals that much damage to any target.${RW}: Boros Reckoner gains first strike until end of turn.|
Burning-Tree Emissary|Gatecrash|216|U|{RG}{RG}|Creature - Human Shaman|2|2|When Burning-Tree Emissary enters the battlefield, add {R}{G}.|
Coerced Confession|Gatecrash|217|U|{4}{UB}|Sorcery|||Target player puts the top four cards of his or her library into his or her graveyard. You draw a card for each creature card put into that graveyard this way.|
Deathcult Rogue|Gatecrash|218|C|{1}{UB}{UB}|Creature - Human Rogue|2|2|Deathcult Rogue can't be blocked except by Rogues.|
@@ -8567,7 +8567,7 @@ Gruul Keyrune|Gatecrash|230|U|{3}|Artifact|||{tap}: Add {R} or {G}.${R}{G}: Gruu
Illusionist's Bracers|Gatecrash|231|R|{2}|Artifact - Equipment|||Whenever an ability of equipped creature is activated, if it isn't a mana ability, copy that ability. You may choose new targets for the copy.$Equip {3}|
Millennial Gargoyle|Gatecrash|232|C|{4}|Artifact Creature - Gargoyle|2|2|Flying|
Orzhov Keyrune|Gatecrash|233|U|{3}|Artifact|||{tap}: Add {W} or {B}.${W}{B}: Orzhov Keyrune becomes a 1/4 white and black Thrull artifact creature with lifelink until end of turn.|
-Prophetic Prism|Gatecrash|234|C|{2}|Artifact|||When Prophetic Prism enters the battlefield, draw a card.${1}, {tap}: Add one mana of any color to your mana pool.|
+Prophetic Prism|Gatecrash|234|C|{2}|Artifact|||When Prophetic Prism enters the battlefield, draw a card.${1}, {tap}: Add one mana of any color.|
Razortip Whip|Gatecrash|235|C|{2}|Artifact|||{1}, {tap}: Razortip Whip deals 1 damage to target opponent.|
Riot Gear|Gatecrash|236|C|{2}|Artifact - Equipment|||Equipped creature gets +1/+2.$Equip {2} ({2}: Attach to target creature you control. Equip only as a sorcery.)|
Simic Keyrune|Gatecrash|237|U|{3}|Artifact|||{tap}: Add {G} or {U}.${G}{U}: Simic Keyrune becomes a 2/3 green and blue Crab artifact creature with hexproof until end of turn. (It can't be the target of spells or abilities your opponents control.)|
@@ -8651,13 +8651,13 @@ Undercity Informer|Gatecrash|82|U|{2}{B}|Creature - Human Rogue|2|3|{1}, Sacrifi
Undercity Plague|Gatecrash|83|R|{4}{B}{B}|Sorcery|||Target player loses 1 life, discards a card, then sacrifices a permanent.$Cipher (Then you may exile this spell card encoded on a creature you control. Whenever that creature deals combat damage to a player, its controller may cast a copy of the encoded card without paying its mana cost.)|
Wight of Precinct Six|Gatecrash|84|U|{1}{B}|Creature - Zombie|1|1|Wight of Precinct Six gets +1/+1 for each creature card in your opponents' graveyards.|
Act of Treason|Gatecrash|85|C|{2}{R}|Sorcery|||Gain control of target creature until end of turn. Untap that creature. It gains haste until end of turn.|
-Bomber Corps|Gatecrash|86|C|{1}{R}|Creature - Human Soldier|1|2|Battalion - Whenever Bomber Corps and at least two other creatures attack, Bomber Corps deals 1 damage to target creature or player.|
-Cinder Elemental|Gatecrash|87|U|{3}{R}|Creature - Elemental|2|2|{X}{R}, {tap}, Sacrifice Cinder Elemental: Cinder Elemental deals X damage to target creature or player.|
+Bomber Corps|Gatecrash|86|C|{1}{R}|Creature - Human Soldier|1|2|Battalion - Whenever Bomber Corps and at least two other creatures attack, Bomber Corps deals 1 damage to any target.|
+Cinder Elemental|Gatecrash|87|U|{3}{R}|Creature - Elemental|2|2|{X}{R}, {tap}, Sacrifice Cinder Elemental: Cinder Elemental deals X damage to any target.|
Crackling Perimeter|Gatecrash|88|U|{1}{R}|Enchantment|||Tap an untapped Gate you control: Crackling Perimeter deals 1 damage to each opponent.|
Ember Beast|Gatecrash|89|C|{2}{R}|Creature - Beast|3|4|Ember Beast can't attack or block alone.|
Daring Skyjek|Gatecrash|9|C|{1}{W}|Creature - Human Knight|3|1|Battalion - Whenever Daring Skyjek and at least two other creatures attack, Daring Skyjek gains flying until end of turn.|
Firefist Striker|Gatecrash|90|U|{1}{R}|Creature - Human Soldier|2|1|Battalion - Whenever Firefist Striker and at least two other creatures attack, target creature can't block this turn.|
-Five-Alarm Fire|Gatecrash|91|R|{1}{R}{R}|Enchantment|||Whenever a creature you control deals combat damage, put a blaze counter on Five-Alarm Fire.$Remove five blaze counters from Five-Alarm Fire: Five-Alarm Fire deals 5 damage to target creature or player.|
+Five-Alarm Fire|Gatecrash|91|R|{1}{R}{R}|Enchantment|||Whenever a creature you control deals combat damage, put a blaze counter on Five-Alarm Fire.$Remove five blaze counters from Five-Alarm Fire: Five-Alarm Fire deals 5 damage to any target.|
Foundry Street Denizen|Gatecrash|92|C|{R}|Creature - Goblin Warrior|1|1|Whenever another red creature enters the battlefield under your control, Foundry Street Denizen gets +1/+0 until end of turn.|
Furious Resistance|Gatecrash|93|C|{R}|Instant|||Target blocking creature gets +3/+0 and gains first strike until end of turn.|
Hellkite Tyrant|Gatecrash|94|M|{4}{R}{R}|Creature - Dragon|6|5|Flying, trample$Whenever Hellkite Tyrant deals combat damage to a player, gain control of all artifacts that player controls.$At the beginning of your upkeep, if you control twenty or more artifacts, you win the game.|
@@ -8668,11 +8668,11 @@ Madcap Skills|Gatecrash|98|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchan
Mark for Death|Gatecrash|99|U|{3}{R}|Sorcery|||Target creature an opponent controls blocks this turn if able. Untap that creature. Other creatures that player controls can't block this turn.|
Spiritmonger|Grand Prix|1|R|{3}{B}{G}|Creature - Beast|6|6|Whenever Spiritmonger deals damage to a creature, put a +1/+1 counter on Spiritmonger.${B}: Regenerate Spiritmonger.${G}: Spiritmonger becomes the color of your choice until end of turn.|
Call of the Herd|Grand Prix|2|R|{2}{G}|Sorcery|||Put a 3/3 green Elephant creature token onto the battlefield.$Flashback {3}{G} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
-Chrome Mox|Grand Prix|3|R|{0}|Artifact|||Imprint When Chrome Mox enters the battlefield, you may exile a nonartifact, nonland card from your hand.${T}: Add one mana of any of the exiled card's colors to your mana pool.|
+Chrome Mox|Grand Prix|3|R|{0}|Artifact|||Imprint When Chrome Mox enters the battlefield, you may exile a nonartifact, nonland card from your hand.${T}: Add one mana of any of the exiled card's colors.|
Umezawa's Jitte|Grand Prix|4|R|{2}|Legendary Artifact - Equipment|||Whenever equipped creature deals combat damage, put two charge counters on Umezawa's Jitte.$Remove a charge counter from Umezawa's Jitte: Choose one Equipped creature gets +2/+2 until end of turn; or target creature gets -1/-1 until end of turn; or you gain 2 life.$Equip {2}|
Maelstrom Pulse|Grand Prix|5|R|{1}{B}{G}|Sorcery|||Destroy target nonland permanent and all other permanents with the same name as that permanent.|
Goblin Guide|Grand Prix|6|R|{R}|Creature - Goblin Scout|2|2|Haste$Whenever Goblin Guide attacks, defending player reveals the top card of his or her library. If it's a land card, that player puts it into his or her hand.|
-Lotus Cobra|Grand Prix|7|M|{1}{G}|Creature - Snake|2|1|Landfall Whenever a land enters the battlefield under your control, you may add one mana of any color to your mana pool.|
+Lotus Cobra|Grand Prix|7|M|{1}{G}|Creature - Snake|2|1|Landfall Whenever a land enters the battlefield under your control, you may add one mana of any color.|
Primeval Titan|Grand Prix|8|M|{4}{G}{G}|Creature - Giant|6|6|Trample$Whenever Primeval Titan enters the battlefield or attacks, you may search your library for up to two land cards, put them onto the battlefield tapped, then shuffle your library.|
All Is Dust|Grand Prix|9|M|{7}|Tribal Sorcery - Eldrazi|||Each player sacrifices all colored permanents he or she controls.|
Batterskull|Grand Prix|10|M|{5}|Artifact - Equipment|||Living weapon (When this Equipment enters the battlefield, put a 0/0 black Germ creature token onto the battlefield, then attach this to it.)$Equipped creature gets +4/+4 and has vigilance and lifelink.${3}: Return Batterskull to its owner's hand.$Equip {5}|
@@ -8695,18 +8695,18 @@ Lionheart Maverick|Guildpact|11|C|{W}|Creature - Human Knight|1|1|Vigilance${4}{
Dune-Brood Nephilim|Guildpact|110|R|{B}{R}{G}{W}|Creature - Nephilim|3|3|Whenever Dune-Brood Nephilim deals combat damage to a player, put a 1/1 colorless Sand creature token onto the battlefield for each land you control.|
Electrolyze|Guildpact|111|U|{1}{U}{R}|Instant|||Electrolyze deals 2 damage divided as you choose among one or two target creatures and/or players.$Draw a card.|
Feral Animist|Guildpact|112|U|{1}{R}{G}|Creature - Goblin Shaman|2|1|{3}: Feral Animist gets +X/+0 until end of turn, where X is its power.|
-Gelectrode|Guildpact|113|U|{1}{U}{R}|Creature - Weird|0|1|{tap}: Gelectrode deals 1 damage to target creature or player.$Whenever you cast an instant or sorcery spell, you may untap Gelectrode.|
+Gelectrode|Guildpact|113|U|{1}{U}{R}|Creature - Weird|0|1|{tap}: Gelectrode deals 1 damage to any target.$Whenever you cast an instant or sorcery spell, you may untap Gelectrode.|
Ghost Council of Orzhova|Guildpact|114|R|{W}{W}{B}{B}|Legendary Creature - Spirit|4|4|When Ghost Council of Orzhova enters the battlefield, target opponent loses 1 life and you gain 1 life.${1}, Sacrifice a creature: Exile Ghost Council of Orzhova. Return it to the battlefield under its owner's control at the beginning of the next end step.|
Glint-Eye Nephilim|Guildpact|115|R|{U}{B}{R}{G}|Creature - Nephilim|2|2|Whenever Glint-Eye Nephilim deals combat damage to a player, draw that many cards.${1}, Discard a card: Glint-Eye Nephilim gets +1/+1 until end of turn.|
Goblin Flectomancer|Guildpact|116|U|{U}{R}{R}|Creature - Goblin Wizard|2|2|Sacrifice Goblin Flectomancer: You may change the targets of target instant or sorcery spell.|
Ink-Treader Nephilim|Guildpact|117|R|{R}{G}{W}{U}|Creature - Nephilim|3|3|Whenever a player casts an instant or sorcery spell, if that spell targets only Ink-Treader Nephilim, copy the spell for each other creature that spell could target. Each copy targets a different one of those creatures.|
-Invoke the Firemind|Guildpact|118|R|{X}{U}{U}{R}|Sorcery|||Choose one - Draw X cards; or Invoke the Firemind deals X damage to target creature or player.|
+Invoke the Firemind|Guildpact|118|R|{X}{U}{U}{R}|Sorcery|||Choose one - Draw X cards; or Invoke the Firemind deals X damage to any target.|
Izzet Chronarch|Guildpact|119|C|{3}{U}{R}|Creature - Human Wizard|2|2|When Izzet Chronarch enters the battlefield, return target instant or sorcery card from your graveyard to your hand.|
Martyred Rusalka|Guildpact|12|U|{W}|Creature - Spirit|1|1|{W}, Sacrifice a creature: Target creature can't attack this turn.|
Killer Instinct|Guildpact|120|R|{4}{R}{G}|Enchantment|||At the beginning of your upkeep, reveal the top card of your library. If it's a creature card, put it onto the battlefield. That creature gains haste until end of turn. Sacrifice it at the beginning of the next end step.|
Leap of Flame|Guildpact|121|C|{U}{R}|Instant|||Replicate {U}{R} (When you cast this spell, copy it for each time you paid its replicate cost. You may choose new targets for the copies.)$Target creature gets +1/+0 and gains flying and first strike until end of turn.|
Mortify|Guildpact|122|U|{1}{W}{B}|Instant|||Destroy target creature or enchantment.|
-Niv-Mizzet, the Firemind|Guildpact|123|R|{2}{U}{U}{R}{R}|Legendary Creature - Dragon Wizard|4|4|Flying$Whenever you draw a card, Niv-Mizzet, the Firemind deals 1 damage to target creature or player.${tap}: Draw a card.|
+Niv-Mizzet, the Firemind|Guildpact|123|R|{2}{U}{U}{R}{R}|Legendary Creature - Dragon Wizard|4|4|Flying$Whenever you draw a card, Niv-Mizzet, the Firemind deals 1 damage to any target.${tap}: Draw a card.|
Orzhov Pontiff|Guildpact|124|R|{1}{W}{B}|Creature - Human Cleric|1|1|Haunt (When this creature dies, exile it haunting target creature.)$When Orzhov Pontiff enters the battlefield or the creature it haunts dies, choose one - Creatures you control get +1/+1 until end of turn; or creatures you don't control get -1/-1 until end of turn.|
Pillory of the Sleepless|Guildpact|125|C|{1}{W}{B}|Enchantment - Aura|||Enchant creature$Enchanted creature can't attack or block.$Enchanted creature has "At the beginning of your upkeep, you lose 1 life."|
Rumbling Slum|Guildpact|126|R|{1}{R}{G}{G}|Creature - Elemental|5|5|At the beginning of your upkeep, Rumbling Slum deals 1 damage to each player.|
@@ -8714,7 +8714,7 @@ Savage Twister|Guildpact|127|U|{X}{R}{G}|Sorcery|||Savage Twister deals X damage
Scab-Clan Mauler|Guildpact|128|C|{R}{G}|Creature - Human Berserker|1|1|Bloodthirst 2 (If an opponent was dealt damage this turn, this creature enters the battlefield with two +1/+1 counters on it.)$Trample|
Schismotivate|Guildpact|129|U|{1}{U}{R}|Instant|||Target creature gets +4/+0 until end of turn. Another target creature gets -4/-0 until end of turn.|
Order of the Stars|Guildpact|13|U|{W}|Creature - Human Cleric|0|1|Defender (This creature can't attack.)$As Order of the Stars enters the battlefield, choose a color.$Order of the Stars has protection from the chosen color.|
-Skarrgan Skybreaker|Guildpact|130|U|{4}{R}{R}{G}|Creature - Giant Shaman|3|3|Bloodthirst 3 (If an opponent was dealt damage this turn, this creature enters the battlefield with three +1/+1 counters on it.)${1}, Sacrifice Skarrgan Skybreaker: Skarrgan Skybreaker deals damage equal to its power to target creature or player.|
+Skarrgan Skybreaker|Guildpact|130|U|{4}{R}{R}{G}|Creature - Giant Shaman|3|3|Bloodthirst 3 (If an opponent was dealt damage this turn, this creature enters the battlefield with three +1/+1 counters on it.)${1}, Sacrifice Skarrgan Skybreaker: Skarrgan Skybreaker deals damage equal to its power to any target.|
Souls of the Faultless|Guildpact|131|U|{W}{B}{B}|Creature - Spirit|0|4|Defender (This creature can't attack.)$Whenever Souls of the Faultless is dealt combat damage, you gain that much life and attacking player loses that much life.|
Stitch in Time|Guildpact|132|R|{1}{U}{R}|Sorcery|||Flip a coin. If you win the flip, take an extra turn after this one.|
Streetbreaker Wurm|Guildpact|133|C|{3}{R}{G}|Creature - Wurm|6|4||
@@ -8734,7 +8734,7 @@ Izzet Guildmage|Guildpact|145|U|{UR}{UR}|Creature - Human Wizard|2|2|({UR} ca
Mourning Thrull|Guildpact|146|C|{1}{WB}|Creature - Thrull|1|1|({WB} can be paid with either {W} or {B}.)$Flying$Whenever Mourning Thrull deals damage, you gain that much life.|
Orzhov Guildmage|Guildpact|147|U|{WB}{WB}|Creature - Human Wizard|2|2|{2}{W}: Target player gains 1 life.${2}{B}: Each player loses 1 life.|
Petrahydrox|Guildpact|148|C|{3}{UR}|Creature - Weird|3|3|({UR} can be paid with either {U} or {R}.)$When Petrahydrox becomes the target of a spell or ability, return Petrahydrox to its owner's hand.|
-Wild Cantor|Guildpact|149|C|{RG}|Creature - Human Druid|1|1|({RG} can be paid with either {R} or {G}.)$Sacrifice Wild Cantor: Add one mana of any color to your mana pool.|
+Wild Cantor|Guildpact|149|C|{RG}|Creature - Human Druid|1|1|({RG} can be paid with either {R} or {G}.)$Sacrifice Wild Cantor: Add one mana of any color.|
Shrieking Grotesque|Guildpact|15|C|{2}{W}|Creature - Gargoyle|2|1|Flying$When Shrieking Grotesque enters the battlefield, if {B} was spent to cast it, target player discards a card.|
Gruul Signet|Guildpact|150|C|{2}|Artifact|||{1}, {tap}: Add {R}{G}.|
Gruul War Plow|Guildpact|151|R|{4}|Artifact|||Creatures you control have trample.${1}{R}{G}: Gruul War Plow becomes a 4/4 Juggernaut artifact creature until end of turn.|
@@ -8758,7 +8758,7 @@ Spelltithe Enforcer|Guildpact|18|R|{3}{W}{W}|Creature - Elephant Wizard|3|3|When
Storm Herd|Guildpact|19|R|{8}{W}{W}|Sorcery|||Put X 1/1 white Pegasus creature tokens with flying onto the battlefield, where X is your life total.|
Belfry Spirit|Guildpact|2|U|{3}{W}{W}|Creature - Spirit|1|1|Flying$Haunt (When this creature dies, exile it haunting target creature.)$When Belfry Spirit enters the battlefield or the creature it haunts dies, put two 1/1 black Bat creature tokens with flying onto the battlefield.|
To Arms!|Guildpact|20|U|{1}{W}|Instant|||Untap all creatures you control.$Draw a card.|
-Withstand|Guildpact|21|C|{2}{W}|Instant|||Prevent the next 3 damage that would be dealt to target creature or player this turn.$Draw a card.|
+Withstand|Guildpact|21|C|{2}{W}|Instant|||Prevent the next 3 damage that would be dealt to any target this turn.$Draw a card.|
AEtherplasm|Guildpact|22|U|{2}{U}{U}|Creature - Illusion|1|1|Whenever Ætherplasm blocks a creature, you may return Ætherplasm to its owner's hand. If you do, you may put a creature card from your hand onto the battlefield blocking that creature.|
Crystal Seer|Guildpact|23|C|{4}{U}|Creature - Vedalken Wizard|2|2|When Crystal Seer enters the battlefield, look at the top four cards of your library, then put them back in any order.${4}{U}: Return Crystal Seer to its owner's hand.|
Drowned Rusalka|Guildpact|24|U|{U}|Creature - Spirit|1|1|{U}, Sacrifice a creature: Discard a card, then draw a card.|
@@ -8773,7 +8773,7 @@ Quicken|Guildpact|31|R|{U}|Instant|||The next sorcery card you cast this turn ca
Repeal|Guildpact|32|C|{X}{U}|Instant|||Return target nonland permanent with converted mana cost X to its owner's hand.$Draw a card.|
Runeboggle|Guildpact|33|C|{2}{U}|Instant|||Counter target spell unless its controller pays {1}.$Draw a card.|
Sky Swallower|Guildpact|34|R|{3}{U}{U}|Creature - Leviathan|8|8|Flying$When Sky Swallower enters the battlefield, target opponent gains control of all other permanents you control.|
-Steamcore Weird|Guildpact|35|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.|
+Steamcore Weird|Guildpact|35|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 any target.|
Stratozeppelid|Guildpact|36|U|{4}{U}|Creature - Beast|4|4|Flying$Stratozeppelid can block only creatures with flying.|
Thunderheads|Guildpact|37|U|{2}{U}|Instant|||Replicate {2}{U} (When you cast this spell, copy it for each time you paid its replicate cost.)$Put a 3/3 blue Weird creature token with defender and flying onto the battlefield. Exile it at the beginning of the next end step.|
Torch Drake|Guildpact|38|C|{3}{U}|Creature - Drake|2|2|Flying${1}{R}: Torch Drake gets +1/+0 until end of turn.|
@@ -8808,13 +8808,13 @@ Smogsteed Rider|Guildpact|63|U|{2}{B}{B}|Creature - Human Wizard|2|2|Whenever Sm
Bloodscale Prowler|Guildpact|64|C|{2}{R}|Creature - Viashino Warrior|3|1|Bloodthirst 1 (If an opponent was dealt damage this turn, this creature enters the battlefield with a +1/+1 counter on it.)|
Fencer's Magemark|Guildpact|65|C|{2}{R}|Enchantment - Aura|||Enchant creature$Creatures you control that are enchanted get +1/+1 and have first strike.|
Ghor-Clan Bloodscale|Guildpact|66|U|{3}{R}|Creature - Viashino Warrior|2|1|First strike${3}{G}: Ghor-Clan Bloodscale gets +2/+2 until end of turn. Activate this ability only once each turn.|
-Hypervolt Grasp|Guildpact|67|U|{2}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{tap}: This creature deals 1 damage to target creature or player."${1}{U}: Return Hypervolt Grasp to its owner's hand.|
+Hypervolt Grasp|Guildpact|67|U|{2}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{tap}: This creature deals 1 damage to any target."${1}{U}: Return Hypervolt Grasp to its owner's hand.|
Leyline of Lightning|Guildpact|68|R|{2}{R}{R}|Enchantment|||If Leyline of Lightning is in your opening hand, you may begin the game with it on the battlefield.$Whenever you cast a spell, you may pay {1}. If you do, Leyline of Lightning deals 1 damage to target player.|
Living Inferno|Guildpact|69|R|{6}{R}{R}|Creature - Elemental|8|5|{tap}: Living Inferno deals damage equal to its power divided as you choose among any number of target creatures. Each of those creatures deals damage equal to its power to Living Inferno.|
Graven Dominator|Guildpact|7|R|{4}{W}{W}|Creature - Gargoyle|4|4|Flying$Haunt (When this creature dies, exile it haunting target creature.)$When Graven Dominator enters the battlefield or the creature it haunts dies, each other creature becomes 1/1 until end of turn.|
Ogre Savant|Guildpact|70|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.|
Parallectric Feedback|Guildpact|71|R|{3}{R}|Instant|||Parallectric Feedback deals damage to target spell's controller equal to that spell's converted mana cost.|
-Pyromatics|Guildpact|72|C|{1}{R}|Instant|||Replicate {1}{R} (When you cast this spell, copy it for each time you paid its replicate cost. You may choose new targets for the copies.)$Pyromatics deals 1 damage to target creature or player.|
+Pyromatics|Guildpact|72|C|{1}{R}|Instant|||Replicate {1}{R} (When you cast this spell, copy it for each time you paid its replicate cost. You may choose new targets for the copies.)$Pyromatics deals 1 damage to any target.|
Rabble-Rouser|Guildpact|73|U|{3}{R}|Creature - Goblin Shaman|1|1|Bloodthirst 1 (If an opponent was dealt damage this turn, this creature enters the battlefield with a +1/+1 counter on it.)${R}, {tap}: Attacking creatures get +X/+0 until end of turn, where X is Rabble-Rouser's power.|
Scorched Rusalka|Guildpact|74|U|{R}|Creature - Spirit|1|1|{R}, Sacrifice a creature: Scorched Rusalka deals 1 damage to target player.|
Shattering Spree|Guildpact|75|U|{R}|Sorcery|||Replicate {R} (When you cast this spell, copy it for each time you paid its replicate cost. You may choose new targets for the copies.)$Destroy target artifact.|
@@ -8839,7 +8839,7 @@ Petrified Wood-Kin|Guildpact|91|R|{6}{G}|Creature - Elemental Warrior|3|3|Petrif
Predatory Focus|Guildpact|92|U|{3}{G}{G}|Sorcery|||You may have creatures you control assign their combat damage this turn as though they weren't blocked.|
Primeval Light|Guildpact|93|U|{3}{G}|Sorcery|||Destroy all enchantments target player controls.|
Silhana Ledgewalker|Guildpact|94|C|{1}{G}|Creature - Elf Rogue|1|1|Hexproof (This creature can't be the target of spells or abilities your opponents control.)$Silhana Ledgewalker can't be blocked except by creatures with flying.|
-Silhana Starfletcher|Guildpact|95|C|{2}{G}|Creature - Elf Druid Archer|1|3|Reach (This creature can block creatures with flying.)$As Silhana Starfletcher enters the battlefield, choose a color.${tap}: Add one mana of the chosen color to your mana pool.|
+Silhana Starfletcher|Guildpact|95|C|{2}{G}|Creature - Elf Druid Archer|1|3|Reach (This creature can block creatures with flying.)$As Silhana Starfletcher enters the battlefield, choose a color.${tap}: Add one mana of the chosen color.|
Skarrgan Pit-Skulk|Guildpact|96|C|{G}|Creature - Human Warrior|1|1|Bloodthirst 1 (If an opponent was dealt damage this turn, this creature enters the battlefield with a +1/+1 counter on it.)$Creatures with power less than Skarrgan Pit-Skulk's power can't block it.|
Starved Rusalka|Guildpact|97|U|{G}|Creature - Spirit|1|1|{G}, Sacrifice a creature: You gain 1 life.|
Wildsize|Guildpact|98|C|{2}{G}|Instant|||Target creature gets +2/+2 and gains trample until end of turn.$Draw a card.|
@@ -8890,7 +8890,7 @@ Mystic Decree|Homelands|43|R|{2}{U}{U}|World Enchantment|||All creatures lose fl
Narwhal|Homelands|44|R|{2}{U}{U}|Creature - Whale|2|2|First strike, protection from red|
Reef Pirates|Homelands|45|C|{1}{U}{U}|Creature - Zombie Pirate|2|2|Whenever Reef Pirates deals damage to an opponent, that player puts the top card of his or her library into his or her graveyard.|
Reef Pirates|Homelands|46|C|{1}{U}{U}|Creature - Zombie Pirate|2|2|Whenever Reef Pirates deals damage to an opponent, that player puts the top card of his or her library into his or her graveyard.|
-Reveka, Wizard Savant|Homelands|47|R|{2}{U}{U}|Legendary Creature - Dwarf Wizard|0|1|{tap}: Reveka, Wizard Savant deals 2 damage to target creature or player and doesn't untap during your next untap step.|
+Reveka, Wizard Savant|Homelands|47|R|{2}{U}{U}|Legendary Creature - Dwarf Wizard|0|1|{tap}: Reveka, Wizard Savant deals 2 damage to any target and doesn't untap during your next untap step.|
Sea Sprite|Homelands|48|U|{1}{U}|Creature - Faerie|1|1|Flying, protection from red|
Sea Troll|Homelands|49|U|{2}{U}|Creature - Troll|2|1|{U}: Regenerate Sea Troll. Activate this ability only if Sea Troll blocked or was blocked by a blue creature this turn.|
Wall of Kelp|Homelands|50|R|{U}{U}|Creature - Plant Wall|0|3|Defender (This creature can't attack.)${U}{U}, {tap}: Put a 0/1 blue Plant Wall creature token with defender named Kelp onto the battlefield.|
@@ -8928,8 +8928,8 @@ Ambush Party|Homelands|80|C|{4}{R}|Creature - Human Rogue|3|1|First strike, hast
Anaba Ancestor|Homelands|81|R|{1}{R}|Creature - Minotaur Spirit|1|1|{tap}: Another target Minotaur creature gets +1/+1 until end of turn.|
Anaba Bodyguard|Homelands|82|C|{3}{R}|Creature - Minotaur|2|3|First strike (This creature deals combat damage before creatures without first strike.)|
Anaba Bodyguard|Homelands|83|C|{3}{R}|Creature - Minotaur|2|3|First strike (This creature deals combat damage before creatures without first strike.)|
-Anaba Shaman|Homelands|84|C|{3}{R}|Creature - Minotaur Shaman|2|2|{R}, {tap}: Anaba Shaman deals 1 damage to target creature or player.|
-Anaba Shaman|Homelands|85|C|{3}{R}|Creature - Minotaur Shaman|2|2|{R}, {tap}: Anaba Shaman deals 1 damage to target creature or player.|
+Anaba Shaman|Homelands|84|C|{3}{R}|Creature - Minotaur Shaman|2|2|{R}, {tap}: Anaba Shaman deals 1 damage to any target.|
+Anaba Shaman|Homelands|85|C|{3}{R}|Creature - Minotaur Shaman|2|2|{R}, {tap}: Anaba Shaman deals 1 damage to any target.|
Anaba Spirit Crafter|Homelands|86|R|{2}{R}{R}|Creature - Minotaur Shaman|1|3|Minotaur creatures get +1/+0.|
An-Zerrin Ruins|Homelands|87|R|{2}{R}{R}|Enchantment|||As An-Zerrin Ruins enters the battlefield, choose a creature type.$Creatures of the chosen type don't untap during their controllers' untap steps.|
Chandler|Homelands|88|C|{4}{R}|Legendary Creature - Human Rogue|3|3|{R}{R}{R}, {tap}: Destroy target artifact creature.|
@@ -8964,7 +8964,7 @@ Samite Alchemist|Homelands|117|C|{3}{W}|Creature - Human Cleric|0|2|{W}{W}, {tap
Serra Aviary|Homelands|118|R|{3}{W}|World Enchantment|||Creatures with flying get +1/+1.|
Serra Bestiary|Homelands|119|C|{W}{W}|Enchantment - Aura|||Enchant creature$At the beginning of your upkeep, sacrifice Serra Bestiary unless you pay {W}{W}.$Enchanted creature can't attack or block, and its activated abilities with {tap} in their costs can't be activated.|
Serra Inquisitors|Homelands|120|U|{4}{W}|Creature - Human Cleric|3|3|Whenever Serra Inquisitors blocks or becomes blocked by one or more black creatures, Serra Inquisitors gets +2/+0 until end of turn.|
-Serra Paladin|Homelands|121|C|{2}{W}{W}|Creature - Human Knight|2|2|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.${1}{W}{W}, {tap}: Target creature gains vigilance until end of turn.|
+Serra Paladin|Homelands|121|C|{2}{W}{W}|Creature - Human Knight|2|2|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.${1}{W}{W}, {tap}: Target creature gains vigilance until end of turn.|
Soraya the Falconer|Homelands|122|R|{1}{W}{W}|Legendary Creature - Human|2|2|Bird creatures get +1/+1.${1}{W}: Target Bird creature gains banding until end of turn. (Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding 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.)|
Trade Caravan|Homelands|123|C|{W}|Creature - Human Nomad|1|1|At the beginning of your upkeep, put a currency counter on Trade Caravan.$Remove two currency counters from Trade Caravan: Untap target basic land. Activate this ability only during an opponent's upkeep.|
Trade Caravan|Homelands|124|C|{W}|Creature - Human Nomad|1|1|At the beginning of your upkeep, put a currency counter on Trade Caravan.$Remove two currency counters from Trade Caravan: Untap target basic land. Activate this ability only during an opponent's upkeep.|
@@ -8998,7 +8998,7 @@ Word of Undoing|Ice Age|108|C|{U}|Instant|||Return target creature and all white
Wrath of Marit Lage|Ice Age|109|R|{3}{U}{U}|Enchantment|||When Wrath of Marit Lage enters the battlefield, tap all red creatures.$Red creatures don't untap during their controllers' untap steps.|
Drift of the Dead|Ice Age|11|U|{3}{B}|Creature - Wall|*|*|Defender (This creature can't attack.)$Drift of the Dead's power and toughness are each equal to the number of snow lands you control.|
Zuran Enchanter|Ice Age|110|C|{1}{U}|Creature - Human Wizard|1|1|{2}{B}, {tap}: Target player discards a card. Activate this ability only during your turn.|
-Zuran Spellcaster|Ice Age|111|C|{2}{U}|Creature - Human Wizard|1|1|{tap}: Zuran Spellcaster deals 1 damage to target creature or player.|
+Zuran Spellcaster|Ice Age|111|C|{2}{U}|Creature - Human Wizard|1|1|{tap}: Zuran Spellcaster deals 1 damage to any target.|
Zur's Weirding|Ice Age|112|R|{3}{U}|Enchantment|||Players play with their hands revealed.$If a player would draw a card, he or she reveals it instead. Then any other player may pay 2 life. If a player does, put that card into its owner's graveyard. Otherwise, that player draws a card.|
Aurochs|Ice Age|113|C|{3}{G}|Creature - Aurochs|2|3|Trample$Whenever Aurochs attacks, it gets +1/+0 until end of turn for each other attacking Aurochs.|
Balduvian Bears|Ice Age|114|C|{1}{G}|Creature - Bear|2|2||
@@ -9016,7 +9016,7 @@ Folk of the Pines|Ice Age|123|C|{4}{G}|Creature - Dryad|2|5|{1}{G}: Folk of the
Forbidden Lore|Ice Age|124|R|{2}{G}|Enchantment - Aura|||Enchant land$Enchanted land has "{tap}: Target creature gets +2/+1 until end of turn."|
Forgotten Lore|Ice Age|125|U|{G}|Sorcery|||Target opponent chooses a card in your graveyard. You may pay {G}. If you do, repeat this process except that opponent can't choose a card already chosen for Forgotten Lore. Then put the last chosen card into your hand.|
Foxfire|Ice Age|126|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.|
-Freyalise Supplicant|Ice Age|127|U|{1}{G}|Creature - Human Cleric|1|1|{tap}, Sacrifice a red or white creature: Freyalise Supplicant deals damage to target creature or player equal to half the sacrificed creature's power, rounded down.|
+Freyalise Supplicant|Ice Age|127|U|{1}{G}|Creature - Human Cleric|1|1|{tap}, Sacrifice a red or white creature: Freyalise Supplicant deals damage to any target equal to half the sacrificed creature's power, rounded down.|
Freyalise's Charm|Ice Age|128|U|{G}{G}|Enchantment|||Whenever an opponent casts a black spell, you may pay {G}{G}. If you do, you draw a card.${G}{G}: Return Freyalise's Charm to its owner's hand.|
Freyalise's Winds|Ice Age|129|R|{2}{G}{G}|Enchantment|||Whenever a permanent becomes tapped, put a wind counter on it.$If a permanent with a wind counter on it would untap during its controller's untap step, remove all wind counters from it instead.|
Flow of Maggots|Ice Age|13|R|{2}{B}|Creature - Insect|2|2|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.)$Flow of Maggots can't be blocked by non-Wall creatures.|
@@ -9026,7 +9026,7 @@ Fyndhorn Elves|Ice Age|132|C|{G}|Creature - Elf Druid|1|1|{tap}: Add {G}.|
Fyndhorn Pollen|Ice Age|133|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.|
Giant Growth|Ice Age|134|C|{G}|Instant|||Target creature gets +3/+3 until end of turn.|
Gorilla Pack|Ice Age|135|C|{2}{G}|Creature - Ape|3|3|Gorilla Pack can't attack unless defending player controls a Forest.$$When you control no Forests, sacrifice Gorilla Pack.|
-Hot Springs|Ice Age|136|R|{1}{G}|Enchantment - Aura|||Enchant land you control$Enchanted land has "{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn."|
+Hot Springs|Ice Age|136|R|{1}{G}|Enchantment - Aura|||Enchant land you control$Enchanted land has "{tap}: Prevent the next 1 damage that would be dealt to any target this turn."|
Hurricane|Ice Age|137|U|{X}{G}|Sorcery|||Hurricane deals X damage to each creature with flying and each player.|
Johtull Wurm|Ice Age|138|U|{5}{G}|Creature - Wurm|6|6|Whenever Johtull Wurm becomes blocked, it gets -2/-1 until end of turn for each creature blocking it beyond the first.|
Juniper Order Druid|Ice Age|139|C|{2}{G}|Creature - Human Cleric Druid|1|1|{tap}: Untap target land.|
@@ -9073,7 +9073,7 @@ Bone Shaman|Ice Age|176|C|{2}{R}{R}|Creature - Giant Shaman|3|3|{B}: Until end o
Brand of Ill Omen|Ice Age|177|R|{3}{R}|Enchantment - Aura|||Enchant creature$Cumulative upkeep {R} (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.)$Enchanted creature's controller can't cast creature spells.|
Chaos Lord|Ice Age|178|R|{4}{R}{R}{R}|Creature - Human|7|7|First strike$At the beginning of your upkeep, target opponent gains control of Chaos Lord if the number of permanents is even.$Chaos Lord can attack as though it had haste unless it entered the battlefield this turn.|
Chaos Moon|Ice Age|179|R|{3}{R}|Enchantment|||At the beginning of each upkeep, count the number of permanents. If the number is odd, until end of turn, red creatures get +1/+1 and whenever a player taps a Mountain for mana, that player adds {R} to his or her mana pool (in addition to the mana the land produces). If the number is even, until end of turn, red creatures get -1/-1 and if a player taps a Mountain for mana, that Mountain produces colorless mana instead of any other type.|
-Hecatomb|Ice Age|18|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.|
+Hecatomb|Ice Age|18|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 any target.|
Conquer|Ice Age|180|U|{3}{R}{R}|Enchantment - Aura|||Enchant land$You control enchanted land.|
Curse of Marit Lage|Ice Age|181|R|{3}{R}{R}|Enchantment|||When Curse of Marit Lage enters the battlefield, tap all Islands.$Islands don't untap during their controllers' untap steps.|
Dwarven Armory|Ice Age|182|R|{2}{R}{R}|Enchantment|||{2}, Sacrifice a land: Put a +2/+2 counter on target creature. Activate this ability only during any upkeep step.|
@@ -9088,11 +9088,11 @@ Goblin Ski Patrol|Ice Age|190|C|{1}{R}|Creature - Goblin|1|1|{1}{R}: Goblin Ski
Goblin Snowman|Ice Age|191|U|{3}{R}|Creature - Goblin|1|1|Whenever Goblin Snowman blocks, prevent all combat damage that would be dealt to and dealt by it this turn.${tap}: Goblin Snowman deals 1 damage to target creature it's blocking.|
Grizzled Wolverine|Ice Age|192|C|{1}{R}{R}|Creature - Wolverine|2|2|{R}: Grizzled Wolverine gets +2/+0 until end of turn. Activate this ability only during the declare blockers step, only if at least one creature is blocking Grizzled Wolverine, and only once each turn.|
Imposing Visage|Ice Age|193|C|{R}|Enchantment - Aura|||Enchant creature$Enchanted creature can't be blocked except by two or more creatures.|
-Incinerate|Ice Age|194|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.|
+Incinerate|Ice Age|194|C|{1}{R}|Instant|||Incinerate deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.|
Jokulhaups|Ice Age|195|R|{4}{R}{R}|Sorcery|||Destroy all artifacts, creatures, and lands. They can't be regenerated.|
Karplusan Giant|Ice Age|196|U|{6}{R}|Creature - Giant|3|3|Tap an untapped snow land you control: Karplusan Giant gets +1/+1 until end of turn.|
Karplusan Yeti|Ice Age|197|R|{3}{R}{R}|Creature - Yeti|3|3|{tap}: Karplusan Yeti deals damage equal to its power to target creature. That creature deals damage equal to its power to Karplusan Yeti.|
-Lava Burst|Ice Age|198|C|{X}{R}|Sorcery|||Lava Burst deals X damage to target creature or player. If Lava Burst would deal damage to a creature, that damage can't be prevented or dealt instead to another creature or player.|
+Lava Burst|Ice Age|198|C|{X}{R}|Sorcery|||Lava Burst deals X damage to any target. If Lava Burst would deal damage to a creature, that damage can't be prevented or dealt instead to another creature or player.|
Marton Stromgald|Ice Age|199|R|{2}{R}{R}|Legendary Creature - Human Knight|1|1|Whenever Márton Stromgald attacks, other attacking creatures get +1/+1 until end of turn for each attacking creature other than Márton Stromgald.$Whenever Márton Stromgald blocks, other blocking creatures get +1/+1 until end of turn for each blocking creature other than Márton Stromgald.|
Ashen Ghoul|Ice Age|2|U|{3}{B}|Creature - Zombie|3|1|Haste${B}: Return Ashen Ghoul from your graveyard to the battlefield. Activate this ability only during your upkeep and only if three or more creature cards are above Ashen Ghoul.|
Howl from Beyond|Ice Age|20|C|{X}{B}|Instant|||Target creature gets +X/+0 until end of turn.|
@@ -9100,7 +9100,7 @@ Melting|Ice Age|201|U|{3}{R}|Enchantment|||All lands are no longer snow.|
Meteor Shower|Ice Age|202|C|{X}{X}{R}|Sorcery|||Meteor Shower deals X plus 1 damage divided as you choose among any number of target creatures and/or players.|
Mountain Goat|Ice Age|203|C|{R}|Creature - Goat|1|1|Mountainwalk|
Mudslide|Ice Age|204|R|{2}{R}|Enchantment|||Creatures without flying don't untap during their controllers' untap steps.$At the beginning of each player's upkeep, that player may choose any number of tapped creatures without flying he or she controls and pay {2} for each creature chosen this way. If the player does, untap those creatures.|
-Orcish Cannoneers|Ice Age|205|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Cannoneers deals 2 damage to target creature or player and 3 damage to you.|
+Orcish Cannoneers|Ice Age|205|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Cannoneers deals 2 damage to any target and 3 damage to you.|
Orcish Conscripts|Ice Age|206|C|{R}|Creature - Orc|2|2|Orcish Conscripts can't attack unless at least two other creatures attack.$$Orcish Conscripts can't block unless at least two other creatures block.|
Orcish Farmer|Ice Age|207|C|{1}{R}{R}|Creature - Orc|2|2|{tap}: Target land becomes a Swamp until its controller's next untap step.|
Orcish Healer|Ice Age|208|U|{R}{R}|Creature - Orc Cleric|1|1|{R}{R}, {tap}: Target creature can't be regenerated this turn.${B}{B}{R}, {tap}: Regenerate target black or green creature.${R}{G}{G}, {tap}: Regenerate target black or green creature.|
@@ -9144,7 +9144,7 @@ Cooperation|Ice Age|242|C|{2}{W}|Enchantment - Aura|||Enchant creature$Enchanted
Death Ward|Ice Age|243|C|{W}|Instant|||Regenerate target creature.|
Disenchant|Ice Age|244|C|{1}{W}|Instant|||Destroy target artifact or enchantment.|
Drought|Ice Age|245|U|{2}{W}{W}|Enchantment|||At the beginning of your upkeep, sacrifice Drought unless you pay {W}{W}.$Spells cost an additional "Sacrifice a Swamp" to cast for each black mana symbol in their mana costs.$Activated abilities cost an additional "Sacrifice a Swamp" to activate for each black mana symbol in their activation costs.|
-Elvish Healer|Ice Age|246|C|{2}{W}|Creature - Elf Cleric|1|2|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn. If that creature is green, prevent the next 2 damage instead.|
+Elvish Healer|Ice Age|246|C|{2}{W}|Creature - Elf Cleric|1|2|{tap}: Prevent the next 1 damage that would be dealt to any target this turn. If that creature is green, prevent the next 2 damage instead.|
Enduring Renewal|Ice Age|247|R|{2}{W}{W}|Enchantment|||Play with your hand revealed.$If you would draw a card, reveal the top card of your library instead. If it's a creature card, put it into your graveyard. Otherwise, draw a card.$Whenever a creature is put into your graveyard from the battlefield, return it to your hand.|
Energy Storm|Ice Age|248|R|{1}{W}|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.)$Prevent all damage that would be dealt by instant and sorcery spells.$Creatures with flying don't untap during their controllers' untap steps.|
Kjeldoran Dead|Ice Age|25|C|{B}|Creature - Skeleton|3|1|When Kjeldoran Dead enters the battlefield, sacrifice a creature.${B}: Regenerate Kjeldoran Dead.|
@@ -9152,7 +9152,7 @@ Fylgja|Ice Age|250|C|{W}|Enchantment - Aura|||Enchant creature$Fylgja enters the
General Jarkeld|Ice Age|251|R|{3}{W}|Legendary Creature - Human Soldier|1|2|{tap}: Switch the blocking creatures of two target attacking creatures. Activate this ability only during the declare blockers step.|
Green Scarab|Ice Age|252|U|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature can't be blocked by green creatures.$Enchanted creature gets +2/+2 as long as an opponent controls a green permanent.|
Hallowed Ground|Ice Age|253|U|{1}{W}|Enchantment|||{W}{W}: Return target nonsnow land you control to its owner's hand.|
-Heal|Ice Age|254|C|{W}|Instant|||Prevent the next 1 damage that would be dealt to target creature or player this turn.$$Draw a card at the beginning of the next turn's upkeep.|
+Heal|Ice Age|254|C|{W}|Instant|||Prevent the next 1 damage that would be dealt to any target this turn.$$Draw a card at the beginning of the next turn's upkeep.|
Hipparion|Ice Age|255|U|{1}{W}|Creature - Horse|1|3|Hipparion can't block creatures with power 3 or greater unless you pay {1}.|
Kelsinko Ranger|Ice Age|257|C|{W}|Creature - Human|1|1|{1}{W}: Target green creature gains first strike until end of turn.|
Kjeldoran Elite Guard|Ice Age|258|U|{3}{W}|Creature - Human Soldier|2|2|{tap}: Target creature gets +2/+2 until end of turn. When that creature leaves the battlefield this turn, sacrifice Kjeldoran Elite Guard. Activate this ability only during combat.|
@@ -9185,7 +9185,7 @@ Amulet of Quoz|Ice Age|283|R|{6}|Artifact|||Remove Amulet of Quoz from your deck
Arcum's Sleigh|Ice Age|284|U|{1}|Artifact|||{2}, {tap}: Target creature gains vigilance until end of turn. Activate this ability only during combat and only if defending player controls a snow land.|
Arcum's Weathervane|Ice Age|285|U|{2}|Artifact|||{2}, {tap}: Target snow land is no longer snow.${2}, {tap}: Target nonsnow basic land becomes snow.|
Arcum's Whistle|Ice Age|286|U|{3}|Artifact|||{3}, {tap}: Choose target non-Wall creature the active player has controlled continuously since the beginning of the turn. That player may pay {X}, where X is that creature's converted mana cost. If he or she doesn't, the creature attacks this turn if able, and at the beginning of the next end step, destroy it if it didn't attack. Activate this ability only before attackers are declared.|
-Barbed Sextant|Ice Age|287|C|{1}|Artifact|||{1}, {tap}, Sacrifice Barbed Sextant: Add one mana of any color to your mana pool. Draw a card at the beginning of the next turn's upkeep.|
+Barbed Sextant|Ice Age|287|C|{1}|Artifact|||{1}, {tap}, Sacrifice Barbed Sextant: Add one mana of any color. Draw a card at the beginning of the next turn's upkeep.|
Baton of Morale|Ice Age|288|U|{2}|Artifact|||{2}: Target creature gains banding until end of turn. (Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding 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.)|
Celestial Sword|Ice Age|289|R|{6}|Artifact|||{3}, {tap}: Target creature you control gets +3/+3 until end of turn. Its controller sacrifices it at the beginning of the next end step.|
Krovikan Vampire|Ice Age|29|U|{3}{B}{B}|Creature - Vampire|3|3|At the beginning of each end step, if a creature dealt damage by Krovikan Vampire this turn died, put that card onto the battlefield under your control. Sacrifice it when you lose control of Krovikan Vampire.|
@@ -9195,14 +9195,14 @@ Elkin Bottle|Ice Age|292|R|{3}|Artifact|||{3}, {tap}: Exile the top card of your
Fyndhorn Bow|Ice Age|293|U|{2}|Artifact|||{3}, {tap}: Target creature gains first strike until end of turn.|
Goblin Lyre|Ice Age|294|R|{3}|Artifact|||Sacrifice Goblin Lyre: Flip a coin. If you win the flip, Goblin Lyre deals damage to target opponent equal to the number of creatures you control. If you lose the flip, Goblin Lyre deals damage to you equal to the number of creatures that opponent controls.|
Hematite Talisman|Ice Age|295|U|{2}|Artifact|||Whenever a player casts a red spell, you may pay {3}. If you do, untap target permanent.|
-Ice Cauldron|Ice Age|296|R|{4}|Artifact|||{X}, {tap}: Put a charge counter on Ice Cauldron and exile a nonland card from your hand. You may cast that card for as long as it remains exiled. Note the type and amount of mana spent to pay this activation cost. Activate this ability only if there are no charge counters on Ice Cauldron.${tap}, Remove a charge counter from Ice Cauldron: Add Ice Cauldron's last noted type and amount of mana to your mana pool. Spend this mana only to cast the last card exiled with Ice Cauldron.|
+Ice Cauldron|Ice Age|296|R|{4}|Artifact|||{X}, {tap}: Put a charge counter on Ice Cauldron and exile a nonland card from your hand. You may cast that card for as long as it remains exiled. Note the type and amount of mana spent to pay this activation cost. Activate this ability only if there are no charge counters on Ice Cauldron.${tap}, Remove a charge counter from Ice Cauldron: Add Ice Cauldron's last noted type and amount of mana. Spend this mana only to cast the last card exiled with Ice Cauldron.|
Icy Manipulator|Ice Age|297|U|{4}|Artifact|||{1}, {tap}: Tap target artifact, creature, or land.|
Infinite Hourglass|Ice Age|298|R|{4}|Artifact|||At the beginning of your upkeep, put a time counter on Infinite Hourglass.$All creatures get +1/+0 for each time counter on Infinite Hourglass.${3}: Remove a time counter from Infinite Hourglass. Any player may activate this ability but only during any upkeep step.|
Jester's Cap|Ice Age|299|R|{4}|Artifact|||{2}, {tap}, Sacrifice Jester's Cap: Search target player's library for three cards and exile them. Then that player shuffles his or her library.|
Brine Shaman|Ice Age|3|C|{1}{B}|Creature - Human Cleric Shaman|1|1|{tap}, Sacrifice a creature: Target creature gets +2/+2 until end of turn.${1}{U}{U}, Sacrifice a creature: Counter target creature spell.|
Legions of Lim-Dul|Ice Age|30|C|{1}{B}{B}|Creature - Zombie|2|3|Snow swampwalk|
Jester's Mask|Ice Age|300|R|{5}|Artifact|||Jester's Mask enters the battlefield tapped.${1}, {tap}, Sacrifice Jester's Mask: Target opponent puts the cards from his or her hand on top of his or her library. Search that player's library for that many cards. That player puts those cards into his or her hand, then shuffles his or her library.|
-Jeweled Amulet|Ice Age|301|U|{0}|Artifact|||{1}, {tap}: Put a charge counter on Jeweled Amulet. Note the type of mana spent to pay this activation cost. Activate this ability only if there are no charge counters on Jeweled Amulet.${tap}, Remove a charge counter from Jeweled Amulet: Add one mana of Jeweled Amulet's last noted type to your mana pool.|
+Jeweled Amulet|Ice Age|301|U|{0}|Artifact|||{1}, {tap}: Put a charge counter on Jeweled Amulet. Note the type of mana spent to pay this activation cost. Activate this ability only if there are no charge counters on Jeweled Amulet.${tap}, Remove a charge counter from Jeweled Amulet: Add one mana of Jeweled Amulet's last noted type.|
Lapis Lazuli Talisman|Ice Age|302|U|{2}|Artifact|||Whenever a player casts a blue spell, you may pay {3}. If you do, untap target permanent.|
Malachite Talisman|Ice Age|303|U|{2}|Artifact|||Whenever a player casts a green spell, you may pay {3}. If you do, untap target permanent.|
Nacre Talisman|Ice Age|304|U|{2}|Artifact|||Whenever a player casts a white spell, you may pay {3}. If you do, untap target permanent.|
@@ -9213,7 +9213,7 @@ Pit Trap|Ice Age|308|U|{2}|Artifact|||{2}, {tap}, Sacrifice Pit Trap: Destroy ta
Runed Arch|Ice Age|309|R|{3}|Artifact|||Runed Arch enters the battlefield tapped.${X}, {tap}, Sacrifice Runed Arch: X target creatures with power 2 or less are unblockable this turn.|
Leshrac's Rite|Ice Age|31|U|{B}|Enchantment - Aura|||Enchant creature$Enchanted creature has swampwalk.|
Shield of the Ages|Ice Age|310|U|{2}|Artifact|||{2}: Prevent the next 1 damage that would be dealt to you this turn.|
-Skull Catapult|Ice Age|311|U|{4}|Artifact|||{1}, {tap}, Sacrifice a creature: Skull Catapult deals 2 damage to target creature or player.|
+Skull Catapult|Ice Age|311|U|{4}|Artifact|||{1}, {tap}, Sacrifice a creature: Skull Catapult deals 2 damage to any target.|
Snow Fortress|Ice Age|312|R|{5}|Artifact Creature - Wall|0|4|Defender (This creature can't attack.)${1}: Snow Fortress gets +1/+0 until end of turn.${1}: Snow Fortress gets +0/+1 until end of turn.${3}: Snow Fortress deals 1 damage to target creature without flying that's attacking you.|
Soldevi Golem|Ice Age|313|R|{4}|Artifact Creature - Golem|5|3|Soldevi Golem doesn't untap during your untap step.$At the beginning of your upkeep, you may untap target tapped creature an opponent controls. If you do, untap Soldevi Golem.|
Soldevi Simulacrum|Ice Age|314|U|{4}|Artifact Creature - Soldier|2|4|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.)${1}: Soldevi Simulacrum gets +1/+0 until end of turn.|
@@ -9290,7 +9290,7 @@ Skeleton Ship|Ice Age|379|R|{3}{U}|Legendary Creature - Skeleton|0|3|When you co
Minion of Leshrac|Ice Age|38|R|{4}{B}{B}{B}|Creature - Demon Minion|5|5|Protection from black$At the beginning of your upkeep, Minion of Leshrac deals 5 damage to you unless you sacrifice a creature other than Minion of Leshrac. If Minion of Leshrac deals damage to you this way, tap it.${tap}: Destroy target creature or land.|
Spectral Shield|Ice Age|380|U|{1}{W}{U}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +0/+2 and can't be the target of spells.|
Storm Spirit|Ice Age|381|R|{3}{G}{W}{U}|Creature - Elemental Spirit|3|3|Flying${tap}: Storm Spirit deals 2 damage to target creature.|
-Stormbind|Ice Age|382|R|{1}{R}{G}|Enchantment|||{2}, Discard a card at random: Stormbind deals 2 damage to target creature or player.|
+Stormbind|Ice Age|382|R|{1}{R}{G}|Enchantment|||{2}, Discard a card at random: Stormbind deals 2 damage to any target.|
Wings of Aesthir|Ice Age|383|U|{W}{U}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+0 and has flying and first strike.|
Minion of Tevesh Szat|Ice Age|39|R|{4}{B}{B}{B}|Creature - Demon Minion|4|4|At the beginning of your upkeep, Minion of Tevesh Szat deals 2 damage to you unless you pay {B}{B}.${tap}: Target creature gets +3/-2 until end of turn.|
Burnt Offering|Ice Age|4|C|{B}|Instant|||As an additional cost to cast Burnt Offering, sacrifice a creature.$Add X mana in any combination of {B} and/or {R}, where X is the sacrificed creature's converted mana cost.|
@@ -9305,7 +9305,7 @@ Pestilence Rats|Ice Age|45|C|{2}{B}|Creature - Rat|*|3|Pestilence Rats's power i
Pox|Ice Age|46|R|{B}{B}{B}|Sorcery|||Each player loses a third of his or her life, then discards a third of the cards in his or her hand, then sacrifices a third of the creatures he or she controls, then sacrifices a third of the lands he or she controls. Round up each time.|
Seizures|Ice Age|47|C|{1}{B}|Enchantment - Aura|||Enchant creature$Whenever enchanted creature becomes tapped, Seizures deals 3 damage to that creature's controller unless that player pays {3}.|
Songs of the Damned|Ice Age|48|C|{B}|Instant|||Add {B} for each creature card in your graveyard.|
-Soul Burn|Ice Age|49|C|{X}{2}{B}|Sorcery|||Spend only black and/or red mana on X.$Soul Burn deals X damage to target creature or player. You gain life equal to the damage dealt, but not more than the amount of {B} spent on X, the player's life total before Soul Burn dealt damage, or the creature's toughness.|
+Soul Burn|Ice Age|49|C|{X}{2}{B}|Sorcery|||Spend only black and/or red mana on X.$Soul Burn deals X damage to any target. You gain life equal to the damage dealt, but not more than the amount of {B} spent on X, the player's life total before Soul Burn dealt damage, or the creature's toughness.|
Cloak of Confusion|Ice Age|5|C|{1}{B}|Enchantment - Aura|||Enchant creature you control$Whenever enchanted creature attacks and isn't blocked, you may have it assign no combat damage this turn. If you do, defending player discards a card at random.|
Soul Kiss|Ice Age|50|C|{2}{B}|Enchantment - Aura|||Enchant creature${B}, Pay 1 life: Enchanted creature gets +2/+2 until end of turn. Activate this ability no more than three times each turn.|
Spoils of Evil|Ice Age|51|R|{2}{B}|Instant|||For each artifact or creature card in target opponent's graveyard, add {C} and you gain 1 life.|
@@ -9328,7 +9328,7 @@ Dreams of the Dead|Ice Age|66|U|{3}{U}|Enchantment|||{1}{U}: Return target white
Enervate|Ice Age|67|C|{1}{U}|Instant|||Tap target artifact, creature, or land.$$Draw a card at the beginning of the next turn's upkeep.|
Errant Minion|Ice Age|68|C|{2}{U}|Enchantment - Aura|||Enchant creature$At the beginning of the upkeep of enchanted creature's controller, that player may pay any amount of mana. Errant Minion deals 2 damage to that player. Prevent X of that damage, where X is the amount of mana that player paid this way.|
Essence Flare|Ice Age|69|C|{U}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+0.$At the beginning of the upkeep of enchanted creature's controller, put a -0/-1 counter on that creature.|
-Flare|Ice Age|185|C|{2}{R}|Instant|||Flare deals 1 damage to target creature or player.$$Draw a card at the beginning of the next turn's upkeep.|
+Flare|Ice Age|185|C|{2}{R}|Instant|||Flare deals 1 damage to any target.$$Draw a card at the beginning of the next turn's upkeep.|
Dark Banishing|Ice Age|7|C|{2}{B}|Instant|||Destroy target nonblack creature. It can't be regenerated.|
Force Void|Ice Age|70|U|{2}{U}|Instant|||Counter target spell unless its controller pays {1}.$$Draw a card at the beginning of the next turn's upkeep.|
Glacial Wall|Ice Age|71|U|{2}{U}|Creature - Wall|0|7|Defender (This creature can't attack.)|
@@ -9405,8 +9405,8 @@ Balefire Dragon|Innistrad|129|M|{5}{R}{R}|Creature - Dragon|6|6|Flying$Whenever
Elite Inquisitor|Innistrad|13|R|{W}{W}|Creature - Human Soldier|2|2|First strike, vigilance$Protection from Vampires, from Werewolves, and from Zombies|
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.|
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.|
-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.|
+Brimstone Volley|Innistrad|132|C|{2}{R}|Instant|||Brimstone Volley deals 3 damage to any target.$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 any target.|
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.|
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.|
@@ -9414,15 +9414,15 @@ Curse of the Nightly Hunt|Innistrad|137|U|{2}{R}|Enchantment - Aura Curse|||Ench
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} (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.)|
-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.)|
+Devil's Play|Innistrad|140|R|{X}{R}|Sorcery|||Devil's Play deals X damage to any target.$Flashback {X}{R}{R}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
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.|
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} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
+Geistflame|Innistrad|144|C|{R}|Instant|||Geistflame deals 1 damage to any target.$Flashback {3}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
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.|
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.|
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}: 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.|
+Heretic's Punishment|Innistrad|147|R|{4}{R}|Enchantment|||{3}{R}: Choose any target, 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.|
Infernal Plunge|Innistrad|148|C|{R}|Sorcery|||As an additional cost to cast Infernal Plunge, sacrifice a creature.$Add {R}{R}{R}.|
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.|
@@ -9434,7 +9434,7 @@ Terror of Kruin Pass|Innistrad|152b|R||Creature - Werewolf|3|3|Double strike$Eac
Night Revelers|Innistrad|153|C|{4}{R}|Creature - Vampire|4|4|Night Revelers has haste 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} (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.)|
-Pitchburn Devils|Innistrad|156|C|{4}{R}|Creature - Devil|3|3|When Pitchburn Devils dies, it deals 3 damage to target creature or player.|
+Pitchburn Devils|Innistrad|156|C|{4}{R}|Creature - Devil|3|3|When Pitchburn Devils dies, it deals 3 damage to any target.|
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|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.|
@@ -9443,7 +9443,7 @@ Gallows Warden|Innistrad|16|U|{4}{W}|Creature - Spirit|3|3|Flying$Other Spirit c
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} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
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.|
-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.|
+Skirsdag Cultist|Innistrad|163|U|{2}{R}{R}|Creature - Human Shaman|2|2|{R}, {tap}, Sacrifice a creature: Skirsdag Cultist deals 2 damage to any target.|
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.|
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.|
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.|
@@ -9511,7 +9511,7 @@ Evil Twin|Innistrad|212|R|{2}{U}{B}|Creature - Shapeshifter|0|0|You may have Evi
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.|
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 "{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.)|
+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 any target."$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)|
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}, {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.|
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.)|
@@ -9544,7 +9544,7 @@ Isolated Chapel|Innistrad|242|R||Land|||Isolated Chapel enters the battlefield t
Kessig Wolf Run|Innistrad|243|R||Land|||{tap}: Add {C}.${X}{R}{G}, {tap}: Target creature gets +X/+0 and gains trample until end of turn.|
Moorland Haunt|Innistrad|244|R||Land|||{tap}: Add {C}.${W}{U}, {tap}, 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|||{tap}: Add {C}.${1}{U}{B}, {tap}: Target player puts the top three cards of his or her library into his or her graveyard.|
-Shimmering Grotto|Innistrad|246|C||Land|||{tap}: Add {C}.${1}, {tap}: Add one mana of any color to your mana pool.|
+Shimmering Grotto|Innistrad|246|C||Land|||{tap}: Add {C}.${1}, {tap}: Add one mana of any color.|
Stensia Bloodhall|Innistrad|247|R||Land|||{tap}: Add {C}.${3}{B}{R}, {tap}: 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 a Mountain.${tap}: Add {U} or {R}.|
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}.|
@@ -9679,7 +9679,7 @@ Ravenous Rats|Invasion|120|C|{1}{B}|Creature - Rat|1|1|When Ravenous Rats enters
Reckless Spite|Invasion|121|U|{1}{B}{B}|Instant|||Destroy two target nonblack creatures. You lose 5 life.|
Recover|Invasion|122|C|{2}{B}|Sorcery|||Return target creature card from your graveyard to your hand.$Draw a card.|
Scavenged Weaponry|Invasion|123|C|{2}{B}|Enchantment - Aura|||Enchant creature$When Scavenged Weaponry enters the battlefield, draw a card.$Enchanted creature gets +1/+1.|
-Soul Burn|Invasion|124|C|{X}{2}{B}|Sorcery|||Spend only black and/or red mana on X.$Soul Burn deals X damage to target creature or player. You gain life equal to the damage dealt, but not more than the amount of {B} spent on X, the player's life total before Soul Burn dealt damage, or the creature's toughness.|
+Soul Burn|Invasion|124|C|{X}{2}{B}|Sorcery|||Spend only black and/or red mana on X.$Soul Burn deals X damage to any target. You gain life equal to the damage dealt, but not more than the amount of {B} spent on X, the player's life total before Soul Burn dealt damage, or the creature's toughness.|
Spreading Plague|Invasion|125|R|{4}{B}|Enchantment|||Whenever a creature enters the battlefield, destroy all other creatures that share a color with it. They can't be regenerated.|
Tainted Well|Invasion|126|C|{2}{B}|Enchantment - Aura|||Enchant land$When Tainted Well enters the battlefield, draw a card.$Enchanted land is a Swamp.|
Trench Wurm|Invasion|127|U|{3}{B}|Creature - Wurm|3|3|{2}{R}, {tap}: Destroy target nonbasic land.|
@@ -9701,7 +9701,7 @@ Chaotic Strike|Invasion|140|U|{1}{R}|Instant|||Cast Chaotic Strike only during c
Collapsing Borders|Invasion|141|R|{3}{R}|Enchantment|||Domain - At the beginning of each player's upkeep, that player gains 1 life for each basic land type among lands he or she controls. Then Collapsing Borders deals 3 damage to him or her.|
Crown of Flames|Invasion|142|C|{R}|Enchantment - Aura|||Enchant creature${R}: Enchanted creature gets +1/+0 until end of turn.${R}: Return Crown of Flames to its owner's hand.|
Firebrand Ranger|Invasion|143|U|{1}{R}|Creature - Human Soldier|2|1|{G}, {tap}: You may put a basic land card from your hand onto the battlefield.|
-Ghitu Fire|Invasion|144|R|{X}{R}|Sorcery|||You may cast Ghitu Fire as though it had flash if you pay {2} more to cast it.$Ghitu Fire deals X damage to target creature or player.|
+Ghitu Fire|Invasion|144|R|{X}{R}|Sorcery|||You may cast Ghitu Fire as though it had flash if you pay {2} more to cast it.$Ghitu Fire deals X damage to any target.|
Goblin Spy|Invasion|145|U|{R}|Creature - Goblin Rogue|1|1|Play with the top card of your library revealed.|
Halam Djinn|Invasion|146|U|{5}{R}|Creature - Djinn|6|5|Haste$Halam Djinn gets -2/-2 as long as red is the most common color among all permanents or is tied for most common.|
Hooded Kavu|Invasion|147|C|{2}{R}|Creature - Kavu|2|2|{B}: Hooded Kavu gains fear until end of turn. (It can't be blocked except by artifact creatures and/or black creatures.)|
@@ -9723,7 +9723,7 @@ Rogue Kavu|Invasion|160|C|{1}{R}|Creature - Kavu|1|1|Whenever Rogue Kavu attacks
Ruby Leech|Invasion|161|R|{1}{R}|Creature - Leech|2|2|First strike$Red spells you cast cost {R} more to cast.|
Savage Offensive|Invasion|162|C|{1}{R}|Sorcery|||Kicker {G} (You may pay an additional {G} as you cast this spell.)$Creatures you control gain first strike until end of turn. If Savage Offensive was kicked, they get +1/+1 until end of turn.|
Scarred Puma|Invasion|163|C|{R}|Creature - Cat|2|1|Scarred Puma can't attack unless a black or green creature also attacks.|
-Scorching Lava|Invasion|164|C|{1}{R}|Instant|||Kicker {R} (You may pay an additional {R} as you cast this spell.)$Scorching Lava deals 2 damage to target creature or player. If Scorching Lava was kicked, that creature can't be regenerated this turn and if it would die this turn, exile it instead.|
+Scorching Lava|Invasion|164|C|{1}{R}|Instant|||Kicker {R} (You may pay an additional {R} as you cast this spell.)$Scorching Lava deals 2 damage to any target. If Scorching Lava was kicked, that creature can't be regenerated this turn and if it would die this turn, exile it instead.|
Searing Rays|Invasion|165|U|{2}{R}|Sorcery|||Choose a color. Searing Rays deals damage to each player equal to the number of creatures of that color that player controls.|
Shivan Emissary|Invasion|166|U|{2}{R}|Creature - Human Wizard|1|1|Kicker {1}{B} (You may pay an additional {1}{B} as you cast this spell.)$When Shivan Emissary enters the battlefield, if it was kicked, destroy target nonblack creature. It can't be regenerated.|
Shivan Harvest|Invasion|167|U|{1}{R}|Enchantment|||{1}{R}, Sacrifice a creature: Destroy target nonbasic land.|
@@ -9736,12 +9736,12 @@ Stun|Invasion|172|C|{1}{R}|Instant|||Target creature can't block this turn.$Draw
Tectonic Instability|Invasion|173|R|{2}{R}|Enchantment|||Whenever a land enters the battlefield, tap all lands its controller controls.|
Thunderscape Apprentice|Invasion|174|C|{R}|Creature - Human Wizard|1|1|{B}, {tap}: Target player loses 1 life.${G}, {tap}: Target creature gets +1/+1 until end of turn.|
Thunderscape Master|Invasion|175|R|{2}{R}{R}|Creature - Human Wizard|2|2|{B}{B}, {tap}: Target player loses 2 life and you gain 2 life.${G}{G}, {tap}: Creatures you control get +2/+2 until end of turn.|
-Tribal Flames|Invasion|176|C|{1}{R}|Sorcery|||Domain - Tribal Flames deals X damage to target creature or player, where X is the number of basic land types among lands you control.|
+Tribal Flames|Invasion|176|C|{1}{R}|Sorcery|||Domain - Tribal Flames deals X damage to any target, where X is the number of basic land types among lands you control.|
Turf Wound|Invasion|177|C|{2}{R}|Instant|||Target player can't play land cards this turn.$$Draw a card.|
-Urza's Rage|Invasion|178|R|{2}{R}|Instant|||Kicker {8}{R} (You may pay an additional {8}{R} as you cast this spell.)$Urza's Rage can't be countered by spells or abilities.$Urza's Rage deals 3 damage to target creature or player. If Urza's Rage was kicked, instead it deals 10 damage to that creature or player and the damage can't be prevented.|
+Urza's Rage|Invasion|178|R|{2}{R}|Instant|||Kicker {8}{R} (You may pay an additional {8}{R} as you cast this spell.)$Urza's Rage can't be countered by spells or abilities.$Urza's Rage deals 3 damage to any target. If Urza's Rage was kicked, instead it deals 10 damage to that creature or player and the damage can't be prevented.|
Viashino Grappler|Invasion|179|C|{2}{R}|Creature - Viashino|3|1|{G}: Viashino Grappler gains trample until end of turn.|
Global Ruin|Invasion|18|R|{4}{W}|Sorcery|||Each player chooses from the lands he or she controls a land of each basic land type, then sacrifices the rest.|
-Zap|Invasion|180|C|{2}{R}|Instant|||Zap deals 1 damage to target creature or player.$$Draw a card.|
+Zap|Invasion|180|C|{2}{R}|Instant|||Zap deals 1 damage to any target.$$Draw a card.|
Aggressive Urge|Invasion|181|C|{1}{G}|Instant|||Target creature gets +1/+1 until end of turn.$Draw a card.|
Bind|Invasion|182|R|{1}{G}|Instant|||Counter target activated ability. (Mana abilities can't be targeted.)$Draw a card.|
Blurred Mongoose|Invasion|183|R|{1}{G}|Creature - Mongoose|2|1|Blurred Mongoose can't be countered.$Shroud (This permanent can't be the target of spells or abilities.)|
@@ -9764,11 +9764,11 @@ Might Weaver|Invasion|198|U|{1}{G}|Creature - Human Wizard|2|1|{2}: Target red o
Molimo, Maro-Sorcerer|Invasion|199|R|{4}{G}{G}{G}|Legendary Creature - Elemental|*|*|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.)$Molimo, Maro-Sorcerer's power and toughness are each equal to the number of lands you control.|
Angel of Mercy|Invasion|2|U|{4}{W}|Creature - Angel|3|3|Flying$When Angel of Mercy enters the battlefield, you gain 3 life.|
Holy Day|Invasion|20|C|{W}|Instant|||Prevent all combat damage that would be dealt this turn.|
-Nomadic Elf|Invasion|200|C|{1}{G}|Creature - Elf Nomad|2|2|{1}{G}: Add one mana of any color to your mana pool.|
+Nomadic Elf|Invasion|200|C|{1}{G}|Creature - Elf Nomad|2|2|{1}{G}: Add one mana of any color.|
Pincer Spider|Invasion|201|C|{2}{G}|Creature - Spider|2|3|Kicker {3} (You may pay an additional {3} as you cast this spell.)$Reach (This creature can block creatures with flying.)$If Pincer Spider was kicked, it enters the battlefield with a +1/+1 counter on it.|
Pulse of Llanowar|Invasion|202|U|{3}{G}|Enchantment|||If a basic land you control is tapped for mana, it produces mana of a color of your choice instead of any other type.|
-Quirion Elves|Invasion|203|C|{1}{G}|Creature - Elf Druid|1|1|As Quirion Elves enters the battlefield, choose a color.${tap}: Add {G}.${tap}: Add one mana of the chosen color to your mana pool.|
-Quirion Sentinel|Invasion|204|C|{1}{G}|Creature - Elf Druid|2|1|When Quirion Sentinel enters the battlefield, add one mana of any color to your mana pool.|
+Quirion Elves|Invasion|203|C|{1}{G}|Creature - Elf Druid|1|1|As Quirion Elves enters the battlefield, choose a color.${tap}: Add {G}.${tap}: Add one mana of the chosen color.|
+Quirion Sentinel|Invasion|204|C|{1}{G}|Creature - Elf Druid|2|1|When Quirion Sentinel enters the battlefield, add one mana of any color.|
Quirion Trailblazer|Invasion|205|C|{3}{G}|Creature - Elf Scout|1|2|When Quirion Trailblazer enters the battlefield, you may search your library for a basic land card and put that card onto the battlefield tapped. If you do, shuffle your library.|
Restock|Invasion|206|R|{3}{G}{G}|Sorcery|||Return two target cards from your graveyard to your hand. Exile Restock.|
Rooting Kavu|Invasion|207|U|{2}{G}{G}|Creature - Kavu|4|3|When Rooting Kavu dies, you may exile it. If you do, shuffle all creature cards from your graveyard into your library.|
@@ -9783,8 +9783,8 @@ Thicket Elemental|Invasion|214|R|{3}{G}{G}|Creature - Elemental|4|4|Kicker {1}{G
Thornscape Apprentice|Invasion|215|C|{G}|Creature - Human Wizard|1|1|{R}, {tap}: Target creature gains first strike until end of turn.${W}, {tap}: Tap target creature.|
Thornscape Master|Invasion|216|R|{2}{G}{G}|Creature - Human Wizard|2|2|{R}{R}, {tap}: Thornscape Master deals 2 damage to target creature.${W}{W}, {tap}: Target creature gains protection from the color of your choice until end of turn.|
Tranquility|Invasion|217|C|{2}{G}|Sorcery|||Destroy all enchantments.|
-Treefolk Healer|Invasion|218|U|{4}{G}|Creature - Treefolk Cleric|2|3|{2}{W}, {tap}: Prevent the next 2 damage that would be dealt to target creature or player this turn.|
-Utopia Tree|Invasion|219|R|{1}{G}|Creature - Plant|0|2|{tap}: Add one mana of any color to your mana pool.|
+Treefolk Healer|Invasion|218|U|{4}{G}|Creature - Treefolk Cleric|2|3|{2}{W}, {tap}: Prevent the next 2 damage that would be dealt to any target this turn.|
+Utopia Tree|Invasion|219|R|{1}{G}|Creature - Plant|0|2|{tap}: Add one mana of any color.|
Obsidian Acolyte|Invasion|22|C|{1}{W}|Creature - Human Cleric|1|1|Protection from black${W}: Target creature gains protection from black until end of turn.|
Verdeloth the Ancient|Invasion|220|R|{4}{G}{G}|Legendary Creature - Treefolk|4|7|Kicker {X} (You may pay an additional {X} as you cast this spell.)$Saproling creatures and other Treefolk creatures get +1/+1.$When Verdeloth the Ancient enters the battlefield, if it was kicked, put X 1/1 green Saproling creature tokens onto the battlefield.|
Verduran Emissary|Invasion|221|U|{2}{G}|Creature - Human Wizard|2|3|Kicker {1}{R} (You may pay an additional {1}{R} as you cast this spell.)$When Verduran Emissary enters the battlefield, if it was kicked, destroy target artifact. It can't be regenerated.|
@@ -9796,7 +9796,7 @@ Absorb|Invasion|226|R|{W}{U}{U}|Instant|||Counter target spell. You gain 3 life.
AEther Rift|Invasion|227|R|{1}{R}{G}|Enchantment|||At the beginning of your upkeep, discard a card at random. If you discard a creature card this way, return it from your graveyard to the battlefield unless any player pays 5 life.|
Angelic Shield|Invasion|228|U|{W}{U}|Enchantment|||Creatures you control get +0/+1.$Sacrifice Angelic Shield: Return target creature to its owner's hand.|
Armadillo Cloak|Invasion|229|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.|
-Orim's Touch|Invasion|23|C|{W}|Instant|||Kicker {1} (You may pay an additional {1} as you cast this spell.)$Prevent the next 2 damage that would be dealt to target creature or player this turn. If Orim's Touch was kicked, prevent the next 4 damage that would be dealt to that creature or player this turn instead.|
+Orim's Touch|Invasion|23|C|{W}|Instant|||Kicker {1} (You may pay an additional {1} as you cast this spell.)$Prevent the next 2 damage that would be dealt to any target this turn. If Orim's Touch was kicked, prevent the next 4 damage that would be dealt to that creature or player this turn instead.|
Armored Guardian|Invasion|230|R|{3}{W}{U}|Creature - Cat Soldier|2|5|{1}{W}{W}: Target creature you control gains protection from the color of your choice until end of turn.${1}{U}{U}: Armored Guardian gains shroud until end of turn. (It can't be the target of spells or abilities.)|
Artifact Mutation|Invasion|231|R|{R}{G}|Instant|||Destroy target artifact. It can't be regenerated. Put X 1/1 green Saproling creature tokens onto the battlefield, where X is that artifact's converted mana cost.|
Aura Mutation|Invasion|232|R|{G}{W}|Instant|||Destroy target enchantment. Put X 1/1 green Saproling creature tokens onto the battlefield, where X is that enchantment's converted mana cost.|
@@ -9825,21 +9825,21 @@ Hunting Kavu|Invasion|252|U|{1}{R}{G}|Creature - Kavu|2|3|{1}{R}{G}, {tap}: Exil
Kangee, Aerie Keeper|Invasion|253|R|{2}{W}{U}|Legendary Creature - Bird Wizard|2|2|Kicker {X}{2} (You may pay an additional {X}{2} as you cast this spell.)$Flying$When Kangee, Aerie Keeper enters the battlefield, if it was kicked, put X feather counters on it.$Other Bird creatures get +1/+1 for each feather counter on Kangee, Aerie Keeper.|
Llanowar Knight|Invasion|254|C|{G}{W}|Creature - Elf Knight|2|2|Protection from black|
Lobotomy|Invasion|255|U|{2}{U}{B}|Sorcery|||Target player reveals his or her hand, then you choose a card other than a basic land card from it. Search that player's graveyard, hand, and library for all cards with the same name as the chosen card and exile them. Then that player shuffles his or her library.|
-Meteor Storm|Invasion|256|R|{R}{G}|Enchantment|||{2}{R}{G}, Discard two cards at random: Meteor Storm deals 4 damage to target creature or player.|
+Meteor Storm|Invasion|256|R|{R}{G}|Enchantment|||{2}{R}{G}, Discard two cards at random: Meteor Storm deals 4 damage to any target.|
Noble Panther|Invasion|257|R|{1}{G}{W}|Creature - Cat|3|3|{1}: Noble Panther gains first strike until end of turn.|
Ordered Migration|Invasion|258|U|{3}{W}{U}|Sorcery|||Domain - Put a 1/1 blue Bird creature token with flying onto the battlefield for each basic land type among lands you control.|
Overabundance|Invasion|259|R|{1}{R}{G}|Enchantment|||Whenever a player taps a land for mana, that player adds one mana to his or her mana pool of any type that land produced, and Overabundance deals 1 damage to him or her.|
Protective Sphere|Invasion|26|C|{2}{W}|Enchantment|||{1}, Pay 1 life: Prevent all damage that would be dealt to you this turn by a source of your choice that shares a color with the mana spent on this activation cost. (Colorless mana prevents no damage.)|
Plague Spores|Invasion|260|C|{4}{B}{R}|Sorcery|||Destroy target nonblack creature and target land. They can't be regenerated.|
-Pyre Zombie|Invasion|261|R|{1}{B}{R}|Creature - Zombie|2|1|At the beginning of your upkeep, if Pyre Zombie is in your graveyard, you may pay {1}{B}{B}. If you do, return Pyre Zombie to your hand.${1}{R}{R}, Sacrifice Pyre Zombie: Pyre Zombie deals 2 damage to target creature or player.|
+Pyre Zombie|Invasion|261|R|{1}{B}{R}|Creature - Zombie|2|1|At the beginning of your upkeep, if Pyre Zombie is in your graveyard, you may pay {1}{B}{B}. If you do, return Pyre Zombie to your hand.${1}{R}{R}, Sacrifice Pyre Zombie: Pyre Zombie deals 2 damage to any target.|
Raging Kavu|Invasion|262|R|{1}{R}{G}|Creature - Kavu|3|1|Flash$Haste|
-Reckless Assault|Invasion|263|R|{2}{B}{R}|Enchantment|||{1}, Pay 2 life: Reckless Assault deals 1 damage to target creature or player.|
+Reckless Assault|Invasion|263|R|{2}{B}{R}|Enchantment|||{1}, Pay 2 life: Reckless Assault deals 1 damage to any target.|
Recoil|Invasion|264|C|{1}{U}{B}|Instant|||Return target permanent to its owner's hand. Then that player discards a card.|
Reviving Vapors|Invasion|265|U|{2}{W}{U}|Instant|||Reveal the top three cards of your library and put one of them into your hand. You gain life equal to that card's converted mana cost. Put all other cards revealed this way into your graveyard.|
Riptide Crab|Invasion|266|U|{1}{W}{U}|Creature - Crab|1|3|Vigilance$When Riptide Crab dies, draw a card.|
Rith, the Awakener|Invasion|267|R|{3}{R}{G}{W}|Legendary Creature - Dragon|6|6|Flying$Whenever Rith, the Awakener deals combat damage to a player, you may pay {2}{G}. If you do, choose a color, then put a 1/1 green Saproling creature token onto the battlefield for each permanent of that color.|
Sabertooth Nishoba|Invasion|268|R|{4}{G}{W}|Creature - Cat Beast Warrior|5|5|Trample, protection from blue and from red|
-Samite Archer|Invasion|269|U|{1}{W}{U}|Creature - Human Cleric Archer|1|1|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.${tap}: Samite Archer deals 1 damage to target creature or player.|
+Samite Archer|Invasion|269|U|{1}{W}{U}|Creature - Human Cleric Archer|1|1|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.${tap}: Samite Archer deals 1 damage to any target.|
Pure Reflection|Invasion|27|R|{2}{W}|Enchantment|||Whenever a player casts a creature spell, destroy all Reflections. Then that player puts an X/X white Reflection creature token onto the battlefield, where X is the converted mana cost of that spell.|
Seer's Vision|Invasion|270|U|{2}{U}{B}|Enchantment|||Your opponents play with their hands revealed.$Sacrifice Seer's Vision: Look at target player's hand and choose a card from it. That player discards that card. Activate this ability only any time you could cast a sorcery.|
Shivan Zombie|Invasion|271|C|{B}{R}|Creature - Barbarian Zombie|2|2|Protection from white|
@@ -9877,9 +9877,9 @@ Pain|Invasion|294a|U|{B}|Sorcery|||Target player discards a card.$|
Suffering|Invasion|294b|U|{3}{R}|Sorcery|||$Destroy target land.|
Pain|Invasion|294a|U|{B}|Sorcery|||Target player discards a card.$|
Suffering|Invasion|294b|U|{3}{R}|Sorcery|||$Destroy target land.|
-Assault|Invasion|295a|U|{R}|Sorcery|||Assault deals 2 damage to target creature or player.$|
+Assault|Invasion|295a|U|{R}|Sorcery|||Assault deals 2 damage to any target.$|
Battery|Invasion|295b|U|{3}{G}|Sorcery|||$Put a 3/3 green Elephant creature token onto the battlefield.|
-Assault|Invasion|295a|U|{R}|Sorcery|||Assault deals 2 damage to target creature or player.$|
+Assault|Invasion|295a|U|{R}|Sorcery|||Assault deals 2 damage to any target.$|
Battery|Invasion|295b|U|{3}{G}|Sorcery|||$Put a 3/3 green Elephant creature token onto the battlefield.|
Wax|Invasion|296a|U|{G}|Instant|||Target creature gets +2/+2 until end of turn.$|
Wane|Invasion|296b|U|{W}|Instant|||$Destroy target enchantment.|
@@ -9887,7 +9887,7 @@ Wax|Invasion|296a|U|{G}|Instant|||Target creature gets +2/+2 until end of turn.$
Wane|Invasion|296b|U|{W}|Instant|||$Destroy target enchantment.|
Alloy Golem|Invasion|297|U|{6}|Artifact Creature - Golem|4|4|As Alloy Golem enters the battlefield, choose a color.$Alloy Golem is the chosen color. (It's still an artifact.)|
Bloodstone Cameo|Invasion|298|U|{3}|Artifact|||{tap}: Add {B} or {R}.|
-Chromatic Sphere|Invasion|299|U|{1}|Artifact|||{1}, {tap}, Sacrifice Chromatic Sphere: Add one mana of any color to your mana pool. Draw a card.|
+Chromatic Sphere|Invasion|299|U|{1}|Artifact|||{1}, {tap}, Sacrifice Chromatic Sphere: Add one mana of any color. Draw a card.|
Ardent Soldier|Invasion|3|C|{1}{W}|Creature - Human Soldier|1|2|Kicker {2} (You may pay an additional {2} as you cast this spell.)$Vigilance$If Ardent Soldier was kicked, it enters the battlefield with a +1/+1 counter on it.|
Restrain|Invasion|30|C|{2}{W}|Instant|||Prevent all combat damage that would be dealt by target attacking creature this turn.$$Draw a card.|
Crosis's Attendant|Invasion|300|U|{5}|Artifact Creature - Golem|3|3|{1}, Sacrifice Crosis's Attendant: Add {U}{B}{R}.|
@@ -9895,9 +9895,9 @@ Darigaaz's Attendant|Invasion|301|U|{5}|Artifact Creature - Golem|3|3|{1}, Sacri
Drake-Skull Cameo|Invasion|302|U|{3}|Artifact|||{tap}: Add {U} or {B}.|
Dromar's Attendant|Invasion|303|U|{5}|Artifact Creature - Golem|3|3|{1}, Sacrifice Dromar's Attendant: Add {W}{U}{B}.|
Juntu Stakes|Invasion|304|R|{2}|Artifact|||Creatures with power 1 or less don't untap during their controllers' untap steps.|
-Lotus Guardian|Invasion|305|R|{7}|Artifact Creature - Dragon|4|4|Flying${tap}: Add one mana of any color to your mana pool.|
-Phyrexian Altar|Invasion|306|R|{3}|Artifact|||Sacrifice a creature: Add one mana of any color to your mana pool.|
-Phyrexian Lens|Invasion|307|R|{3}|Artifact|||{tap}, Pay 1 life: Add one mana of any color to your mana pool.|
+Lotus Guardian|Invasion|305|R|{7}|Artifact Creature - Dragon|4|4|Flying${tap}: Add one mana of any color.|
+Phyrexian Altar|Invasion|306|R|{3}|Artifact|||Sacrifice a creature: Add one mana of any color.|
+Phyrexian Lens|Invasion|307|R|{3}|Artifact|||{tap}, Pay 1 life: Add one mana of any color.|
Planar Portal|Invasion|308|R|{6}|Artifact|||{6}, {tap}: Search your library for a card and put that card into your hand. Then shuffle your library.|
Power Armor|Invasion|309|U|{4}|Artifact|||Domain - {3}, {tap}: Target creature gets +1/+1 until end of turn for each basic land type among lands you control.|
Reviving Dose|Invasion|31|C|{2}{W}|Instant|||You gain 3 life.$Draw a card.|
@@ -9912,12 +9912,12 @@ Tsabo's Web|Invasion|317|R|{2}|Artifact|||When Tsabo's Web enters the battlefiel
Urza's Filter|Invasion|318|R|{4}|Artifact|||Multicolored spells cost up to {2} less to cast.|
Ancient Spring|Invasion|319|C||Land|||Ancient Spring enters the battlefield tapped.${tap}: Add {U}.${tap}, Sacrifice Ancient Spring: Add {W}{B}.|
Rewards of Diversity|Invasion|32|U|{2}{W}|Enchantment|||Whenever an opponent casts a multicolored spell, you gain 4 life.|
-Archaeological Dig|Invasion|320|U||Land|||{tap}: Add {C}.$${tap}, Sacrifice Archaeological Dig: Add one mana of any color to your mana pool.|
+Archaeological Dig|Invasion|320|U||Land|||{tap}: Add {C}.$${tap}, Sacrifice Archaeological Dig: Add one mana of any color.|
Coastal Tower|Invasion|321|U||Land|||Coastal Tower enters the battlefield tapped.${tap}: Add {W} or {U}.|
Elfhame Palace|Invasion|322|U||Land|||Elfhame Palace enters the battlefield tapped.${tap}: Add {G} or {W}.|
Geothermal Crevice|Invasion|323|C||Land|||Geothermal Crevice enters the battlefield tapped.${tap}: Add {R}.${tap}, Sacrifice Geothermal Crevice: Add {B}{G}.|
Irrigation Ditch|Invasion|324|C||Land|||Irrigation Ditch enters the battlefield tapped.${tap}: Add {W}.${tap}, Sacrifice Irrigation Ditch: Add {G}{U}.|
-Keldon Necropolis|Invasion|325|R||Legendary Land|||{tap}: Add {C}.$${4}{R}, {tap}, Sacrifice a creature: Keldon Necropolis deals 2 damage to target creature or player.|
+Keldon Necropolis|Invasion|325|R||Legendary Land|||{tap}: Add {C}.$${4}{R}, {tap}, Sacrifice a creature: Keldon Necropolis deals 2 damage to any target.|
Salt Marsh|Invasion|326|U||Land|||Salt Marsh enters the battlefield tapped.${tap}: Add {U} or {B}.|
Shivan Oasis|Invasion|327|U||Land|||Shivan Oasis enters the battlefield tapped.${tap}: Add {R} or {G}.|
Sulfur Vent|Invasion|328|C||Land|||Sulfur Vent enters the battlefield tapped.${tap}: Add {B}.${tap}, Sacrifice Sulfur Vent: Add {U}{R}.|
@@ -10019,19 +10019,19 @@ Defiling Tears|Invasion|99|U|{2}{B}|Instant|||Until end of turn, target creature
Aegis of the Gods|Journey into Nyx|1|R|{1}{W}|Enchantment Creature - Human Soldier|2|1|You have hexproof. (You can't be the target of spells or abilities your opponents control.)|
Eidolon of Rhetoric|Journey into Nyx|10|U|{2}{W}|Enchantment Creature - Spirit|1|4|Each player can't cast more than one spell each turn.|
Harness by Force|Journey into Nyx|100|R|{1}{R}{R}|Sorcery|||Strive - Harness by Force costs {2}{R} more to cast for each target beyond the first.$Gain control of any number of target creatures until end of turn. Untap those creatures. They gain haste until end of turn.|
-Knowledge and Power|Journey into Nyx|101|U|{4}{R}|Enchantment|||Whenever you scry, you may pay {2}. If you do, Knowledge and Power deals 2 damage to target creature or player.|
-Lightning Diadem|Journey into Nyx|102|C|{5}{R}|Enchantment - Aura|||Enchant creature$When Lightning Diadem enters the battlefield, it deals 2 damage to target creature or player.$Enchanted creature gets +2/+2.|
+Knowledge and Power|Journey into Nyx|101|U|{4}{R}|Enchantment|||Whenever you scry, you may pay {2}. If you do, Knowledge and Power deals 2 damage to any target.|
+Lightning Diadem|Journey into Nyx|102|C|{5}{R}|Enchantment - Aura|||Enchant creature$When Lightning Diadem enters the battlefield, it deals 2 damage to any target.$Enchanted creature gets +2/+2.|
Magma Spray|Journey into Nyx|103|C|{R}|Instant|||Magma Spray deals 2 damage to target creature. If that creature would die this turn, exile it instead.|
Mogis's Warhound|Journey into Nyx|104|U|{1}{R}|Enchantment Creature - Hound|2|2|Bestow {2}{R} (If you cast this card for its bestow cost, it's an Aura spell with enchant creature. It becomes a creature again if it's not attached to a creature.)$Mogis's Warhound attacks each turn if able.$Enchanted creature gets +2/+2 and attacks each turn if able.|
Pensive Minotaur|Journey into Nyx|105|C|{2}{R}|Creature - Minotaur Warrior|2|3||
Prophetic Flamespeaker|Journey into Nyx|106|M|{1}{R}{R}|Creature - Human Shaman|1|3|Double strike, trample$Whenever Prophetic Flamespeaker deals combat damage to a player, exile the top card of your library. You may play it this turn.|
-Riddle of Lightning|Journey into Nyx|107|U|{3}{R}{R}|Instant|||Choose target creature or player. Scry 3, then reveal the top card of your library. Riddle of Lightning deals damage equal to that card's converted mana cost to that creature or player. (To scry 3, look at the top three cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)|
+Riddle of Lightning|Journey into Nyx|107|U|{3}{R}{R}|Instant|||Choose any target. Scry 3, then reveal the top card of your library. Riddle of Lightning deals damage equal to that card's converted mana cost to that creature or player. (To scry 3, look at the top three cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)|
Rollick of Abandon|Journey into Nyx|108|U|{3}{R}{R}|Sorcery|||All creatures get +2/-2 until end of turn.|
Rouse the Mob|Journey into Nyx|109|C|{R}|Instant|||Strive - Rouse the Mob costs {2}{R} more to cast for each target beyond the first.$Any number of target creatures each get +2/+0 and gain trample until end of turn.|
Font of Vigor|Journey into Nyx|11|C|{1}{W}|Enchantment|||{2}{W}, Sacrifice Font of Vigor: You gain 7 life.|
Satyr Hoplite|Journey into Nyx|110|C|{R}|Creature - Satyr Soldier|1|1|Heroic - Whenever you cast a spell that targets Satyr Hoplite, put a +1/+1 counter on Satyr Hoplite.|
Sigiled Skink|Journey into Nyx|111|C|{1}{R}|Creature - Lizard|2|1|Whenever Sigiled Skink attacks, scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)|
-Spawn of Thraxes|Journey into Nyx|112|R|{5}{R}{R}|Creature - Dragon|5|5|Flying$When Spawn of Thraxes enters the battlefield, it deals damage to target creature or player equal to the number of Mountains you control.|
+Spawn of Thraxes|Journey into Nyx|112|R|{5}{R}{R}|Creature - Dragon|5|5|Flying$When Spawn of Thraxes enters the battlefield, it deals damage to any target equal to the number of Mountains you control.|
Spite of Mogis|Journey into Nyx|113|U|{R}|Sorcery|||Spite of Mogis deals damage to target creature equal to the number of instant and sorcery cards in your graveyard. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)|
Starfall|Journey into Nyx|114|C|{4}{R}|Instant|||Starfall deals 3 damage to target creature. If that creature is an enchantment, Starfall deals 3 damage to that creature's controller.|
Twinflame|Journey into Nyx|115|R|{1}{R}|Sorcery|||Strive - Twinflame costs {2}{R} more to cast for each target beyond the first.$Choose any number of target creatures you control. For each of them, put a token that's a copy of that creature onto the battlefield. Those tokens have haste. Exile them at the beginning of the next end step.|
@@ -10074,7 +10074,7 @@ Disciple of Deceit|Journey into Nyx|148|U|{U}{B}|Creature - Human Rogue|1|3|Insp
Fleetfeather Cockatrice|Journey into Nyx|149|U|{3}{G}{U}|Creature - Cockatrice|3|3|Flash (You may cast this spell any time you could cast an instant.)$Flying, deathtouch${5}{G}{U}: Monstrosity 3. (If this creature isn't monstrous, put three +1/+1 counters on it and it becomes monstrous.)|
Launch the Fleet|Journey into Nyx|15|R|{W}|Sorcery|||Strive - Launch the Fleet costs {1} more to cast for each target beyond the first.$Until end of turn, any number of target creatures each gain "Whenever this creature attacks, put a 1/1 white Soldier creature token onto the battlefield tapped and attacking."|
Iroas, God of Victory|Journey into Nyx|150|M|{2}{R}{W}|Legendary Enchantment Creature - God|7|4|Indestructible$As long as your devotion to red and white is less than seven, Iroas isn't a creature.$Creatures you control can't be blocked except by two or more creatures.$Prevent all damage that would be dealt to attacking creatures you control.|
-Keranos, God of Storms|Journey into Nyx|151|M|{3}{U}{R}|Legendary Enchantment Creature - God|6|5|Indestructible$As long as your devotion to blue and red is less than seven, Keranos isn't a creature.$Reveal the first card you draw on each of your turns. Whenever you reveal a land card this way, draw a card. Whenever you reveal a nonland card this way, Keranos deals 3 damage to target creature or player.|
+Keranos, God of Storms|Journey into Nyx|151|M|{3}{U}{R}|Legendary Enchantment Creature - God|6|5|Indestructible$As long as your devotion to blue and red is less than seven, Keranos isn't a creature.$Reveal the first card you draw on each of your turns. Whenever you reveal a land card this way, draw a card. Whenever you reveal a nonland card this way, Keranos deals 3 damage to any target.|
Kruphix, God of Horizons|Journey into Nyx|152|M|{3}{G}{U}|Legendary Enchantment Creature - God|4|7|Indestructible$As long as your devotion to green and blue is less than seven, Kruphix isn't a creature.$You have no maximum hand size.$If unused mana would empty from your mana pool, that mana becomes colorless instead.|
Nyx Weaver|Journey into Nyx|153|U|{1}{B}{G}|Enchantment Creature - Spider|2|3|Reach$At the beginning of your upkeep, put the top two cards of your library into your graveyard.${1}{B}{G}, Exile Nyx Weaver: Return target card from your graveyard to your hand.|
Pharika, God of Affliction|Journey into Nyx|154|M|{1}{B}{G}|Legendary Enchantment Creature - God|5|5|Indestructible$As long as your devotion to black and green is less than seven, Pharika isn't a creature.${B}{G}: Exile target creature card from a graveyard. Its owner puts a 1/1 black and green Snake enchantment creature token with deathtouch onto the battlefield.|
@@ -10087,7 +10087,7 @@ Leonin Iconoclast|Journey into Nyx|16|U|{3}{W}|Creature - Cat Monk|3|2|Heroic -
Deserter's Quarters|Journey into Nyx|160|U|{2}|Artifact|||You may choose not to untap Deserter's Quarters during your untap step.${6}, {tap}: Tap target creature. It doesn't untap during its controller's untap step for as long as Deserter's Quarters remains tapped.|
Gold-Forged Sentinel|Journey into Nyx|161|U|{6}|Artifact Creature - Chimera|4|4|Flying|
Hall of Triumph|Journey into Nyx|162|R|{3}|Legendary Artifact|||As Hall of Triumph enters the battlefield, choose a color.$Creatures you control of the chosen color get +1/+1.|
-Mana Confluence|Journey into Nyx|163|R||Land|||{tap}, Pay 1 life: Add one mana of any color to your mana pool.|
+Mana Confluence|Journey into Nyx|163|R||Land|||{tap}, Pay 1 life: Add one mana of any color.|
Temple of Epiphany|Journey into Nyx|164|R||Land|||Temple of Epiphany enters the battlefield tapped.$When Temple of Epiphany enters the battlefield, scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)${tap}: Add {U} or {R}.|
Temple of Malady|Journey into Nyx|165|R||Land|||Temple of Malady enters the battlefield tapped.$When Temple of Malady enters the battlefield, scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)${tap}: Add {B} or {G}.|
Mortal Obstinacy|Journey into Nyx|17|C|{W}|Enchantment - Aura|||Enchant creature you control$Enchanted creature gets +1/+1.$Whenever enchanted creature deals combat damage to a player, you may sacrifice Mortal Obstinacy. If you do, destroy target enchantment.|
@@ -10153,7 +10153,7 @@ Felhide Petrifier|Journey into Nyx|70|U|{2}{B}|Creature - Minotaur Warrior|2|3|D
Font of Return|Journey into Nyx|71|C|{1}{B}|Enchantment|||{3}{B}, Sacrifice Font of Return: Return up to three target creature cards from your graveyard to your hand.|
Gnarled Scarhide|Journey into Nyx|72|U|{B}|Enchantment Creature - Minotaur|2|1|Bestow {3}{B} (If you cast this card for its bestow cost, it's an Aura spell with enchant creature. It becomes a creature again if it's not attached to a creature.)$Gnarled Scarhide can't block.$Enchanted creature gets +2/+1 and can't block.|
Grim Guardian|Journey into Nyx|73|C|{2}{B}|Enchantment Creature - Zombie|1|4|Constellation - Whenever Grim Guardian or another enchantment enters the battlefield under your control, each opponent loses 1 life.|
-King Macar, the Gold-Cursed|Journey into Nyx|74|R|{2}{B}{B}|Legendary Creature - Human|2|3|Inspired - Whenever King Macar, the Gold-Cursed becomes untapped, you may exile target creature. If you do, put a colorless artifact token named Gold onto the battlefield. It has "Sacrifice this artifact: Add one mana of any color to your mana pool."|
+King Macar, the Gold-Cursed|Journey into Nyx|74|R|{2}{B}{B}|Legendary Creature - Human|2|3|Inspired - Whenever King Macar, the Gold-Cursed becomes untapped, you may exile target creature. If you do, put a colorless artifact token named Gold onto the battlefield. It has "Sacrifice this artifact: Add one mana of any color."|
Master of the Feast|Journey into Nyx|75|R|{1}{B}{B}|Enchantment Creature - Demon|5|5|Flying$At the beginning of your upkeep, each opponent draws a card.|
Nightmarish End|Journey into Nyx|76|U|{2}{B}|Instant|||Target creature gets -X/-X until end of turn, where X is the number of cards in your hand.|
Nyx Infusion|Journey into Nyx|77|C|{2}{B}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2 as long as it's an enchantment. Otherwise, it gets -2/-2.|
@@ -10179,9 +10179,9 @@ Eidolon of the Great Revel|Journey into Nyx|94|R|{R}{R}|Enchantment Creature - S
Flamespeaker's Will|Journey into Nyx|95|C|{R}|Enchantment - Aura|||Enchant creature you control$Enchanted creature gets +1/+1.$Whenever enchanted creature deals combat damage to a player, you may sacrifice Flamespeaker's Will. If you do, destroy target artifact.|
Flurry of Horns|Journey into Nyx|96|C|{4}{R}|Sorcery|||Put two 2/3 red Minotaur creature tokens with haste onto the battlefield.|
Font of Ire|Journey into Nyx|97|C|{1}{R}|Enchantment|||{3}{R}, Sacrifice Font of Ire: Font of Ire deals 5 damage to target player.|
-Forgeborn Oreads|Journey into Nyx|98|U|{2}{R}{R}|Enchantment Creature - Nymph|4|2|Constellation - Whenever Forgeborn Oreads or another enchantment enters the battlefield under your control, Forgeborn Oreads deals 1 damage to target creature or player.|
+Forgeborn Oreads|Journey into Nyx|98|U|{2}{R}{R}|Enchantment Creature - Nymph|4|2|Constellation - Whenever Forgeborn Oreads or another enchantment enters the battlefield under your control, Forgeborn Oreads deals 1 damage to any target.|
Gluttonous Cyclops|Journey into Nyx|99|C|{5}{R}|Creature - Cyclops|5|4|{5}{R}{R}: Monstrosity 3. (If this creature isn't monstrous, put three +1/+1 counters on it and it becomes monstrous.)|
-Lightning Bolt|Judge Promo|1|C|{R}|Instant|||Lightning Bolt deals 3 damage to target creature or player.|
+Lightning Bolt|Judge Promo|1|C|{R}|Instant|||Lightning Bolt deals 3 damage to any target.|
Stroke of Genius|Judge Promo|2|R|{X}{2}{U}|Instant|||Target player draws X cards.|
Gaea's Cradle|Judge Promo|3|R||Legendary Land|||{T}: Add {G} for each creature you control.|
Memory Lapse|Judge Promo|4|C|{1}{U}|Instant|||Counter target spell. If that spell is countered this way, put it on top of its owner's library instead of into that player's graveyard.|
@@ -10189,7 +10189,7 @@ Counterspell|Judge Promo|5|C|{U}{U}|Instant|||Counter target spell.|
Vampiric Tutor|Judge Promo|6|R|{B}|Instant|||Search your library for a card, then shuffle your library and put that card on top of it. You lose 2 life.|
Ball Lightning|Judge Promo|7|R|{R}{R}{R}|Creature Elemental|6|1|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.)$Haste (This creature can attack and {T} as soon as it comes under your control.)$At the beginning of the end step, sacrifice Ball Lightning.|
Oath of Druids|Judge Promo|8|R|{1}{G}|Enchantment|||At the beginning of each player's upkeep, that player chooses target player who controls more creatures than he or she does and is his or her opponent. The first player may reveal cards from the top of his or her library until he or she reveals a creature card. If he or she does, that player puts that card onto the battlefield and all other cards revealed this way into his or her graveyard.|
-Hammer of Bogardan|Judge Promo|9|R|{1}{R}{R}|Sorcery|||Hammer of Bogardan deals 3 damage to target creature or player.${2}{R}{R}{R}: Return Hammer of Bogardan from your graveyard to your hand. Activate this ability only during your upkeep.|
+Hammer of Bogardan|Judge Promo|9|R|{1}{R}{R}|Sorcery|||Hammer of Bogardan deals 3 damage to any target.${2}{R}{R}{R}: Return Hammer of Bogardan from your graveyard to your hand. Activate this ability only during your upkeep.|
Tradewind Rider|Judge Promo|10|R|{3}{U}|Creature Spirit|1|4|Flying$${T}, Tap two untapped creatures you control: Return target permanent to its owner's hand.|
Intuition|Judge Promo|11|R|{2}{U}|Instant|||Search your library for three cards and reveal them. Target opponent chooses one. Put that card into your hand and the rest into your graveyard. Then shuffle your library.|
Argothian Enchantress|Judge Promo|12|R|{1}{G}|Creature Human Druid|0|1|Shroud (This creature can't be the target of spells or abilities.)$Whenever you cast an enchantment spell, draw a card.|
@@ -10200,12 +10200,12 @@ Time Warp|Judge Promo|16|M|{3}{U}{U}|Sorcery|||Target player takes an extra turn
Phyrexian Negator|Judge Promo|17|R|{2}{B}|Creature Horror|5|5|Trample$Whenever Phyrexian Negator is dealt damage, sacrifice that many permanents.|
Deranged Hermit|Judge Promo|18|R|{3}{G}{G}|Creature Elf|1|1|Echo {3}{G}{G} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)$When Deranged Hermit enters the battlefield, put four 1/1 green Squirrel creature tokens onto the battlefield.$Squirrel creatures get +1/+1.|
Hermit Druid|Judge Promo|19|R|{1}{G}|Creature Human Druid|1|1|{G}, {T}: Reveal cards from the top of your library until you reveal a basic land card. Put that card into your hand and all other cards revealed this way into your graveyard.|
-Gemstone Mine|Judge Promo|20|U||Land|||Gemstone Mine enters the battlefield with three mining counters on it.${T}, Remove a mining counter from Gemstone Mine: Add one mana of any color to your mana pool. If there are no mining counters on Gemstone Mine, sacrifice it.|
+Gemstone Mine|Judge Promo|20|U||Land|||Gemstone Mine enters the battlefield with three mining counters on it.${T}, Remove a mining counter from Gemstone Mine: Add one mana of any color. If there are no mining counters on Gemstone Mine, sacrifice it.|
Regrowth|Judge Promo|21|U|{1}{G}|Sorcery|||Return target card from your graveyard to your hand.|
Sol Ring|Judge Promo|22|U|{1}|Artifact||{T}: Add {C}{C}.|
Mishra's Factory|Judge Promo|23|U||Land|||{T}: Add {C}.${1}: Mishra's Factory becomes a 2/2 Assembly-Worker artifact creature until end of turn. It's still a land.${T}: Target Assembly-Worker creature gets +1/+1 until end of turn.|
Exalted Angel|Judge Promo|24|R|{4}{W}{W}|Creature Angel|4|5|Flying$Whenever Exalted Angel deals damage, you gain that much life.$Morph {2}{W}{W} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
-Grim Lavamancer|Judge Promo|25|R|{R}|Creature Human Wizard|1|1|{R}, {T}, Exile two cards from your graveyard: Grim Lavamancer deals 2 damage to target creature or player.|
+Grim Lavamancer|Judge Promo|25|R|{R}|Creature Human Wizard|1|1|{R}, {T}, Exile two cards from your graveyard: Grim Lavamancer deals 2 damage to any target.|
Meddling Mage|Judge Promo|26|R|{W}{U}|Creature Human Wizard|2|2|As Meddling Mage enters the battlefield, name a nonland card.$The named card can't be cast.|
Pernicious Deed|Judge Promo|27|R|{1}{B}{G}|Enchantment|||{X}, Sacrifice Pernicious Deed: Destroy each artifact, creature, and enchantment with converted mana cost X or less.|
Ravenous Baloth|Judge Promo|28|R|{2}{G}{G}|Creature Beast|4|4|Sacrifice a Beast: You gain 4 life.|
@@ -10237,7 +10237,7 @@ Morphling|Judge Promo|53|R|{3}{U}{U}|Creature Shapeshifter|3|3|{U}: Untap Morp
Wheel of Fortune|Judge Promo|54|R|{2}{R}|Sorcery|||Each player discards his or her hand, then draws seven cards.|
Wasteland|Judge Promo|55|U||Land|||{T}: Add {C}.${T}, Sacrifice Wasteland: Destroy target nonbasic land.|
Entomb|Judge Promo|56|R|{B}|Instant|||Search your library for a card and put that card into your graveyard. Then shuffle your library.|
-Sword of Fire and Ice|Judge Promo|57|R|{3}|Artifact Equipment|||Equipped creature gets +2/+2 and has protection from red and from blue.$Whenever equipped creature deals combat damage to a player, Sword of Fire and Ice deals 2 damage to target creature or player and you draw a card.$Equip {2}|
+Sword of Fire and Ice|Judge Promo|57|R|{3}|Artifact Equipment|||Equipped creature gets +2/+2 and has protection from red and from blue.$Whenever equipped creature deals combat damage to a player, Sword of Fire and Ice deals 2 damage to any target and you draw a card.$Equip {2}|
Vendilion Clique|Judge Promo|58|R|{1}{U}{U}|Legendary Creature Faerie Wizard|3|1|Flash$Flying$When Vendilion Clique enters the battlefield, look at target player's hand. You may choose a nonland card from it. If you do, that player reveals the chosen card, puts it on the bottom of his or her library, then draws a card.|
Bitterblossom|Judge Promo|59|R|{1}{B}|Tribal Enchantment Faerie||At the beginning of your upkeep, you lose 1 life and put a 1/1 black Faerie Rogue creature token with flying onto the battlefield.|
Mana Crypt|Judge Promo|60|R|{0}|Artifact|||At the beginning of your upkeep, flip a coin. If you lose the flip, Mana Crypt deals 3 damage to you.${T}: Add {C}{C}.|
@@ -10251,7 +10251,7 @@ Karmic Guide|Judge Promo|67|R|{3}{W}{W}|Creature Angel Spirit|2|2|Flying, prot
Sneak Attack|Judge Promo|68|R|{3}{R}|Enchantment|||{R}: You may put a creature card from your hand onto the battlefield. That creature gains haste. Sacrifice the creature at the beginning of the next end step.|
Karakas|Judge Promo|69|U||Legendary Land|||{T}: Add {W}.${T}: Return target legendary creature to its owner's hand.|
Sword of Light and Shadow|Judge Promo|70|R|{3}|Artifact Equipment|||Equipped creature gets +2/+2 and has protection from white and from black.$Whenever equipped creature deals combat damage to a player, you gain 3 life and you may return up to one target creature card from your graveyard to your hand.$Equip {2}|
-Command Tower|Judge Promo|71|C||Land|||{T}: Add to your mana pool one mana of any color in your commander's color identity.|
+Command Tower|Judge Promo|71|C||Land|||{T}: Add one mana of any color in your commander's color identity.|
Swords to Plowshares|Judge Promo|72|U|{W}|Instant|||Exile target creature. Its controller gains life equal to its power.|
Bribery|Judge Promo|73|R|{3}{U}{U}|Sorcery|||Search target opponent's library for a creature card and put that card onto the battlefield under your control. Then that player shuffles his or her library.|
Imperial Recruiter|Judge Promo|74|U|{2}{R}|Creature Human Advisor|1|1|When Imperial Recruiter enters the battlefield, search your library for a creature card with power 2 or less, reveal it, and put it into your hand. Then shuffle your library.|
@@ -10317,7 +10317,7 @@ Genesis|Judgment|117|R|{4}{G}|Creature - Incarnation|4|4|At the beginning of you
Giant Warthog|Judgment|118|C|{5}{G}|Creature - Boar Beast|5|5|Trample|
Grizzly Fate|Judgment|119|U|{3}{G}{G}|Sorcery|||Put two 2/2 green Bear creature tokens onto the battlefield.$Threshold - Put four 2/2 green Bear creature tokens onto the battlefield instead if seven or more cards are in your graveyard.$Flashback {5}{G}{G} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Golden Wish|Judgment|12|R|{3}{W}{W}|Sorcery|||You may choose an artifact or enchantment card you own from outside the game, reveal that card, and put it into your hand. Exile Golden Wish.|
-Harvester Druid|Judgment|120|C|{1}{G}|Creature - Human Druid|1|1|{tap}: Add to your mana pool one mana of any color that a land you control could produce.|
+Harvester Druid|Judgment|120|C|{1}{G}|Creature - Human Druid|1|1|{tap}: Add one mana of any color that a land you control could produce.|
Ironshell Beetle|Judgment|121|C|{1}{G}|Creature - Insect|1|1|When Ironshell Beetle enters the battlefield, put a +1/+1 counter on target creature.|
Krosan Reclamation|Judgment|122|U|{1}{G}|Instant|||Target player shuffles up to two target cards from his or her graveyard into his or her library.$Flashback {1}{G} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Krosan Wayfarer|Judgment|123|C|{G}|Creature - Human Druid|1|1|Sacrifice Krosan Wayfarer: You may put a land card from your hand onto the battlefield.|
@@ -10337,7 +10337,7 @@ Tunneler Wurm|Judgment|135|U|{6}{G}{G}|Creature - Wurm|6|6|Discard a card: Regen
Venomous Vines|Judgment|136|C|{2}{G}{G}|Sorcery|||Destroy target enchanted permanent.|
Anurid Brushhopper|Judgment|137|R|{1}{G}{W}|Creature - Frog Beast|3|4|Discard two cards: Exile Anurid Brushhopper. Return it to the battlefield under its owner's control at the beginning of the next end step.|
Hunting Grounds|Judgment|138|R|{G}{W}|Enchantment|||Threshold - As long as seven or more cards are in your graveyard, Hunting Grounds has "Whenever an opponent casts a spell, you may put a creature card from your hand onto the battlefield."|
-Mirari's Wake|Judgment|139|R|{3}{G}{W}|Enchantment|||Creatures you control get +1/+1.$$Whenever you tap a land for mana, add one mana to your mana pool of any type that land produced.|
+Mirari's Wake|Judgment|139|R|{3}{G}{W}|Enchantment|||Creatures you control get +1/+1.$$Whenever you tap a land for mana, add one mana of any type that land produced.|
Lead Astray|Judgment|14|C|{1}{W}|Instant|||Tap up to two target creatures.|
Phantom Nishoba|Judgment|140|R|{5}{G}{W}|Creature - Cat Beast Spirit|0|0|Trample$Phantom Nishoba enters the battlefield with seven +1/+1 counters on it.$Whenever Phantom Nishoba deals damage, you gain that much life.$If damage would be dealt to Phantom Nishoba, prevent that damage. Remove a +1/+1 counter from Phantom Nishoba.|
Krosan Verge|Judgment|141|U||Land|||Krosan Verge enters the battlefield tapped.${tap}: Add {C}.${2}, {tap}, Sacrifice Krosan Verge: Search your library for a Forest card and a Plains card and put them onto the battlefield tapped. Then shuffle your library.|
@@ -10351,7 +10351,7 @@ Pulsemage Advocate|Judgment|19|R|{2}{W}|Creature - Human Cleric|1|3|{tap}: Retur
Aven Warcraft|Judgment|2|U|{2}{W}|Instant|||Creatures you control get +0/+2 until end of turn.$Threshold - If seven or more cards are in your graveyard, choose a color. Creatures you control also gain protection from the chosen color until end of turn.|
Ray of Revelation|Judgment|20|C|{1}{W}|Instant|||Destroy target enchantment.$Flashback {G} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Selfless Exorcist|Judgment|21|R|{3}{W}{W}|Creature - Human Cleric|3|4|{tap}: Exile target creature card from a graveyard. That card deals damage equal to its power to Selfless Exorcist.|
-Shieldmage Advocate|Judgment|22|C|{2}{W}|Creature - Human Cleric|1|3|{tap}: Return target card from an opponent's graveyard to his or her hand. Prevent all damage that would be dealt to target creature or player this turn by a source of your choice.|
+Shieldmage Advocate|Judgment|22|C|{2}{W}|Creature - Human Cleric|1|3|{tap}: Return target card from an opponent's graveyard to his or her hand. Prevent all damage that would be dealt to any target this turn by a source of your choice.|
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.|
Solitary Confinement|Judgment|24|R|{2}{W}|Enchantment|||At the beginning of your upkeep, sacrifice Solitary Confinement unless you discard a card.$Skip your draw step.$You have shroud. (You can't be the target of spells or abilities.)$Prevent all damage that would be dealt to you.|
Soulcatchers' Aerie|Judgment|25|U|{1}{W}|Enchantment|||Whenever a Bird is put into your graveyard from the battlefield, put a feather counter on Soulcatchers' Aerie.$Bird creatures get +1/+1 for each feather counter on Soulcatchers' Aerie.|
@@ -10412,7 +10412,7 @@ Toxic Stench|Judgment|74|C|{1}{B}|Instant|||Target nonblack creature gets -1/-1
Treacherous Vampire|Judgment|75|U|{4}{B}|Creature - Vampire|4|4|Flying$Whenever Treacherous Vampire attacks or blocks, sacrifice it unless you exile a card from your graveyard.$Threshold - As long as seven or more cards are in your graveyard, Treacherous Vampire gets +2/+2 and has "When Treacherous Vampire dies, you lose 6 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."|
Anger|Judgment|77|U|{3}{R}|Creature - Incarnation|2|2|Haste$As long as Anger is in your graveyard and you control a Mountain, creatures you control have haste.|
-Arcane Teachings|Judgment|78|C|{2}{R}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Enchanted creature gets +2/+2 and has "{tap}: This creature deals 1 damage to target creature or player."|
+Arcane Teachings|Judgment|78|C|{2}{R}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Enchanted creature gets +2/+2 and has "{tap}: This creature deals 1 damage to any target."|
Barbarian Bully|Judgment|79|C|{2}{R}|Creature - Human Barbarian|2|2|Discard a card at random: Barbarian Bully gets +2/+2 until end of turn unless a player has Barbarian Bully deal 4 damage to him or her. Activate this ability only once each turn.|
Chastise|Judgment|8|U|{3}{W}|Instant|||Destroy target attacking creature. You gain life equal to its power.|
Book Burning|Judgment|80|C|{1}{R}|Sorcery|||Any player may have Book Burning deal 6 damage to him or her. If no one does, target player puts the top six cards of his or her library into his or her graveyard.|
@@ -10422,17 +10422,17 @@ Burning Wish|Judgment|83|R|{1}{R}|Sorcery|||You may choose a sorcery card you ow
Dwarven Bloodboiler|Judgment|84|R|{R}{R}{R}|Creature - Dwarf|2|2|Tap an untapped Dwarf you control: Target creature gets +2/+0 until end of turn.|
Dwarven Driller|Judgment|85|U|{3}{R}|Creature - Dwarf|2|2|{tap}: Destroy target land unless its controller has Dwarven Driller deal 2 damage to him or her.|
Dwarven Scorcher|Judgment|86|C|{R}|Creature - Dwarf|1|1|Sacrifice Dwarven Scorcher: Dwarven Scorcher deals 1 damage to target creature unless that creature's controller has Dwarven Scorcher deal 2 damage to him or her.|
-Ember Shot|Judgment|87|C|{6}{R}|Instant|||Ember Shot deals 3 damage to target creature or player.$$Draw a card.|
+Ember Shot|Judgment|87|C|{6}{R}|Instant|||Ember Shot deals 3 damage to any target.$$Draw a card.|
Firecat Blitz|Judgment|88|U|{X}{R}{R}|Sorcery|||Put X 1/1 red Elemental Cat creature tokens with haste onto the battlefield. Exile them at the beginning of the next end step.$Flashback-{R}{R}, Sacrifice X Mountains. (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Flaring Pain|Judgment|89|C|{1}{R}|Instant|||Damage can't be prevented this turn.$Flashback {R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Commander Eesha|Judgment|9|R|{2}{W}{W}|Legendary Creature - Bird Soldier|2|4|Flying, protection from creatures|
Fledgling Dragon|Judgment|90|R|{2}{R}{R}|Creature - Dragon|2|2|Flying$Threshold - As long as seven or more cards are in your graveyard, Fledgling Dragon gets +3/+3 and has "{R}: Fledgling Dragon gets +1/+0 until end of turn."|
Goretusk Firebeast|Judgment|91|C|{5}{R}|Creature - Elemental Boar Beast|2|2|When Goretusk Firebeast enters the battlefield, it deals 4 damage to target player.|
Infectious Rage|Judgment|92|U|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/-1.$When enchanted creature dies, choose a creature at random Infectious Rage can enchant. Return Infectious Rage to the battlefield attached to that creature.|
-Jeska, Warrior Adept|Judgment|93|R|{2}{R}{R}|Legendary Creature - Human Barbarian Warrior|3|1|First strike, haste${tap}: Jeska, Warrior Adept deals 1 damage to target creature or player.|
-Lava Dart|Judgment|94|C|{R}|Instant|||Lava Dart deals 1 damage to target creature or player.$Flashback-Sacrifice a Mountain. (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
+Jeska, Warrior Adept|Judgment|93|R|{2}{R}{R}|Legendary Creature - Human Barbarian Warrior|3|1|First strike, haste${tap}: Jeska, Warrior Adept deals 1 damage to any target.|
+Lava Dart|Judgment|94|C|{R}|Instant|||Lava Dart deals 1 damage to any target.$Flashback-Sacrifice a Mountain. (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Liberated Dwarf|Judgment|95|C|{R}|Creature - Dwarf|1|1|{R}, Sacrifice Liberated Dwarf: Target green creature gets +1/+0 and gains first strike until end of turn.|
-Lightning Surge|Judgment|96|R|{3}{R}{R}|Sorcery|||Lightning Surge deals 4 damage to target creature or player.$Threshold - If seven or more cards are in your graveyard, instead Lightning Surge deals 6 damage to that creature or player and the damage can't be prevented.$Flashback {5}{R}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
+Lightning Surge|Judgment|96|R|{3}{R}{R}|Sorcery|||Lightning Surge deals 4 damage to any target.$Threshold - If seven or more cards are in your graveyard, instead Lightning Surge deals 6 damage to that creature or player and the damage can't be prevented.$Flashback {5}{R}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Planar Chaos|Judgment|97|U|{2}{R}|Enchantment|||At the beginning of your upkeep, flip a coin. If you lose the flip, sacrifice Planar Chaos.$Whenever a player casts a spell, that player flips a coin. If he or she loses the flip, counter that spell.|
Shaman's Trance|Judgment|98|R|{2}{R}|Instant|||Until end of turn, other players can't play cards from their graveyards, and you may play cards from other players' graveyards as though they were in your graveyard.|
Soulgorger Orgg|Judgment|99|U|{3}{R}{R}|Creature - Nightmare Orgg|6|6|Trample$When Soulgorger Orgg enters the battlefield, you lose all but 1 life.$When Soulgorger Orgg leaves the battlefield, you gain life equal to the life you lost when it entered the battlefield.|
@@ -10444,7 +10444,7 @@ Bloodfire Mentor|Khans of Tarkir|102|C|{2}{R}|Creature - Efreet Shaman|0|5|{2}{U
Bring Low|Khans of Tarkir|103|C|{3}{R}|Instant|||Bring Low deals 3 damage to target creature. If that creature has a +1/+1 counter on it, Bring Low deals 5 damage to it instead.|
Burn Away|Khans of Tarkir|104|U|{4}{R}|Instant|||Burn Away deals 6 damage to target creature. When that creature dies this turn, exile all cards from its controller's graveyard.|
Canyon Lurkers|Khans of Tarkir|105|C|{4}{R}|Creature - Human Rogue|5|2|Morph {3}{R} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
-Crater's Claws|Khans of Tarkir|106|R|{X}{R}|Sorcery|||Crater's Claws deals X damage to target creature or player.$Ferocious - Crater's Claws deals X plus 2 damage to that creature or player instead if you control a creature with power 4 or greater.|
+Crater's Claws|Khans of Tarkir|106|R|{X}{R}|Sorcery|||Crater's Claws deals X damage to any target.$Ferocious - Crater's Claws deals X plus 2 damage to that creature or player instead if you control a creature with power 4 or greater.|
Dragon Grip|Khans of Tarkir|107|U|{2}{R}|Enchantment - Aura|||Ferocious - If you control a creature with power 4 or greater, you may cast Dragon Grip as though it had flash. (You may cast it any time you could cast an instant.)$Enchant creature$Enchanted creature gets +2/+0 and has first strike.|
Dragon-Style Twins|Khans of Tarkir|108|R|{3}{R}{R}|Creature - Human Monk|3|3|Double strike$Prowess (Whenever you cast a noncreature spell, this creature gets +1/+1 until end of turn.)|
Goblinslide|Khans of Tarkir|109|U|{2}{R}|Enchantment|||Whenever you cast a noncreature spell, you may pay {1}. If you do, put a 1/1 red Goblin creature token with haste onto the battlefield.|
@@ -10455,7 +10455,7 @@ Howl of the Horde|Khans of Tarkir|112|R|{2}{R}|Sorcery|||When you cast your next
Jeering Instigator|Khans of Tarkir|113|R|{1}{R}|Creature - Goblin Rogue|2|1|Morph {2}{R} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Jeering Instigator is turned face up, if it's your turn, gain control of another target creature until end of turn. Untap that creature. It gains haste until end of turn.|
Leaping Master|Khans of Tarkir|114|C|{1}{R}|Creature - Human Monk|2|1|{2}{W}: Leaping Master gains flying until end of turn.|
Mardu Blazebringer|Khans of Tarkir|115|U|{2}{R}|Creature - Ogre Warrior|4|4|When Mardu Blazebringer attacks or blocks, sacrifice it at end of combat.|
-Mardu Heart-Piercer|Khans of Tarkir|116|U|{3}{R}|Creature - Human Archer|2|3|Raid - When Mardu Heart-Piercer enters the battlefield, if you attacked with a creature this turn, Mardu Heart-Piercer deals 2 damage to target creature or player.|
+Mardu Heart-Piercer|Khans of Tarkir|116|U|{3}{R}|Creature - Human Archer|2|3|Raid - When Mardu Heart-Piercer enters the battlefield, if you attacked with a creature this turn, Mardu Heart-Piercer deals 2 damage to any target.|
Mardu Warshrieker|Khans of Tarkir|117|C|{3}{R}|Creature - Orc Shaman|3|3|Raid - When Mardu Warshrieker enters the battlefield, if you attacked with a creature this turn, add {R}{W}{B}.|
Monastery Swiftspear|Khans of Tarkir|118|U|{R}|Creature - Human Monk|1|2|Haste$Prowess (Whenever you cast a noncreature spell, this creature gets +1/+1 until end of turn.)|
Sarkhan, the Dragonspeaker|Khans of Tarkir|119|M|{3}{R}{R}|Legendary Planeswalker - Sarkhan|||+1: Until end of turn, Sarkhan, the Dragonspeaker becomes a legendary 4/4 red Dragon creature with flying, indestructible, and haste. (He doesn't lose loyalty while he's not a planeswalker.)$?3: Sarkhan, the Dragonspeaker deals 4 damage to target creature.$?6: You get an emblem with "At the beginning of your draw step, draw two additional cards" and "At the beginning of your end step, discard your hand."|
@@ -10534,7 +10534,7 @@ Mantis Rider|Khans of Tarkir|184|R|{U}{R}{W}|Creature - Human Monk|3|3|Flying, v
Mardu Ascendancy|Khans of Tarkir|185|R|{R}{W}{B}|Enchantment|||Whenever a nontoken creature you control attacks, put a 1/1 red Goblin creature token onto the battlefield tapped and attacking.$Sacrifice Mardu Ascendancy: Creatures you control get +0/+3 until end of turn.|
Mardu Charm|Khans of Tarkir|186|U|{R}{W}{B}|Instant|||Choose one -$ Mardu Charm deals 4 damage to target creature.$ Put two 1/1 white Warrior creature tokens onto the battlefield. They gain first strike until end of turn.$ Target opponent reveals his or her hand. You choose a noncreature, nonland card from it. That player discards that card.|
Mardu Roughrider|Khans of Tarkir|187|U|{2}{R}{W}{B}|Creature - Orc Warrior|5|4|Whenever Mardu Roughrider attacks, target creature can't block this turn.|
-Master the Way|Khans of Tarkir|188|U|{3}{U}{R}|Sorcery|||Draw a card. Master the Way deals damage to target creature or player equal to the number of cards in your hand.|
+Master the Way|Khans of Tarkir|188|U|{3}{U}{R}|Sorcery|||Draw a card. Master the Way deals damage to any target equal to the number of cards in your hand.|
Mindswipe|Khans of Tarkir|189|R|{X}{U}{R}|Instant|||Counter target spell unless its controller pays {X}. Mindswipe deals X damage to that spell's controller.|
Rush of Battle|Khans of Tarkir|19|C|{3}{W}|Sorcery|||Creatures you control get +2/+1 until end of turn. Warrior creatures you control gain lifelink until end of turn. (Damage dealt by those Warriors also causes their controller to gain that much life.)|
Narset, Enlightened Master|Khans of Tarkir|190|M|{3}{U}{R}{W}|Legendary Creature - Human Monk|3|2|First strike, hexproof$Whenever Narset, Enlightened Master attacks, exile the top four cards of your library. Until end of turn, you may cast noncreature cards exiled with Narset this turn without paying their mana costs.|
@@ -10653,7 +10653,7 @@ Pearl Lake Ancient|Khans of Tarkir|49|M|{5}{U}{U}|Creature - Leviathan|6|7|Flash
Brave the Sands|Khans of Tarkir|5|U|{1}{W}|Enchantment|||Creatures you control have vigilance.$Each creature you control can block an additional creature each combat.|
Quiet Contemplation|Khans of Tarkir|50|U|{2}{U}|Enchantment|||Whenever you cast a noncreature spell, you may pay {1}. If you do, tap target creature an opponent controls and it doesn't untap during its controller's next untap step.|
Riverwheel Aerialists|Khans of Tarkir|51|U|{5}{U}|Creature - Djinn Monk|4|5|Flying$Prowess (Whenever you cast a noncreature spell, this creature gets +1/+1 until end of turn.)|
-Scaldkin|Khans of Tarkir|52|C|{3}{U}|Creature - Elemental|2|2|Flying${2}{R}, Sacrifice Scaldkin: Scaldkin deals 2 damage to target creature or player.|
+Scaldkin|Khans of Tarkir|52|C|{3}{U}|Creature - Elemental|2|2|Flying${2}{R}, Sacrifice Scaldkin: Scaldkin deals 2 damage to any target.|
Scion of Glaciers|Khans of Tarkir|53|U|{2}{U}{U}|Creature - Elemental|2|5|{U}: Scion of Glaciers gets +1/-1 until end of turn.|
Set Adrift|Khans of Tarkir|54|U|{5}{U}|Sorcery|||Delve (Each card you exile from your graveyard while casting this spell pays for {1}.)$Put target nonland permanent on top of its owner's library.|
Singing Bell Strike|Khans of Tarkir|55|C|{1}{U}|Enchantment - Aura|||Enchant creature$When Singing Bell Strike enters the battlefield, tap enchanted creature.$Enchanted creature doesn't untap during its controller's untap step.$Enchanted creature has "{6}: Untap this creature."|
@@ -10703,16 +10703,16 @@ Unyielding Krumar|Khans of Tarkir|94|C|{3}{B}|Creature - Orc Warrior|3|3|{1}{W}:
Act of Treason|Khans of Tarkir|95|C|{2}{R}|Sorcery|||Gain control of target creature until end of turn. Untap that creature. It gains haste until end of turn.|
Ainok Tracker|Khans of Tarkir|96|C|{5}{R}|Creature - Hound Scout|3|3|First strike$Morph {4}{R} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
Arc Lightning|Khans of Tarkir|97|U|{2}{R}|Sorcery|||Arc Lightning deals 3 damage divided as you choose among one, two, or three target creatures and/or players.|
-Arrow Storm|Khans of Tarkir|98|C|{3}{R}{R}|Sorcery|||Arrow Storm deals 4 damage to target creature or player.$Raid - If you attacked with a creature this turn, instead Arrow Storm deals 5 damage to that creature or player and the damage can't be prevented.|
+Arrow Storm|Khans of Tarkir|98|C|{3}{R}{R}|Sorcery|||Arrow Storm deals 4 damage to any target.$Raid - If you attacked with a creature this turn, instead Arrow Storm deals 5 damage to that creature or player and the damage can't be prevented.|
Ashcloud Phoenix|Khans of Tarkir|99|M|{2}{R}{R}|Creature - Phoenix|4|1|Flying$When Ashcloud Phoenix dies, return it to the battlefield face down.$Morph {4}{R}{R} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Ashcloud Phoenix is turned face up, it deals 2 damage to each player.|
Earwig Squad|Launch Party|1|R|{3}{B}{B}|Creature - Goblin Rogue|5|3|Prowl {2}{B} (You may cast this for its prowl cost if you dealt combat damage to a player this turn with a Goblin or Rogue.)$When Earwig Squad enters the battlefield, if its prowl cost was paid, search target opponent's library for three cards and exile them. Then that player shuffles his or her library.|
Vexing Shusher|Launch Party|2|R|{RG}{RG}|Creature - Goblin Shaman|2|2|Vexing Shusher can't be countered.${RG}: Target spell can't be countered by spells or abilities.|
Figure of Destiny|Launch Party|3|R|{RW}|Creature - Kithkin|1|1|{RW}: Figure of Destiny becomes a Kithkin Spirit with base power and toughness 2/2.${RW}{RW}{RW}: If Figure of Destiny is a Spirit, it becomes a Kithkin Spirit Warrior with base power and toughness 4/4.${RW}{RW}{RW}{RW}{RW}{RW}: If Figure of Destiny is a Warrior, it becomes a Kithkin Spirit Warrior Avatar with base power and toughness 8/8, flying, and first strike.|
-Ajani Vengeant|Launch Party|4|M|{2}{W}{R}|Legendary 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.|
+Ajani Vengeant|Launch Party|4|M|{2}{W}{R}|Legendary Planeswalker - Ajani|||+1: Target permanent doesn't untap during its controller's next untap step.$-2: Ajani Vengeant deals 3 damage to any target and you gain 3 life.$-7: Destroy all lands target player controls.|
Obelisk of Alara|Launch Party|5|R|{6}|Artifact|||{1}{W}, {T}: You gain 5 life.${1}{U}, {T}: Draw a card, then discard a card.${1}{B}, {T}: Target creature gets -2/-2 until end of turn.${1}{R}, {T}: Obelisk of Alara deals 3 damage to target player.${1}{G}, {T}: Target creature gets +4/+4 until end of turn.|
Knight of New Alara|Launch Party|6|R|{2}{W}{G}|Creature Human Knight|2|2|Each other multicolored creature you control gets +1/+1 for each of its colors.|
Ant Queen|Launch Party|7|R|{3}{G}{G}|Creature Insect|5|5|{1}{G}: Put a 1/1 green Insect creature token onto the battlefield.|
-Valakut, the Molten Pinnacle|Launch Party|8|R||Land|||Valakut, the Molten Pinnacle enters the battlefield tapped.$Whenever a Mountain enters the battlefield under your control, if you control at least five other Mountains, you may have Valakut, the Molten Pinnacle deal 3 damage to target creature or player.${T}: Add {R}.|
+Valakut, the Molten Pinnacle|Launch Party|8|R||Land|||Valakut, the Molten Pinnacle enters the battlefield tapped.$Whenever a Mountain enters the battlefield under your control, if you control at least five other Mountains, you may have Valakut, the Molten Pinnacle deal 3 damage to any target.${T}: Add {R}.|
Joraga Warcaller|Launch Party|9|R|{G}|Creature Elf Warrior|1|1|Multikicker {1}{G} (You may pay an additional {1}{G} any number of times as you cast this spell.)$Joraga Warcaller enters the battlefield with a +1/+1 counter on it for each time it was kicked.$Other Elf creatures you control get +1/+1 for each +1/+1 counter on Joraga Warcaller.|
Lord of Shatterskull Pass|Launch Party|10|R|{3}{R}|Creature Minotaur Shaman|3|3|Level up {1}{R} ({1}{R}: Put a level counter on this. Level up only as a sorcery.)$LEVEL 1-5$6/6$$LEVEL 6+$6/6$Whenever Lord of Shatterskull Pass attacks, it deals 6 damage to each creature defending player controls.|
Ancient Hellkite|Launch Party|11|R|{4}{R}{R}{R}|Creature - Dragon|6|6|Flying${R}: Ancient Hellkite deals 1 damage to target creature defending player controls. Activate this ability only if Ancient Hellkite is attacking.|
@@ -10725,7 +10725,7 @@ Ludevic's Abomination|Launch Party|16b|R||Creature - Lizard Horror|13|13|Trample
Mondronen Shaman|Launch Party|17a|R|{3}{R}|Creature - Human Werewolf Shaman|3|2|At the beginning of each upkeep, if no spells were cast last turn, transform Mondronen Shaman.|
Tovolar's Magehunter|Launch Party|17b|R||Creature - Werewolf|5|5|Whenever an opponent casts a spell, Tovolar's Magehunter deals 2 damage to that player.$At the beginning of each upkeep, if a player cast two or more spells last turn, transform Tovolar's Magehunter.|
Restoration Angel|Launch Party|18|R|{3}{W}|Creature - Angel|3|4|Flash$Flying$When Restoration Angel enters the battlefield, you may exile target non-Angel creature you control, then return that card to the battlefield under your control.|
-Staff of Nin|Launch Party|19|R|{6}|Artifact|||At the beginning of your upkeep, draw a card.${T}: Staff of Nin deals 1 damage to target creature or player.|
+Staff of Nin|Launch Party|19|R|{6}|Artifact|||At the beginning of your upkeep, draw a card.${T}: Staff of Nin deals 1 damage to any target.|
Deadbridge Goliath|Launch Party|20|R|{2}{G}{G}|Creature - Insect|5|5|Scavenge {4}{G}{G} ({4}{G}{G}, Exile this card from your graveyard: Put a number of +1/+1 counters equal to this card's power on target creature. Scavenge only as a sorcery.)|
Skarrg Goliath|Launch Party|21|R|{6}{G}{G}|Creature - Beast|9|9|Trample$Bloodrush {5}{G}{G}, Discard Skarrg Goliath: Target attacking creature gets +9/+9 and gains trample until end of turn.|
Breaking|Launch Party|22a|R|{U}{B}|Sorcery|||Target player puts the top eight cards of his or her library into his or her graveyard.$Fuse (You may cast one or both halves of this card from your hand.)|
@@ -10740,11 +10740,11 @@ Sandsteppe Mastodon|Launch Party|29|R|{5}{G}{G}|Creature - Elephant|5|5|Reach$Wh
Deathbringer Regent|Launch Party|31|R|{5}{B}{B}|Creature - Dragon|5|6|Flying$When Deathbringer Regent enters the battlefield, if you cast it from your hand and there are five or more other creatures on the battlefield, destroy all other creatures.|
Mizzium Meddler|Launch Party|32|R|{2}{U}|Creature - Vedalken Wizard|1|4|Flash (You may cast this spell any time you could cast an instant.)$When Mizzium Meddler enters the battlefield, you may change a target of target spell or ability to Mizzium Meddler.|
Blight Herder|Launch Party|33|R|{5}|Creature - Eldrazi Processor|4|5|When you cast Blight Herder, you may put two cards your opponents own from exile into their owners' graveyards. If you do, put three 1/1 colorless Eldrazi Scion creature tokens onto the battlefield. They have "Sacrifice this creature: Add {C}."|
-Endbringer|Launch Party|34|R|{5}{C}|Creature - Eldrazi|5|5|Untap Endbringer during each other player's untap step.${T}: Endbringer deals 1 damage to target creature or player.${C}, {T}: Target creature can't attack or block this turn.${C}{C}, {T}: Draw a card.|
+Endbringer|Launch Party|34|R|{5}{C}|Creature - Eldrazi|5|5|Untap Endbringer during each other player's untap step.${T}: Endbringer deals 1 damage to any target.${C}, {T}: Target creature can't attack or block this turn.${C}{C}, {T}: Draw a card.|
Angel of Deliverance|Launch Party|35|R|{6}{W}{W}|Creature - Angel|6|6|Flying$Delirium — Whenever Angel of Deliverance deals damage, if there are four or more card types among cards in your graveyard, exile target creature an opponent controls.|
Identity Thief|Launch Party|36|R|{2}{U}{U}|Creature - Shapeshifter|0|3|Whenever Identity Thief attacks, you may exile another target non-token creature. If you do, Identity Thief becomes a copy of that creature until end of turn. Return the exiled card to the battlefield under its owner's control at the beginning of the next end step.|
Saheeli's Artistry|Launch Party|37|R|{4}{U}{U}|Sorcery|||Choose one or both — Create a token that's a copy of target artifact.; or Create a token that's a copy of target creature, except it's an artifact in addition to its other types.|
-Quicksmith Rebel|Launch Party|38|R|{3}{R}|Creature - Human Artificer|3|2|When Quicksmith Rebel enters the battlefield, target artifact you control gains "{T}: This artifact deals 2 damage to target creature or player" for as long as you control Quicksmith Rebel.|
+Quicksmith Rebel|Launch Party|38|R|{3}{R}|Creature - Human Artificer|3|2|When Quicksmith Rebel enters the battlefield, target artifact you control gains "{T}: This artifact deals 2 damage to any target" for as long as you control Quicksmith Rebel.|
Oracle's Vault|Launch Party|39|R|{4}|Artifact|||{2}, {T}: Exile the top card of your library. Until end of turn, you may play that card. Put a brick counter on Oracle's Vault.${T}: Exile the top card of your library. Until end of turn, you may play that card without paying its mana cost. Activate this ability only if there are three or more brick counters on Oracle's Vault.|
Ramunap Excavator|Launch Party|40|R|{2}{G}|Creature - Naga Cleric|2|3|You may play land cards from your graveyard.|
Bishop of Rebirth|Launch Party|41|R|{3}{W}{W}|Creature - Vampire Cleric|3|4|Vigilance$Whenever Bishop of Rebirth attacks, you may return target creature card with converted mana cost 3 or less from your graveyard to the battlefield.|
@@ -10789,7 +10789,7 @@ Beasts of Bogardan|Legends|133|U|{4}{R}|Creature - Beast|3|3|Protection from red
Blazing Effigy|Legends|134|C|{1}{R}|Creature - Elemental|0|3|When Blazing Effigy dies, it deals X damage to target creature, where X is 3 plus the amount of damage dealt to Blazing Effigy this turn by other sources named Blazing Effigy.|
Blood Lust|Legends|135|U|{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.|
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.|
+Chain Lightning|Legends|137|C|{R}|Sorcery|||Chain Lightning deals 3 damage to any target. 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 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.|
Glyph of Doom|Legends|14|C|{B}|Instant|||At end of combat, destroy all creatures that were blocked by target Wall this turn.|
@@ -10828,7 +10828,7 @@ Wall of Opposition|Legends|168|R|{3}{R}{R}|Creature - Wall|0|6|Defender (This
Winds of Change|Legends|169|U|{R}|Sorcery|||Each player shuffles the cards from his or her hand into his or her library, then draws that many cards.|
Hell Swarm|Legends|17|C|{B}|Instant|||All creatures get -1/-0 until end of turn.|
Akron Legionnaire|Legends|170|R|{6}{W}{W}|Creature - Giant Soldier|8|4|Except for creatures named Akron Legionnaire and artifact creatures, creatures you control can't attack.|
-Alabaster Potion|Legends|171|C|{X}{W}{W}|Instant|||Choose one - Target player gains X life; or prevent the next X damage that would be dealt to target creature or player this turn.|
+Alabaster Potion|Legends|171|C|{X}{W}{W}|Instant|||Choose one - Target player gains X life; or prevent the next X damage that would be dealt to any target this turn.|
Amrou Kithkin|Legends|172|C|{W}{W}|Creature - Kithkin|1|1|Amrou Kithkin can't be blocked by creatures with power 3 or greater.|
Angelic Voices|Legends|173|R|{2}{W}{W}|Enchantment|||Creatures you control get +1/+1 as long as you control no nonartifact, nonwhite creatures.|
Cleanse|Legends|174|R|{2}{W}{W}|Sorcery|||Destroy all black creatures.|
@@ -10906,9 +10906,9 @@ Ring of Immortals|Legends|238|R|{5}|Artifact|||{3}, {tap}: Counter target instan
Sentinel|Legends|239|R|{4}|Artifact Creature - Shapeshifter|1|1|{0}: Sentinel's toughness becomes 1 plus the power of target creature blocking or blocked by Sentinel. (This effect lasts indefinitely.)|
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.|
Serpent Generator|Legends|240|R|{6}|Artifact|||{4}, {tap}: Put a 1/1 colorless Snake artifact creature token onto the battlefield. It has "Whenever this creature deals damage to a player, that player gets a poison counter." (A player with ten or more poison counters loses the game.)|
-Sword of the Ages|Legends|241|R|{6}|Artifact|||Sword of the Ages enters the battlefield tapped.${tap}, Sacrifice Sword of the Ages and any number of creatures you control: Sword of the Ages deals X damage to target creature or player, where X is the total power of the creatures sacrificed this way, then exile Sword of the Ages and those creature cards.|
+Sword of the Ages|Legends|241|R|{6}|Artifact|||Sword of the Ages enters the battlefield tapped.${tap}, Sacrifice Sword of the Ages and any number of creatures you control: Sword of the Ages deals X damage to any target, where X is the total power of the creatures sacrificed this way, then exile Sword of the Ages and those creature cards.|
Triassic Egg|Legends|242|R|{4}|Artifact|||{3}, {tap}: Put a hatchling counter on Triassic Egg.$Sacrifice Triassic Egg: Choose one - You may put a creature card from your hand onto the battlefield; or return target creature card from your graveyard to the battlefield. Activate this ability only if two or more hatchling counters are on Triassic Egg.|
-Voodoo Doll|Legends|243|R|{6}|Artifact|||At the beginning of your upkeep, put a pin counter on Voodoo Doll.$At the beginning of your end step, if Voodoo Doll is untapped, destroy Voodoo Doll and it deals damage to you equal to the number of pin counters on it.${X}{X}, {tap}: Voodoo Doll deals damage equal to the number of pin counters on it to target creature or player. X is the number of pin counters on Voodoo Doll.|
+Voodoo Doll|Legends|243|R|{6}|Artifact|||At the beginning of your upkeep, put a pin counter on Voodoo Doll.$At the beginning of your end step, if Voodoo Doll is untapped, destroy Voodoo Doll and it deals damage to you equal to the number of pin counters on it.${X}{X}, {tap}: Voodoo Doll deals damage equal to the number of pin counters on it to any target. X is the number of pin counters on Voodoo Doll.|
White Mana Battery|Legends|244|U|{4}|Artifact|||{2}, {tap}: Put a charge counter on White Mana Battery.$${tap}, Remove any number of charge counters from White Mana Battery: Add {W}, then add an additional {W} for each charge counter removed this way.|
Adventurers' Guildhouse|Legends|245|U||Land|||Green legendary creatures you control have "bands with other legendary creatures." (Any legendary creatures can attack in a band as long as at least one has "bands with other legendary creatures." Bands are blocked as a group. If at least two legendary creatures you control, one of which has "bands with other legendary creatures," are blocking or being blocked by the same creature, you divide that creature's combat damage, not its controller, among any of the creatures it's being blocked by or is blocking.)|
Ur-Drago|Legends|246|R|{3}{U}|Legendary Creature - Elemental|4|4|First strike$Creatures with swampwalk can be blocked as though they didn't have swampwalk.|
@@ -11022,8 +11022,8 @@ Juxtapose|Legends|63|R|{3}{U}|Sorcery|||You and target player exchange control o
Land Equilibrium|Legends|64|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.|
Mana Drain|Legends|65|U|{U}{U}|Instant|||Counter target spell. At the beginning of your next main phase, add X mana of {C}, where X is that spell's converted mana cost.|
Part Water|Legends|66|U|{X}{X}{U}|Sorcery|||X target creatures gain islandwalk until end of turn.|
-Psionic Entity|Legends|67|R|{4}{U}|Creature - Illusion|2|2|{tap}: Psionic Entity deals 2 damage to target creature or player and 3 damage to itself.|
-Psychic Purge|Legends|68|C|{U}|Sorcery|||Psychic Purge deals 1 damage to target creature or player.$When a spell or ability an opponent controls causes you to discard Psychic Purge, that player loses 5 life.|
+Psionic Entity|Legends|67|R|{4}{U}|Creature - Illusion|2|2|{tap}: Psionic Entity deals 2 damage to any target and 3 damage to itself.|
+Psychic Purge|Legends|68|C|{U}|Sorcery|||Psychic Purge deals 1 damage to any target.$When a spell or ability an opponent controls causes you to discard Psychic Purge, that player loses 5 life.|
Puppet Master|Legends|69|U|{U}{U}{U}|Enchantment - Aura|||Enchant creature$When enchanted creature dies, return that card to its owner's hand. If that card is returned to its owner's hand this way, you may pay {U}{U}{U}. If you do, return Puppet Master to its owner's hand.|
Cyclopean Mummy|Legends|7|C|{1}{B}|Creature - Zombie|2|1|When Cyclopean Mummy dies, exile it.|
The Abyss|Legends|70|R|{3}{B}|World Enchantment|||At the beginning of each player's upkeep, destroy target nonartifact creature that player controls of his or her choice. It can't be regenerated.|
@@ -11064,7 +11064,7 @@ Goblin Grappler|Legions|100|C|{R}|Creature - Goblin|1|1|Provoke (When this at
Goblin Lookout|Legions|101|C|{1}{R}|Creature - Goblin|1|2|{tap}, Sacrifice a Goblin: Goblin creatures get +2/+0 until end of turn.|
Hunter Sliver|Legions|102|C|{1}{R}|Creature - Sliver|1|1|All Sliver creatures have provoke. (When a Sliver attacks, its controller may have target creature defending player controls untap and block it if able.)|
Imperial Hellkite|Legions|103|R|{5}{R}{R}|Creature - Dragon|6|6|Flying$Morph {6}{R}{R} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Imperial Hellkite is turned face up, you may search your library for a Dragon card, reveal it, and put it into your hand. If you do, shuffle your library.|
-Kilnmouth Dragon|Legions|104|R|{5}{R}{R}|Creature - Dragon|5|5|Amplify 3 (As this creature enters the battlefield, put three +1/+1 counters on it for each Dragon card you reveal in your hand.)$Flying${tap}: Kilnmouth Dragon deals damage equal to the number of +1/+1 counters on it to target creature or player.|
+Kilnmouth Dragon|Legions|104|R|{5}{R}{R}|Creature - Dragon|5|5|Amplify 3 (As this creature enters the battlefield, put three +1/+1 counters on it for each Dragon card you reveal in your hand.)$Flying${tap}: Kilnmouth Dragon deals damage equal to the number of +1/+1 counters on it to any target.|
Lavaborn Muse|Legions|105|R|{3}{R}|Creature - Spirit|3|3|At the beginning of each opponent's upkeep, if that player has two or fewer cards in hand, Lavaborn Muse deals 3 damage to him or her.|
Macetail Hystrodon|Legions|106|C|{6}{R}|Creature - Beast|4|4|First strike, haste$Cycling {3} ({3}, Discard this card: Draw a card.)|
Magma Sliver|Legions|107|R|{3}{R}|Creature - Sliver|3|3|All Slivers have "{tap}: Target Sliver creature gets +X/+0 until end of turn, where X is the number of Slivers on the battlefield."|
@@ -11074,7 +11074,7 @@ Defender of the Order|Legions|11|R|{3}{W}|Creature - Human Cleric|2|4|Morph {W}{
Shaleskin Plower|Legions|110|C|{3}{R}|Creature - Beast|3|2|Morph {4}{R} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Shaleskin Plower is turned face up, destroy target land.|
Skirk Alarmist|Legions|111|R|{1}{R}|Creature - Human Wizard|1|2|Haste${tap}: Turn target face-down creature you control face up. At the beginning of the next end step, sacrifice it.|
Skirk Drill Sergeant|Legions|112|U|{1}{R}|Creature - Goblin|2|1|Whenever Skirk Drill Sergeant or another Goblin dies, you may pay {2}{R}. If you do, reveal the top card of your library. If it's a Goblin permanent card, put it onto the battlefield. Otherwise, put it into your graveyard.|
-Skirk Marauder|Legions|113|C|{1}{R}|Creature - Goblin|2|1|Morph {2}{R} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Skirk Marauder is turned face up, it deals 2 damage to target creature or player.|
+Skirk Marauder|Legions|113|C|{1}{R}|Creature - Goblin|2|1|Morph {2}{R} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Skirk Marauder is turned face up, it deals 2 damage to any target.|
Skirk Outrider|Legions|114|C|{3}{R}|Creature - Goblin|2|2|As long as you control a Beast, Skirk Outrider gets +2/+2 and has trample.|
Unstable Hulk|Legions|115|R|{1}{R}{R}|Creature - Goblin Mutant|2|2|Morph {3}{R}{R} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Unstable Hulk is turned face up, it gets +6/+6 and gains trample until end of turn. You skip your next turn.|
Warbreak Trumpeter|Legions|116|U|{R}|Creature - Goblin|1|1|Morph {X}{X}{R} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Warbreak Trumpeter is turned face up, put X 1/1 red Goblin creature tokens onto the battlefield.|
@@ -11108,7 +11108,7 @@ Timberwatch Elf|Legions|140|C|{2}{G}|Creature - Elf|1|2|{tap}: Target creature g
Totem Speaker|Legions|141|U|{4}{G}|Creature - Elf Druid|3|3|Whenever a Beast enters the battlefield, you may gain 3 life.|
Tribal Forcemage|Legions|142|R|{1}{G}|Creature - Elf Wizard|1|1|Morph {1}{G} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Tribal Forcemage is turned face up, creatures of the creature type of your choice get +2/+2 and gain trample until end of turn.|
Vexing Beetle|Legions|143|R|{4}{G}|Creature - Insect|3|3|Vexing Beetle can't be countered.$Vexing Beetle gets +3/+3 as long as no opponent controls a creature.|
-Wirewood Channeler|Legions|144|U|{3}{G}|Creature - Elf Druid|2|2|{tap}: Add X mana of any one color to your mana pool, where X is the number of Elves on the battlefield.|
+Wirewood Channeler|Legions|144|U|{3}{G}|Creature - Elf Druid|2|2|{tap}: Add X mana of any one color, where X is the number of Elves on the battlefield.|
Wirewood Hivemaster|Legions|145|U|{1}{G}|Creature - Elf|1|1|Whenever another nontoken Elf enters the battlefield, you may put a 1/1 green Insect creature token onto the battlefield.|
Glowrider|Legions|15|R|{2}{W}|Creature - Human Cleric|2|1|Noncreature spells cost {1} more to cast.|
Liege of the Axe|Legions|16|U|{3}{W}|Creature - Human Soldier|2|3|Vigilance$Morph {1}{W} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Liege of the Axe is turned face up, untap it.|
@@ -11126,7 +11126,7 @@ Whipgrass Entangler|Legions|26|C|{2}{W}|Creature - Human Cleric|1|3|{1}{W}: Unti
White Knight|Legions|27|U|{W}{W}|Creature - Human Knight|2|2|First strike (This creature deals combat damage before creatures without first strike.)$Protection from black (This creature can't be blocked, targeted, dealt damage, or enchanted by anything black.)|
Windborn Muse|Legions|28|R|{3}{W}|Creature - Spirit|2|3|Flying$Creatures can't attack you unless their controller pays {2} for each creature he or she controls that's attacking you.|
Wingbeat Warrior|Legions|29|C|{2}{W}|Creature - Bird Soldier Warrior|2|1|Flying$Morph {2}{W} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Wingbeat Warrior is turned face up, target creature gains first strike until end of turn.|
-Aven Redeemer|Legions|3|C|{3}{W}|Creature - Bird Cleric|2|2|Flying${tap}: Prevent the next 2 damage that would be dealt to target creature or player this turn.|
+Aven Redeemer|Legions|3|C|{3}{W}|Creature - Bird Cleric|2|2|Flying${tap}: Prevent the next 2 damage that would be dealt to any target this turn.|
Aven Envoy|Legions|30|C|{U}|Creature - Bird Soldier|0|2|Flying|
Cephalid Pathmage|Legions|31|C|{2}{U}|Creature - Cephalid Wizard|1|2|Cephalid Pathmage is unblockable.${tap}, Sacrifice Cephalid Pathmage: Target creature is unblockable this turn.|
Chromeshell Crab|Legions|32|R|{4}{U}|Creature - Crab Beast|3|3|Morph {4}{U} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Chromeshell Crab is turned face up, you may exchange control of target creature you control and target creature an opponent controls.|
@@ -11161,7 +11161,7 @@ Willbender|Legions|58|U|{1}{U}|Creature - Human Wizard|1|2|Morph {1}{U} You m
Aphetto Exterminator|Legions|59|U|{2}{B}|Creature - Human Wizard|3|1|Morph {3}{B} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Aphetto Exterminator is turned face up, target creature gets -3/-3 until end of turn.|
Celestial Gatekeeper|Legions|6|R|{3}{W}{W}|Creature - Bird Cleric|2|2|Flying$When Celestial Gatekeeper dies, exile it, then return up to two target Bird and/or Cleric permanent cards from your graveyard to the battlefield.|
Bane of the Living|Legions|60|R|{2}{B}{B}|Creature - Insect|4|3|Morph {X}{B}{B} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Bane of the Living is turned face up, all creatures get -X/-X until end of turn.|
-Blood Celebrant|Legions|61|C|{B}|Creature - Human Cleric|1|1|{B}, Pay 1 life: Add one mana of any color to your mana pool.|
+Blood Celebrant|Legions|61|C|{B}|Creature - Human Cleric|1|1|{B}, Pay 1 life: Add one mana of any color.|
Corpse Harvester|Legions|62|U|{3}{B}{B}|Creature - Zombie Wizard|3|3|{1}{B}, {tap}, Sacrifice a creature: Search your library for a Zombie card and a Swamp card, reveal them, and put them into your hand. Then shuffle your library.|
Crypt Sliver|Legions|63|C|{1}{B}|Creature - Sliver|1|1|All Slivers have "{tap}: Regenerate target Sliver."|
Dark Supplicant|Legions|64|U|{B}|Creature - Human Cleric|1|1|{tap}, Sacrifice three Clerics: Search your graveyard, hand, and/or library for a card named Scion of Darkness and put it onto the battlefield. If you search your library this way, shuffle it.|
@@ -11200,7 +11200,7 @@ Frenetic Raptor|Legions|93|U|{5}{R}|Creature - Dinosaur Beast|6|6|Beasts can't b
Gempalm Incinerator|Legions|94|U|{2}{R}|Creature - Goblin|2|1|Cycling {1}{R} ({1}{R}, Discard this card: Draw a card.)$When you cycle Gempalm Incinerator, you may have it deal X damage to target creature, where X is the number of Goblins on the battlefield.|
Goblin Assassin|Legions|95|U|{3}{R}{R}|Creature - Goblin Assassin|2|2|Whenever Goblin Assassin or another Goblin enters the battlefield, each player flips a coin. Each player whose coin comes up tails sacrifices a creature.|
Goblin Clearcutter|Legions|96|U|{3}{R}|Creature - Goblin|3|3|{tap}, Sacrifice a Forest: Add three mana in any combination of {R} and/or {G}.|
-Goblin Dynamo|Legions|97|U|{5}{R}{R}|Creature - Goblin Mutant|4|4|{tap}: Goblin Dynamo deals 1 damage to target creature or player.${X}{R}, {tap}, Sacrifice Goblin Dynamo: Goblin Dynamo deals X damage to target creature or player.|
+Goblin Dynamo|Legions|97|U|{5}{R}{R}|Creature - Goblin Mutant|4|4|{tap}: Goblin Dynamo deals 1 damage to any target.${X}{R}, {tap}, Sacrifice Goblin Dynamo: Goblin Dynamo deals X damage to any target.|
Goblin Firebug|Legions|98|C|{1}{R}|Creature - Goblin|2|2|When Goblin Firebug leaves the battlefield, sacrifice a land.|
Goblin Goon|Legions|99|R|{3}{R}|Creature - Goblin Mutant|6|6|Goblin Goon can't attack unless you control more creatures than defending player.$Goblin Goon can't block unless you control more creatures than attacking player.|
Animate Dead|Limited Edition Alpha|1|U|{1}{B}|Enchantment - Aura|||Enchant creature card in a graveyard$When Animate Dead enters the battlefield, if it's on the battlefield, it loses "enchant creature card in a graveyard" and gains "enchant creature put onto the battlefield with Animate Dead." Return enchanted creature card to the battlefield under your control and attach Animate Dead to it. When Animate Dead leaves the battlefield, that creature's controller sacrifices it.$Enchanted creature gets -1/-0.|
@@ -11247,9 +11247,9 @@ War Mammoth|Limited Edition Alpha|136|C|{3}{G}|Creature - Elephant|3|3|Trample|
Web|Limited Edition Alpha|137|R|{G}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Enchanted creature gets +0/+2 and has reach. (It can block creatures with flying.)|
Wild Growth|Limited Edition Alpha|138|C|{G}|Enchantment - Aura|||Enchant land$Whenever enchanted land is tapped for mana, its controller adds {G} to his or her mana pool (in addition to the mana the land produces).|
Burrowing|Limited Edition Alpha|139|U|{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has mountainwalk.|
-Drain Life|Limited Edition Alpha|14|C|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Drain Life deals X damage to target creature or player. You gain life equal to the damage dealt, but not more life than the player's life total before Drain Life dealt damage or the creature's toughness.|
+Drain Life|Limited Edition Alpha|14|C|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Drain Life deals X damage to any target. You gain life equal to the damage dealt, but not more life than the player's life total before Drain Life dealt damage or the creature's toughness.|
Chaoslace|Limited Edition Alpha|140|R|{R}|Instant|||Target spell or permanent becomes red. (Its mana symbols remain unchanged.)|
-Disintegrate|Limited Edition Alpha|141|C|{X}{R}|Sorcery|||Disintegrate deals X damage to target creature or player. That creature can't be regenerated this turn. If the creature would die this turn, exile it instead.|
+Disintegrate|Limited Edition Alpha|141|C|{X}{R}|Sorcery|||Disintegrate deals X damage to any target. That creature can't be regenerated this turn. If the creature would die this turn, exile it instead.|
Dragon Whelp|Limited Edition Alpha|142|U|{2}{R}{R}|Creature - Dragon|2|3|Flying${R}: Dragon Whelp gets +1/+0 until end of turn. If this ability has been activated four or more times this turn, sacrifice Dragon Whelp at the beginning of the next end step.|
Dwarven Demolition Team|Limited Edition Alpha|143|U|{2}{R}|Creature - Dwarf|1|1|{tap}: Destroy target Wall.|
Dwarven Warriors|Limited Edition Alpha|144|C|{2}{R}|Creature - Dwarf Warrior|1|1|{tap}: Target creature with power 2 or less is unblockable this turn.|
@@ -11272,11 +11272,11 @@ Hurloon Minotaur|Limited Edition Alpha|159|C|{1}{R}{R}|Creature - Minotaur|2|3||
Evil Presence|Limited Edition Alpha|16|U|{B}|Enchantment - Aura|||Enchant land$Enchanted land is a Swamp.|
Ironclaw Orcs|Limited Edition Alpha|160|C|{1}{R}|Creature - Orc|2|2|Ironclaw Orcs can't block creatures with power 2 or greater.|
Keldon Warlord|Limited Edition Alpha|161|U|{2}{R}{R}|Creature - Human Barbarian|*|*|Keldon Warlord's power and toughness are each equal to the number of non-Wall creatures you control.|
-Lightning Bolt|Limited Edition Alpha|162|C|{R}|Instant|||Lightning Bolt deals 3 damage to target creature or player.|
+Lightning Bolt|Limited Edition Alpha|162|C|{R}|Instant|||Lightning Bolt deals 3 damage to any target.|
Mana Flare|Limited Edition Alpha|163|R|{2}{R}|Enchantment|||Whenever a player taps a land for mana, that player adds one mana to his or her mana pool of any type that land produced.|
Manabarbs|Limited Edition Alpha|164|R|{3}{R}|Enchantment|||Whenever a player taps a land for mana, Manabarbs deals 1 damage to that player.|
Mons's Goblin Raiders|Limited Edition Alpha|165|C|{R}|Creature - Goblin|1|1||
-Orcish Artillery|Limited Edition Alpha|166|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Artillery deals 2 damage to target creature or player and 3 damage to you.|
+Orcish Artillery|Limited Edition Alpha|166|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Artillery deals 2 damage to any target and 3 damage to you.|
Orcish Oriflamme|Limited Edition Alpha|167|U|{3}{R}|Enchantment|||Attacking creatures you control get +1/+0.|
Power Surge|Limited Edition Alpha|168|R|{R}{R}|Enchantment|||At the beginning of each player's upkeep, Power Surge deals X damage to that player, where X is the number of untapped lands he or she controlled at the beginning of this turn.|
Raging River|Limited Edition Alpha|169|R|{R}{R}|Enchantment|||Whenever one or more creatures you control attack, each defending player divides all creatures without flying he or she controls into a "left" pile and a "right" pile. Then, for each attacking creature you control, choose "left" or "right." That creature can't be blocked this combat except by creatures with flying and creatures in a pile with the chosen label.|
@@ -11321,8 +11321,8 @@ Death Ward|Limited Edition Alpha|201|C|{W}|Instant|||Regenerate target creature.
Disenchant|Limited Edition Alpha|202|C|{1}{W}|Instant|||Destroy target artifact or enchantment.|
Farmstead|Limited Edition Alpha|203|R|{W}{W}{W}|Enchantment - Aura|||Enchant land$Enchanted land has "At the beginning of your upkeep, you may pay {W}{W}. If you do, you gain 1 life."|
Green Ward|Limited Edition Alpha|204|U|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature has protection from green. This effect doesn't remove Green Ward.|
-Guardian Angel|Limited Edition Alpha|205|C|{X}{W}|Instant|||Prevent the next X damage that would be dealt to target creature or player this turn. Until end of turn, you may pay {1} any time you could cast an instant. If you do, prevent the next 1 damage that would be dealt to that creature or player this turn.|
-Healing Salve|Limited Edition Alpha|206|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to target creature or player this turn.|
+Guardian Angel|Limited Edition Alpha|205|C|{X}{W}|Instant|||Prevent the next X damage that would be dealt to any target this turn. Until end of turn, you may pay {1} any time you could cast an instant. If you do, prevent the next 1 damage that would be dealt to that creature or player this turn.|
+Healing Salve|Limited Edition Alpha|206|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to any target this turn.|
Holy Armor|Limited Edition Alpha|207|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +0/+2.${W}: Enchanted creature gets +0/+1 until end of turn.|
Holy Strength|Limited Edition Alpha|208|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+2.|
Island Sanctuary|Limited Edition Alpha|209|R|{1}{W}|Enchantment|||If you would draw a card during your draw step, instead you may skip that draw. If you do, until your next turn, you can't be attacked except by creatures with flying and/or islandwalk.|
@@ -11337,7 +11337,7 @@ Red Ward|Limited Edition Alpha|217|U|{W}|Enchantment - Aura|||Enchant creature$E
Resurrection|Limited Edition Alpha|218|U|{2}{W}{W}|Sorcery|||Return target creature card from your graveyard to the battlefield.|
Reverse Damage|Limited Edition Alpha|219|R|{1}{W}{W}|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.|
Righteousness|Limited Edition Alpha|220|R|{W}|Instant|||Target blocking creature gets +7/+7 until end of turn.|
-Samite Healer|Limited Edition Alpha|221|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Samite Healer|Limited Edition Alpha|221|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.|
Savannah Lions|Limited Edition Alpha|222|R|{W}|Creature - Cat|2|1||
Serra Angel|Limited Edition Alpha|223|U|{3}{W}{W}|Creature - Angel|4|4|Flying$Vigilance (Attacking doesn't cause this creature to tap.)|
Swords to Plowshares|Limited Edition Alpha|224|U|{W}|Instant|||Exile target creature. Its controller gains life equal to its power.|
@@ -11350,7 +11350,7 @@ Lord of the Pit|Limited Edition Alpha|23|R|{4}{B}{B}{B}|Creature - Demon|7|7|Fly
Ankh of Mishra|Limited Edition Alpha|230|R|{2}|Artifact|||Whenever a land enters the battlefield, Ankh of Mishra deals 2 damage to that land's controller.|
Basalt Monolith|Limited Edition Alpha|231|U|{3}|Artifact|||Basalt Monolith doesn't untap during your untap step.${tap}: Add {C}{C}{C}.${3}: Untap Basalt Monolith.|
Black Vise|Limited Edition Alpha|233|U|{1}|Artifact|||As Black Vise enters the battlefield, choose an opponent.$At the beginning of the chosen player's upkeep, Black Vise deals X damage to that player, where X is the number of cards in his or her hand minus 4.|
-Celestial Prism|Limited Edition Alpha|234|U|{3}|Artifact|||{2}, {tap}: Add one mana of any color to your mana pool.|
+Celestial Prism|Limited Edition Alpha|234|U|{3}|Artifact|||{2}, {tap}: Add one mana of any color.|
Chaos Orb|Limited Edition Alpha|235|R|{2}|Artifact|||{1}, {tap}: If Chaos Orb is on the battlefield, flip Chaos Orb onto the battlefield from a height of at least one foot. If Chaos Orb turns over completely at least once during the flip, destroy all permanents it touches. Then destroy Chaos Orb.|
Clockwork Beast|Limited Edition Alpha|236|R|{6}|Artifact Creature - Beast|0|4|Clockwork Beast enters the battlefield with seven +1/+0 counters on it.$At end of combat, if Clockwork Beast attacked or blocked this combat, remove a +1/+0 counter from it.${X}, {tap}: Put up to X +1/+0 counters on Clockwork Beast. This ability can't cause the total number of +1/+0 counters on Clockwork Beast to be greater than seven. Activate this ability only during your upkeep.|
Conservator|Limited Edition Alpha|237|U|{4}|Artifact|||{3}, {tap}: Prevent the next 2 damage that would be dealt to you this turn.|
@@ -11388,7 +11388,7 @@ Mox Ruby|Limited Edition Alpha|264|R|{0}|Artifact|||{tap}: Add {R}.|
Mox Sapphire|Limited Edition Alpha|265|R|{0}|Artifact|||{tap}: Add {U}.|
Nevinyrral's Disk|Limited Edition Alpha|266|R|{4}|Artifact|||Nevinyrral's Disk enters the battlefield tapped.${1}, {tap}: Destroy all artifacts, creatures, and enchantments.|
Obsianus Golem|Limited Edition Alpha|267|U|{6}|Artifact Creature - Golem|4|6||
-Rod of Ruin|Limited Edition Alpha|268|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to target creature or player.|
+Rod of Ruin|Limited Edition Alpha|268|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to any target.|
Sol Ring|Limited Edition Alpha|269|U|{1}|Artifact|||{tap}: Add {C}{C}.|
Nightmare|Limited Edition Alpha|27|R|{5}{B}|Creature - Nightmare Horse|*|*|Flying$Nightmare's power and toughness are each equal to the number of Swamps you control.|
Soul Net|Limited Edition Alpha|270|U|{1}|Artifact|||Whenever a creature dies, you may pay {1}. If you do, you gain 1 life.|
@@ -11423,7 +11423,7 @@ Black Knight|Limited Edition Alpha|3|U|{B}{B}|Creature - Human Knight|2|2|First
Plague Rats|Limited Edition Alpha|30|C|{2}{B}|Creature - Rat|*|*|Plague Rats's power and toughness are each equal to the number of creatures named Plague Rats on the battlefield.|
Raise Dead|Limited Edition Alpha|31|C|{B}|Sorcery|||Return target creature card from your graveyard to your hand.|
Royal Assassin|Limited Edition Alpha|32|R|{1}{B}{B}|Creature - Human Assassin|1|1|{tap}: Destroy target tapped creature.|
-Sacrifice|Limited Edition Alpha|33|U|{B}|Instant|||As an additional cost to cast Sacrifice, sacrifice a creature.$Add to your mana pool an amount of {B} equal to the sacrificed creature's converted mana cost.|
+Sacrifice|Limited Edition Alpha|33|U|{B}|Instant|||As an additional cost to cast Sacrifice, sacrifice a creature.$Add an amount of {B} equal to the sacrificed creature's converted mana cost.|
Scathe Zombies|Limited Edition Alpha|34|C|{2}{B}|Creature - Zombie|2|2||
Scavenging Ghoul|Limited Edition Alpha|35|U|{3}{B}|Creature - Zombie|2|2|At the beginning of each end step, put a corpse counter on Scavenging Ghoul for each creature that died this turn.$Remove a corpse counter from Scavenging Ghoul: Regenerate Scavenging Ghoul.|
Sengir Vampire|Limited Edition Alpha|36|U|{3}{B}{B}|Creature - Vampire|4|4|Flying$Whenever a creature dealt damage by Sengir Vampire this turn dies, put a +1/+1 counter on Sengir Vampire.|
@@ -11464,13 +11464,13 @@ Merfolk of the Pearl Trident|Limited Edition Alpha|67|C|{U}|Creature - Merfolk|1
Phantasmal Forces|Limited Edition Alpha|68|U|{3}{U}|Creature - Illusion|4|1|Flying$At the beginning of your upkeep, sacrifice Phantasmal Forces unless you pay {U}.|
Phantasmal Terrain|Limited Edition Alpha|69|C|{U}{U}|Enchantment - Aura|||Enchant land$As Phantasmal Terrain enters the battlefield, choose a basic land type.$Enchanted land is the chosen type.|
Dark Ritual|Limited Edition Alpha|7|C|{B}|Instant|||Add {B}{B}{B}.|
-Black Lotus|Limited Edition Alpha|232|R|{0}|Artifact|||{tap}, Sacrifice Black Lotus: Add three mana of any one color to your mana pool.|
+Black Lotus|Limited Edition Alpha|232|R|{0}|Artifact|||{tap}, Sacrifice Black Lotus: Add three mana of any one color.|
Phantom Monster|Limited Edition Alpha|70|U|{3}{U}|Creature - Illusion|3|3|Flying|
-Pirate Ship|Limited Edition Alpha|71|R|{4}{U}|Creature - Human Pirate|4|3|Pirate Ship can't attack unless defending player controls an Island.${tap}: Pirate Ship deals 1 damage to target creature or player.$When you control no Islands, sacrifice Pirate Ship.|
+Pirate Ship|Limited Edition Alpha|71|R|{4}{U}|Creature - Human Pirate|4|3|Pirate Ship can't attack unless defending player controls an Island.${tap}: Pirate Ship deals 1 damage to any target.$When you control no Islands, sacrifice Pirate Ship.|
Power Leak|Limited Edition Alpha|72|C|{1}{U}|Enchantment - Aura|||Enchant enchantment$At the beginning of the upkeep of enchanted enchantment's controller, that player may pay any amount of mana. Power Leak deals 2 damage to that player. Prevent X of that damage, where X is the amount of mana that player paid this way.|
Power Sink|Limited Edition Alpha|73|C|{X}{U}|Instant|||Counter target spell unless its controller pays {X}. If he or she doesn't, that player taps all lands with mana abilities he or she controls and empties his or her mana pool.|
-Prodigal Sorcerer|Limited Edition Alpha|74|C|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to target creature or player.|
-Psionic Blast|Limited Edition Alpha|75|U|{2}{U}|Instant|||Psionic Blast deals 4 damage to target creature or player and 2 damage to you.|
+Prodigal Sorcerer|Limited Edition Alpha|74|C|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to any target.|
+Psionic Blast|Limited Edition Alpha|75|U|{2}{U}|Instant|||Psionic Blast deals 4 damage to any target and 2 damage to you.|
Ice Storm|Limited Edition Alpha|110|U|{2}{G}|Sorcery|||Destroy target land.|
Psychic Venom|Limited Edition Alpha|76|C|{1}{U}|Enchantment - Aura|||Enchant land$Whenever enchanted land becomes tapped, Psychic Venom deals 2 damage to that land's controller.|
Sea Serpent|Limited Edition Alpha|77|C|{5}{U}|Creature - Serpent|5|5|Sea Serpent can't attack unless defending player controls an Island.$$When you control no Islands, sacrifice Sea Serpent.|
@@ -11493,7 +11493,7 @@ Wall of Water|Limited Edition Alpha|91|U|{1}{U}{U}|Creature - Wall|0|5|Defender
Water Elemental|Limited Edition Alpha|92|U|{3}{U}{U}|Creature - Elemental|5|4||
Aspect of Wolf|Limited Edition Alpha|93|R|{1}{G}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +X/+Y, where X is half the number of Forests you control, rounded down, and Y is half the number of Forests you control, rounded up.|
Berserk|Limited Edition Alpha|94|U|{G}|Instant|||Cast Berserk only before the combat damage step.$Target creature gains trample and gets +X/+0 until end of turn, where X is its power. At the beginning of the next end step, destroy that creature if it attacked this turn.|
-Birds of Paradise|Limited Edition Alpha|95|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color to your mana pool.|
+Birds of Paradise|Limited Edition Alpha|95|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color.|
Camouflage|Limited Edition Alpha|96|U|{G}|Instant|||Cast Camouflage only during your declare attackers step.$This turn, instead of declaring blockers, each defending player chooses any number of creatures he or she controls and divides them into a number of piles equal to the number of attacking creatures for whom that player is the defending player. Creatures he or she controls that can block additional creatures may likewise be put into additional piles. Assign each pile to a different one of those attacking creatures at random. Each creature in a pile that can block the creature that pile is assigned to does so. (Piles can be empty.)|
Channel|Limited Edition Alpha|97|U|{G}{G}|Sorcery|||Until end of turn, any time you could activate a mana ability, you may pay 1 life. If you do, add {C}.|
Cockatrice|Limited Edition Alpha|98|R|{3}{G}{G}|Creature - Cockatrice|2|4|Flying$Whenever Cockatrice blocks or becomes blocked by a non-Wall creature, destroy that creature at end of combat.|
@@ -11511,7 +11511,7 @@ Deathlace|Limited Edition Beta|10|R|{B}|Instant|||Target spell or permanent beco
Demonic Attorney|Limited Edition Beta|11|R|{1}{B}{B}|Sorcery|||Remove Demonic Attorney from your deck before playing if you're not playing for ante.$Each player antes the top card of his or her library.|
Demonic Hordes|Limited Edition Beta|12|R|{3}{B}{B}{B}|Creature - Demon|5|5|{tap}: Destroy target land.$At the beginning of your upkeep, unless you pay {B}{B}{B}, tap Demonic Hordes and sacrifice a land of an opponent's choice.|
Demonic Tutor|Limited Edition Beta|13|U|{1}{B}|Sorcery|||Search your library for a card and put that card into your hand. Then shuffle your library.|
-Drain Life|Limited Edition Beta|14|C|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Drain Life deals X damage to target creature or player. You gain life equal to the damage dealt, but not more life than the player's life total before Drain Life dealt damage or the creature's toughness.|
+Drain Life|Limited Edition Beta|14|C|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Drain Life deals X damage to any target. You gain life equal to the damage dealt, but not more life than the player's life total before Drain Life dealt damage or the creature's toughness.|
Drudge Skeletons|Limited Edition Beta|15|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.)|
Evil Presence|Limited Edition Beta|16|U|{B}|Enchantment - Aura|||Enchant land$Enchanted land is a Swamp.|
Fear|Limited Edition Beta|17|C|{B}{B}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Enchanted creature has fear. (It can't be blocked except by artifact creatures and/or black creatures.)|
@@ -11530,7 +11530,7 @@ Pestilence|Limited Edition Beta|29|C|{2}{B}{B}|Enchantment|||At the beginning of
Plague Rats|Limited Edition Beta|30|C|{2}{B}|Creature - Rat|*|*|Plague Rats's power and toughness are each equal to the number of creatures named Plague Rats on the battlefield.|
Raise Dead|Limited Edition Beta|31|C|{B}|Sorcery|||Return target creature card from your graveyard to your hand.|
Royal Assassin|Limited Edition Beta|32|R|{1}{B}{B}|Creature - Human Assassin|1|1|{tap}: Destroy target tapped creature.|
-Sacrifice|Limited Edition Beta|33|U|{B}|Instant|||As an additional cost to cast Sacrifice, sacrifice a creature.$Add to your mana pool an amount of {B} equal to the sacrificed creature's converted mana cost.|
+Sacrifice|Limited Edition Beta|33|U|{B}|Instant|||As an additional cost to cast Sacrifice, sacrifice a creature.$Add an amount of {B} equal to the sacrificed creature's converted mana cost.|
Scathe Zombies|Limited Edition Beta|34|C|{2}{B}|Creature - Zombie|2|2||
Scavenging Ghoul|Limited Edition Beta|35|U|{3}{B}|Creature - Zombie|2|2|At the beginning of each end step, put a corpse counter on Scavenging Ghoul for each creature that died this turn.$Remove a corpse counter from Scavenging Ghoul: Regenerate Scavenging Ghoul.|
Sengir Vampire|Limited Edition Beta|36|U|{3}{B}{B}|Creature - Vampire|4|4|Flying$Whenever a creature dealt damage by Sengir Vampire this turn dies, put a +1/+1 counter on Sengir Vampire.|
@@ -11568,11 +11568,11 @@ Merfolk of the Pearl Trident|Limited Edition Beta|67|C|{U}|Creature - Merfolk|1|
Phantasmal Forces|Limited Edition Beta|68|U|{3}{U}|Creature - Illusion|4|1|Flying$At the beginning of your upkeep, sacrifice Phantasmal Forces unless you pay {U}.|
Phantasmal Terrain|Limited Edition Beta|69|C|{U}{U}|Enchantment - Aura|||Enchant land$As Phantasmal Terrain enters the battlefield, choose a basic land type.$Enchanted land is the chosen type.|
Phantom Monster|Limited Edition Beta|70|U|{3}{U}|Creature - Illusion|3|3|Flying|
-Pirate Ship|Limited Edition Beta|71|R|{4}{U}|Creature - Human Pirate|4|3|Pirate Ship can't attack unless defending player controls an Island.${tap}: Pirate Ship deals 1 damage to target creature or player.$When you control no Islands, sacrifice Pirate Ship.|
+Pirate Ship|Limited Edition Beta|71|R|{4}{U}|Creature - Human Pirate|4|3|Pirate Ship can't attack unless defending player controls an Island.${tap}: Pirate Ship deals 1 damage to any target.$When you control no Islands, sacrifice Pirate Ship.|
Power Leak|Limited Edition Beta|72|C|{1}{U}|Enchantment - Aura|||Enchant enchantment$At the beginning of the upkeep of enchanted enchantment's controller, that player may pay any amount of mana. Power Leak deals 2 damage to that player. Prevent X of that damage, where X is the amount of mana that player paid this way.|
Power Sink|Limited Edition Beta|73|C|{X}{U}|Instant|||Counter target spell unless its controller pays {X}. If he or she doesn't, that player taps all lands with mana abilities he or she controls and empties his or her mana pool.|
-Prodigal Sorcerer|Limited Edition Beta|74|C|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to target creature or player.|
-Psionic Blast|Limited Edition Beta|75|U|{2}{U}|Instant|||Psionic Blast deals 4 damage to target creature or player and 2 damage to you.|
+Prodigal Sorcerer|Limited Edition Beta|74|C|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to any target.|
+Psionic Blast|Limited Edition Beta|75|U|{2}{U}|Instant|||Psionic Blast deals 4 damage to any target and 2 damage to you.|
Psychic Venom|Limited Edition Beta|76|C|{1}{U}|Enchantment - Aura|||Enchant land$Whenever enchanted land becomes tapped, Psychic Venom deals 2 damage to that land's controller.|
Sea Serpent|Limited Edition Beta|77|C|{5}{U}|Creature - Serpent|5|5|Sea Serpent can't attack unless defending player controls an Island.$$When you control no Islands, sacrifice Sea Serpent.|
Siren's Call|Limited Edition Beta|78|U|{U}|Instant|||Cast Siren's Call only during an opponent's turn, before attackers are declared.$Creatures the active player controls attack this turn if able.$At the beginning of the next end step, destroy all non-Wall creatures that player controls that didn't attack this turn. Ignore this effect for each creature the player didn't control continuously since the beginning of the turn.|
@@ -11592,7 +11592,7 @@ Wall of Water|Limited Edition Beta|91|U|{1}{U}{U}|Creature - Wall|0|5|Defender <
Water Elemental|Limited Edition Beta|92|U|{3}{U}{U}|Creature - Elemental|5|4||
Aspect of Wolf|Limited Edition Beta|93|R|{1}{G}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +X/+Y, where X is half the number of Forests you control, rounded down, and Y is half the number of Forests you control, rounded up.|
Berserk|Limited Edition Beta|94|U|{G}|Instant|||Cast Berserk only before the combat damage step.$Target creature gains trample and gets +X/+0 until end of turn, where X is its power. At the beginning of the next end step, destroy that creature if it attacked this turn.|
-Birds of Paradise|Limited Edition Beta|95|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color to your mana pool.|
+Birds of Paradise|Limited Edition Beta|95|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color.|
Camouflage|Limited Edition Beta|96|U|{G}|Instant|||Cast Camouflage only during your declare attackers step.$This turn, instead of declaring blockers, each defending player chooses any number of creatures he or she controls and divides them into a number of piles equal to the number of attacking creatures for whom that player is the defending player. Creatures he or she controls that can block additional creatures may likewise be put into additional piles. Assign each pile to a different one of those attacking creatures at random. Each creature in a pile that can block the creature that pile is assigned to does so. (Piles can be empty.)|
Channel|Limited Edition Beta|97|U|{G}{G}|Sorcery|||Until end of turn, any time you could activate a mana ability, you may pay 1 life. If you do, add {C}.|
Cockatrice|Limited Edition Beta|98|R|{3}{G}{G}|Creature - Cockatrice|2|4|Flying$Whenever Cockatrice blocks or becomes blocked by a non-Wall creature, destroy that creature at end of combat.|
@@ -11639,7 +11639,7 @@ Wild Growth|Limited Edition Beta|138|C|{G}|Enchantment - Aura|||Enchant land$Whe
Badlands|Limited Edition Beta|139|R||Land - Swamp Mountain||||
Burrowing|Limited Edition Beta|140|U|{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has mountainwalk.|
Chaoslace|Limited Edition Beta|141|R|{R}|Instant|||Target spell or permanent becomes red. (Its mana symbols remain unchanged.)|
-Disintegrate|Limited Edition Beta|142|C|{X}{R}|Sorcery|||Disintegrate deals X damage to target creature or player. That creature can't be regenerated this turn. If the creature would die this turn, exile it instead.|
+Disintegrate|Limited Edition Beta|142|C|{X}{R}|Sorcery|||Disintegrate deals X damage to any target. That creature can't be regenerated this turn. If the creature would die this turn, exile it instead.|
Dragon Whelp|Limited Edition Beta|143|U|{2}{R}{R}|Creature - Dragon|2|3|Flying${R}: Dragon Whelp gets +1/+0 until end of turn. If this ability has been activated four or more times this turn, sacrifice Dragon Whelp at the beginning of the next end step.|
Dwarven Demolition Team|Limited Edition Beta|144|U|{2}{R}|Creature - Dwarf|1|1|{tap}: Destroy target Wall.|
Dwarven Warriors|Limited Edition Beta|145|C|{2}{R}|Creature - Dwarf Warrior|1|1|{tap}: Target creature with power 2 or less can't be blocked this turn.|
@@ -11660,11 +11660,11 @@ Hill Giant|Limited Edition Beta|159|C|{3}{R}|Creature - Giant|3|3||
Hurloon Minotaur|Limited Edition Beta|160|C|{1}{R}{R}|Creature - Minotaur|2|3||
Ironclaw Orcs|Limited Edition Beta|161|C|{1}{R}|Creature - Orc|2|2|Ironclaw Orcs can't block creatures with power 2 or greater.|
Keldon Warlord|Limited Edition Beta|162|U|{2}{R}{R}|Creature - Human Barbarian|*|*|Keldon Warlord's power and toughness are each equal to the number of non-Wall creatures you control.|
-Lightning Bolt|Limited Edition Beta|163|C|{R}|Instant|||Lightning Bolt deals 3 damage to target creature or player.|
+Lightning Bolt|Limited Edition Beta|163|C|{R}|Instant|||Lightning Bolt deals 3 damage to any target.|
Mana Flare|Limited Edition Beta|164|R|{2}{R}|Enchantment|||Whenever a player taps a land for mana, that player adds one mana to his or her mana pool of any type that land produced.|
Manabarbs|Limited Edition Beta|165|R|{3}{R}|Enchantment|||Whenever a player taps a land for mana, Manabarbs deals 1 damage to that player.|
Mons's Goblin Raiders|Limited Edition Beta|166|C|{R}|Creature - Goblin|1|1||
-Orcish Artillery|Limited Edition Beta|167|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Artillery deals 2 damage to target creature or player and 3 damage to you.|
+Orcish Artillery|Limited Edition Beta|167|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Artillery deals 2 damage to any target and 3 damage to you.|
Orcish Oriflamme|Limited Edition Beta|168|U|{3}{R}|Enchantment|||Attacking creatures you control get +1/+0.|
Power Surge|Limited Edition Beta|169|R|{R}{R}|Enchantment|||At the beginning of each player's upkeep, Power Surge deals X damage to that player, where X is the number of untapped lands he or she controlled at the beginning of this turn.|
Raging River|Limited Edition Beta|170|R|{R}{R}|Enchantment|||Whenever one or more creatures you control attack, each defending player divides all creatures without flying he or she controls into a "left" pile and a "right" pile. Then, for each attacking creature you control, choose "left" or "right." That creature can't be blocked this combat except by creatures with flying and creatures in a pile with the chosen label.|
@@ -11704,8 +11704,8 @@ Death Ward|Limited Edition Beta|203|C|{W}|Instant|||Regenerate target creature.|
Disenchant|Limited Edition Beta|204|C|{1}{W}|Instant|||Destroy target artifact or enchantment.|
Farmstead|Limited Edition Beta|205|R|{W}{W}{W}|Enchantment - Aura|||Enchant land$Enchanted land has "At the beginning of your upkeep, you may pay {W}{W}. If you do, you gain 1 life."|
Green Ward|Limited Edition Beta|206|U|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature has protection from green. This effect doesn't remove Green Ward.|
-Guardian Angel|Limited Edition Beta|207|C|{X}{W}|Instant|||Prevent the next X damage that would be dealt to target creature or player this turn. Until end of turn, you may pay {1} any time you could cast an instant. If you do, prevent the next 1 damage that would be dealt to that creature or player this turn.|
-Healing Salve|Limited Edition Beta|208|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to target creature or player this turn.|
+Guardian Angel|Limited Edition Beta|207|C|{X}{W}|Instant|||Prevent the next X damage that would be dealt to any target this turn. Until end of turn, you may pay {1} any time you could cast an instant. If you do, prevent the next 1 damage that would be dealt to that creature or player this turn.|
+Healing Salve|Limited Edition Beta|208|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to any target this turn.|
Holy Armor|Limited Edition Beta|209|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +0/+2.${W}: Enchanted creature gets +0/+1 until end of turn.|
Holy Strength|Limited Edition Beta|210|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+2.|
Island Sanctuary|Limited Edition Beta|211|R|{1}{W}|Enchantment|||If you would draw a card during your draw step, instead you may skip that draw. If you do, until your next turn, you can't be attacked except by creatures with flying and/or islandwalk.|
@@ -11720,7 +11720,7 @@ Red Ward|Limited Edition Beta|219|U|{W}|Enchantment - Aura|||Enchant creature$En
Resurrection|Limited Edition Beta|220|U|{2}{W}{W}|Sorcery|||Return target creature card from your graveyard to the battlefield.|
Reverse Damage|Limited Edition Beta|221|R|{1}{W}{W}|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.|
Righteousness|Limited Edition Beta|222|R|{W}|Instant|||Target blocking creature gets +7/+7 until end of turn.|
-Samite Healer|Limited Edition Beta|223|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Samite Healer|Limited Edition Beta|223|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.|
Savannah Lions|Limited Edition Beta|224|R|{W}|Creature - Cat|2|1||
Serra Angel|Limited Edition Beta|225|U|{3}{W}{W}|Creature - Angel|4|4|Flying$Vigilance (Attacking doesn't cause this creature to tap.)|
Swords to Plowshares|Limited Edition Beta|226|U|{W}|Instant|||Exile target creature. Its controller gains life equal to its power.|
@@ -11731,9 +11731,9 @@ White Ward|Limited Edition Beta|230|U|{W}|Enchantment - Aura|||Enchant creature$
Wrath of God|Limited Edition Beta|231|R|{2}{W}{W}|Sorcery|||Destroy all creatures. They can't be regenerated.|
Ankh of Mishra|Limited Edition Beta|232|R|{2}|Artifact|||Whenever a land enters the battlefield, Ankh of Mishra deals 2 damage to that land's controller.|
Basalt Monolith|Limited Edition Beta|233|U|{3}|Artifact|||Basalt Monolith doesn't untap during your untap step.${tap}: Add {C}{C}{C}.${3}: Untap Basalt Monolith.|
-Black Lotus|Limited Edition Beta|234|R|{0}|Artifact|||{tap}, Sacrifice Black Lotus: Add three mana of any one color to your mana pool.|
+Black Lotus|Limited Edition Beta|234|R|{0}|Artifact|||{tap}, Sacrifice Black Lotus: Add three mana of any one color.|
Black Vise|Limited Edition Beta|235|U|{1}|Artifact|||As Black Vise enters the battlefield, choose an opponent.$At the beginning of the chosen player's upkeep, Black Vise deals X damage to that player, where X is the number of cards in his or her hand minus 4.|
-Celestial Prism|Limited Edition Beta|236|U|{3}|Artifact|||{2}, {tap}: Add one mana of any color to your mana pool.|
+Celestial Prism|Limited Edition Beta|236|U|{3}|Artifact|||{2}, {tap}: Add one mana of any color.|
Chaos Orb|Limited Edition Beta|237|R|{2}|Artifact|||{1}, {tap}: If Chaos Orb is on the battlefield, flip Chaos Orb onto the battlefield from a height of at least one foot. If Chaos Orb turns over completely at least once during the flip, destroy all nontoken permanents it touches. Then destroy Chaos Orb.|
Clockwork Beast|Limited Edition Beta|238|R|{6}|Artifact Creature - Beast|0|4|Clockwork Beast enters the battlefield with seven +1/+0 counters on it.$At end of combat, if Clockwork Beast attacked or blocked this combat, remove a +1/+0 counter from it.${X}, {tap}: Put up to X +1/+0 counters on Clockwork Beast. This ability can't cause the total number of +1/+0 counters on Clockwork Beast to be greater than seven. Activate this ability only during your upkeep.|
Conservator|Limited Edition Beta|239|U|{4}|Artifact|||{3}, {tap}: Prevent the next 2 damage that would be dealt to you this turn.|
@@ -11767,7 +11767,7 @@ Mox Ruby|Limited Edition Beta|266|R|{0}|Artifact|||{tap}: Add {R}.|
Mox Sapphire|Limited Edition Beta|267|R|{0}|Artifact|||{tap}: Add {U}.|
Nevinyrral's Disk|Limited Edition Beta|268|R|{4}|Artifact|||Nevinyrral's Disk enters the battlefield tapped.${1}, {tap}: Destroy all artifacts, creatures, and enchantments.|
Obsianus Golem|Limited Edition Beta|269|U|{6}|Artifact Creature - Golem|4|6||
-Rod of Ruin|Limited Edition Beta|270|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to target creature or player.|
+Rod of Ruin|Limited Edition Beta|270|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to any target.|
Sol Ring|Limited Edition Beta|271|U|{1}|Artifact|||{tap}: Add {C}{C}.|
Soul Net|Limited Edition Beta|272|U|{1}|Artifact|||Whenever a creature dies, you may pay {1}. If you do, you gain 1 life.|
Sunglasses of Urza|Limited Edition Beta|273|R|{3}|Artifact|||You may spend white mana as though it were red mana.|
@@ -11823,7 +11823,7 @@ Ghostly Changeling|Lorwyn|116|U|{2}{B}|Creature - Shapeshifter|2|2|Changeling (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.)|
Hornet Harasser|Lorwyn|118|C|{2}{B}{B}|Creature - Goblin Shaman|2|2|When Hornet Harasser dies, target creature gets -2/-2 until end of turn.|
Hunter of Eyeblights|Lorwyn|119|U|{3}{B}{B}|Creature - Elf Assassin|3|3|When Hunter of Eyeblights enters the battlefield, put a +1/+1 counter on target creature you don't control.${2}{B}, {tap}: Destroy target creature with a counter on it.|
-Dawnfluke|Lorwyn|12|C|{3}{W}|Creature - Elemental|0|3|Flash$When Dawnfluke enters the battlefield, prevent the next 3 damage that would be dealt to target creature or player this turn.$Evoke {W} (You may cast this spell for its evoke cost. If you do, it's sacrificed when it enters the battlefield.)|
+Dawnfluke|Lorwyn|12|C|{3}{W}|Creature - Elemental|0|3|Flash$When Dawnfluke enters the battlefield, prevent the next 3 damage that would be dealt to any target this turn.$Evoke {W} (You may cast this spell for its evoke cost. If you do, it's sacrificed when it enters the battlefield.)|
Knucklebone Witch|Lorwyn|120|R|{B}|Creature - Goblin Shaman|1|1|Whenever a Goblin you control dies, you may put a +1/+1 counter on Knucklebone Witch.|
Liliana Vess|Lorwyn|121|R|{3}{B}{B}|Legendary Planeswalker - Liliana|||+1: Target player discards a card.$-2: Search your library for a card, then shuffle your library and put that card on top of it.$-8: Put all creature cards from all graveyards onto the battlefield under your control.|
Lys Alana Scarblade|Lorwyn|122|U|{2}{B}|Creature - Elf Assassin|1|1|{tap}, Discard an Elf card: Target creature gets -X/-X until end of turn, where X is the number of Elves you control.|
@@ -11876,7 +11876,7 @@ Fire-Belly Changeling|Lorwyn|164|C|{1}{R}|Creature - Shapeshifter|1|1|Changeling
Flamekin Bladewhirl|Lorwyn|165|U|{R}|Creature - Elemental Warrior|2|1|As an additional cost to cast Flamekin Bladewhirl, reveal an Elemental card from your hand or pay {3}.|
Flamekin Brawler|Lorwyn|166|C|{R}|Creature - Elemental Warrior|0|2|{R}: Flamekin Brawler gets +1/+0 until end of turn.|
Flamekin Harbinger|Lorwyn|167|U|{R}|Creature - Elemental Shaman|1|1|When Flamekin Harbinger enters the battlefield, you may search your library for an Elemental card, reveal it, then shuffle your library and put that card on top of it.|
-Flamekin Spitfire|Lorwyn|168|U|{1}{R}|Creature - Elemental Shaman|1|1|{3}{R}: Flamekin Spitfire deals 1 damage to target creature or player.|
+Flamekin Spitfire|Lorwyn|168|U|{1}{R}|Creature - Elemental Shaman|1|1|{3}{R}: Flamekin Spitfire deals 1 damage to any target.|
Giant Harbinger|Lorwyn|169|U|{4}{R}|Creature - Giant Shaman|3|4|When Giant Harbinger enters the battlefield, you may search your library for a Giant card, reveal it, then shuffle your library and put that card on top of it.|
Goldmeadow Harrier|Lorwyn|17|C|{W}|Creature - Kithkin Soldier|1|1|{W}, {tap}: Tap target creature.|
Giant's Ire|Lorwyn|170|C|{3}{R}|Tribal Sorcery - Giant|||Giant's Ire deals 4 damage to target player. If you control a Giant, draw a card.|
@@ -11895,17 +11895,17 @@ Inner-Flame Acolyte|Lorwyn|181|C|{1}{R}{R}|Creature - Elemental Shaman|2|2|When
Inner-Flame Igniter|Lorwyn|182|U|{2}{R}|Creature - Elemental Warrior|2|2|{2}{R}: Creatures you control get +1/+0 until end of turn. If this is the third time this ability has resolved this turn, creatures you control gain first strike until end of turn.|
Lash Out|Lorwyn|183|C|{1}{R}|Instant|||Lash Out deals 3 damage to target creature. Clash with an opponent. If you win, Lash Out deals 3 damage to that creature's controller. (Each clashing player reveals the top card of 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.)|
Lowland Oaf|Lorwyn|184|C|{3}{R}|Creature - Giant Warrior|3|3|{tap}: Target Goblin creature you control gets +1/+0 and gains flying until end of turn. Sacrifice that creature at the beginning of the next end step.|
-Mudbutton Torchrunner|Lorwyn|185|C|{2}{R}|Creature - Goblin Warrior|1|1|When Mudbutton Torchrunner dies, it deals 3 damage to target creature or player.|
-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.|
+Mudbutton Torchrunner|Lorwyn|185|C|{2}{R}|Creature - Goblin Warrior|1|1|When Mudbutton Torchrunner dies, it deals 3 damage to any target.|
+Needle Drop|Lorwyn|186|C|{R}|Instant|||Needle Drop deals 1 damage to any target that was dealt damage this turn.$Draw a card.|
Nova Chaser|Lorwyn|187|R|{3}{R}|Creature - Elemental Warrior|10|2|Trample$Champion an Elemental (When this enters the battlefield, sacrifice it unless you exile another Elemental you control. When this leaves the battlefield, that card returns to the battlefield.)|
Rebellion of the Flamekin|Lorwyn|188|U|{3}{R}|Tribal Enchantment - Elemental|||Whenever you clash, you may pay {1}. If you do, put a 3/1 red Elemental Shaman creature token onto the battlefield. If you won, that token gains haste until end of turn. (This ability triggers after the clash ends.)|
-Smokebraider|Lorwyn|189|C|{1}{R}|Creature - Elemental Shaman|1|1|{tap}: Add two mana in any combination of colors to your mana pool. Spend this mana only to cast Elemental spells or activate abilities of Elementals.|
+Smokebraider|Lorwyn|189|C|{1}{R}|Creature - Elemental Shaman|1|1|{tap}: Add two mana in any combination of colors. Spend this mana only to cast Elemental spells or activate abilities of Elementals.|
Harpoon Sniper|Lorwyn|19|U|{2}{W}|Creature - Merfolk Archer|2|2|{W}, {tap}: Harpoon Sniper deals X damage to target attacking or blocking creature, where X is the number of Merfolk you control.|
Soulbright Flamekin|Lorwyn|190|C|{1}{R}|Creature - Elemental Shaman|2|1|{2}: Target creature gains trample until end of turn. If this is the third time this ability has resolved this turn, you may add {R}{R}{R}{R}{R}{R}{R}{R}.|
Stinkdrinker Daredevil|Lorwyn|191|C|{2}{R}|Creature - Goblin Rogue|1|3|Giant spells you cast cost {2} less to cast.|
Sunrise Sovereign|Lorwyn|192|R|{5}{R}|Creature - Giant Warrior|5|5|Other Giant creatures you control get +2/+2 and have trample.|
-Tar Pitcher|Lorwyn|193|U|{3}{R}|Creature - Goblin Shaman|2|2|{tap}, Sacrifice a Goblin: Tar Pitcher deals 2 damage to target creature or player.|
-Tarfire|Lorwyn|194|C|{R}|Tribal Instant - Goblin|||Tarfire deals 2 damage to target creature or player.|
+Tar Pitcher|Lorwyn|193|U|{3}{R}|Creature - Goblin Shaman|2|2|{tap}, Sacrifice a Goblin: Tar Pitcher deals 2 damage to any target.|
+Tarfire|Lorwyn|194|C|{R}|Tribal Instant - Goblin|||Tarfire deals 2 damage to any target.|
Thundercloud Shaman|Lorwyn|195|U|{3}{R}{R}|Creature - Giant Shaman|4|4|When Thundercloud Shaman enters the battlefield, it deals damage equal to the number of Giants you control to each non-Giant creature.|
Wild Ricochet|Lorwyn|196|R|{2}{R}{R}|Instant|||You may choose new targets for target instant or sorcery spell. Then copy that spell. You may choose new targets for the copy.|
Battlewand Oak|Lorwyn|197|C|{2}{G}|Creature - Treefolk Warrior|1|3|Whenever a Forest enters the battlefield under your control, Battlewand Oak gets +2/+2 until end of turn.$Whenever you cast a Treefolk spell, Battlewand Oak gets +2/+2 until end of turn.|
@@ -11920,7 +11920,7 @@ Dauntless Dourbark|Lorwyn|203|R|{3}{G}|Creature - Treefolk Warrior|*|*|Dauntless
Elvish Branchbender|Lorwyn|204|C|{2}{G}|Creature - Elf Druid|2|2|{tap}: Until end of turn, target Forest becomes an X/X Treefolk creature in addition to its other types, where X is the number of Elves you control.|
Elvish Eulogist|Lorwyn|205|C|{G}|Creature - Elf Shaman|1|1|Sacrifice Elvish Eulogist: You gain 1 life for each Elf card in your graveyard.|
Elvish Handservant|Lorwyn|206|C|{G}|Creature - Elf Warrior|1|1|Whenever a player casts a Giant spell, you may put a +1/+1 counter on Elvish Handservant.|
-Elvish Harbinger|Lorwyn|207|U|{2}{G}|Creature - Elf Druid|1|2|When Elvish Harbinger enters the battlefield, you may search your library for an Elf card, reveal it, then shuffle your library and put that card on top of it.${tap}: Add one mana of any color to your mana pool.|
+Elvish Harbinger|Lorwyn|207|U|{2}{G}|Creature - Elf Druid|1|2|When Elvish Harbinger enters the battlefield, you may search your library for an Elf card, reveal it, then shuffle your library and put that card on top of it.${tap}: Add one mana of any color.|
Elvish Promenade|Lorwyn|208|U|{3}{G}|Tribal Sorcery - Elf|||Put a 1/1 green Elf Warrior creature token onto the battlefield for each Elf you control.|
Epic Proportions|Lorwyn|209|R|{4}{G}{G}|Enchantment - Aura|||Flash$Enchant creature$Enchanted creature gets +5/+5 and has trample.|
Hoofprints of the Stag|Lorwyn|21|R|{1}{W}|Tribal Enchantment - Elemental|||Whenever you draw a card, you may put a hoofprint counter on Hoofprints of the Stag.${2}{W}, Remove four hoofprint counters from Hoofprints of the Stag: Put a 4/4 white Elemental creature token with flying onto the battlefield. Activate this ability only during your turn.|
@@ -11976,11 +11976,11 @@ Colfenor's Urn|Lorwyn|254|R|{3}|Artifact|||Whenever a creature with toughness 4
Deathrender|Lorwyn|255|R|{4}|Artifact - Equipment|||Equipped creature gets +2/+2.$Whenever equipped creature dies, you may put a creature card from your hand onto the battlefield and attach Deathrender to it.$Equip {2}|
Dolmen Gate|Lorwyn|256|R|{2}|Artifact|||Prevent all combat damage that would be dealt to attacking creatures you control.|
Herbal Poultice|Lorwyn|257|C|{0}|Artifact|||{3}, Sacrifice Herbal Poultice: Regenerate target creature.|
-Moonglove Extract|Lorwyn|258|C|{3}|Artifact|||Sacrifice Moonglove Extract: Moonglove Extract deals 2 damage to target creature or player.|
+Moonglove Extract|Lorwyn|258|C|{3}|Artifact|||Sacrifice Moonglove Extract: Moonglove Extract deals 2 damage to any target.|
Rings of Brighthearth|Lorwyn|259|R|{3}|Artifact|||Whenever you activate an ability, if it isn't a mana ability, you may pay {2}. If you do, copy that ability. You may choose new targets for the copy.|
Kithkin Harbinger|Lorwyn|26|U|{2}{W}|Creature - Kithkin Wizard|1|3|When Kithkin Harbinger enters the battlefield, you may search your library for a Kithkin card, reveal it, then shuffle your library and put that card on top of it.|
Runed Stalactite|Lorwyn|260|C|{1}|Artifact - Equipment|||Equipped creature gets +1/+1 and is every creature type.$Equip {2}|
-Springleaf Drum|Lorwyn|261|C|{1}|Artifact|||{tap}, Tap an untapped creature you control: Add one mana of any color to your mana pool.|
+Springleaf Drum|Lorwyn|261|C|{1}|Artifact|||{tap}, Tap an untapped creature you control: Add one mana of any color.|
Thorn of Amethyst|Lorwyn|262|R|{2}|Artifact|||Noncreature spells cost {1} more to cast.|
Thousand-Year Elixir|Lorwyn|263|R|{3}|Artifact|||You may activate abilities of creatures you control as though those creatures had haste.${1}, {tap}: Untap target creature.|
Twinning Glass|Lorwyn|264|R|{4}|Artifact|||{1}, {tap}: You may cast a nonland card from your hand without paying its mana cost if it has the same name as a spell that was cast this turn.|
@@ -11989,17 +11989,17 @@ Ancient Amphitheater|Lorwyn|266|R||Land|||As Ancient Amphitheater enters the bat
Auntie's Hovel|Lorwyn|267|R||Land|||As Auntie's Hovel enters the battlefield, you may reveal a Goblin card from your hand. If you don't, Auntie's Hovel enters the battlefield tapped.${tap}: Add {B} or {R}.|
Gilt-Leaf Palace|Lorwyn|268|R||Land|||As Gilt-Leaf Palace enters the battlefield, you may reveal an Elf card from your hand. If you don't, Gilt-Leaf Palace enters the battlefield tapped.${tap}: Add {B} or {G}.|
Howltooth Hollow|Lorwyn|269|R||Land|||Hideaway (This land enters the battlefield tapped. When it does, look at the top four cards of your library, exile one face down, then put the rest on the bottom of your library.)${tap}: Add {B}.${B}, {tap}: You may play the exiled card without paying its mana cost if each player has no cards in hand.|
-Kithkin Healer|Lorwyn|27|C|{2}{W}|Creature - Kithkin Cleric|2|2|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Kithkin Healer|Lorwyn|27|C|{2}{W}|Creature - Kithkin Cleric|2|2|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.|
Mosswort Bridge|Lorwyn|270|R||Land|||Hideaway (This land enters the battlefield tapped. When it does, look at the top four cards of your library, exile one face down, then put the rest on the bottom of your library.)${tap}: Add {G}.${G}, {tap}: You may play the exiled card without paying its mana cost if creatures you control have total power 10 or greater.|
Secluded Glen|Lorwyn|271|R||Land|||As Secluded Glen enters the battlefield, you may reveal a Faerie card from your hand. If you don't, Secluded Glen enters the battlefield tapped.${tap}: Add {U} or {B}.|
Shelldock Isle|Lorwyn|272|R||Land|||Hideaway (This land enters the battlefield tapped. When it does, look at the top four cards of your library, exile one face down, then put the rest on the bottom of your library.)${tap}: Add {U}.${U}, {tap}: You may play the exiled card without paying its mana cost if a library has twenty or fewer cards in it.|
-Shimmering Grotto|Lorwyn|273|C||Land|||{tap}: Add {C}.${1}, {tap}: Add one mana of any color to your mana pool.|
+Shimmering Grotto|Lorwyn|273|C||Land|||{tap}: Add {C}.${1}, {tap}: Add one mana of any color.|
Spinerock Knoll|Lorwyn|274|R||Land|||Hideaway (This land enters the battlefield tapped. When it does, look at the top four cards of your library, exile one face down, then put the rest on the bottom of your library.)${tap}: Add {R}.${R}, {tap}: You may play the exiled card without paying its mana cost if an opponent was dealt 7 or more damage this turn.|
-Vivid Crag|Lorwyn|275|U||Land|||Vivid Crag enters the battlefield tapped with two charge counters on it.${tap}: Add {R}.${tap}, Remove a charge counter from Vivid Crag: Add one mana of any color to your mana pool.|
-Vivid Creek|Lorwyn|276|U||Land|||Vivid Creek enters the battlefield tapped with two charge counters on it.${tap}: Add {U}.${tap}, Remove a charge counter from Vivid Creek: Add one mana of any color to your mana pool.|
-Vivid Grove|Lorwyn|277|U||Land|||Vivid Grove enters the battlefield tapped with two charge counters on it.${tap}: Add {G}.${tap}, Remove a charge counter from Vivid Grove: Add one mana of any color to your mana pool.|
-Vivid Marsh|Lorwyn|278|U||Land|||Vivid Marsh enters the battlefield tapped with two charge counters on it.${tap}: Add {B}.${tap}, Remove a charge counter from Vivid Marsh: Add one mana of any color to your mana pool.|
-Vivid Meadow|Lorwyn|279|U||Land|||Vivid Meadow enters the battlefield tapped with two charge counters on it.${tap}: Add {W}.${tap}, Remove a charge counter from Vivid Meadow: Add one mana of any color to your mana pool.|
+Vivid Crag|Lorwyn|275|U||Land|||Vivid Crag enters the battlefield tapped with two charge counters on it.${tap}: Add {R}.${tap}, Remove a charge counter from Vivid Crag: Add one mana of any color.|
+Vivid Creek|Lorwyn|276|U||Land|||Vivid Creek enters the battlefield tapped with two charge counters on it.${tap}: Add {U}.${tap}, Remove a charge counter from Vivid Creek: Add one mana of any color.|
+Vivid Grove|Lorwyn|277|U||Land|||Vivid Grove enters the battlefield tapped with two charge counters on it.${tap}: Add {G}.${tap}, Remove a charge counter from Vivid Grove: Add one mana of any color.|
+Vivid Marsh|Lorwyn|278|U||Land|||Vivid Marsh enters the battlefield tapped with two charge counters on it.${tap}: Add {B}.${tap}, Remove a charge counter from Vivid Marsh: Add one mana of any color.|
+Vivid Meadow|Lorwyn|279|U||Land|||Vivid Meadow enters the battlefield tapped with two charge counters on it.${tap}: Add {W}.${tap}, Remove a charge counter from Vivid Meadow: Add one mana of any color.|
Knight of Meadowgrain|Lorwyn|28|U|{W}{W}|Creature - Kithkin Knight|2|2|First strike$Lifelink (Damage dealt by this creature also causes you to gain that much life.)|
Wanderwine Hub|Lorwyn|280|R||Land|||As Wanderwine Hub enters the battlefield, you may reveal a Merfolk card from your hand. If you don't, Wanderwine Hub enters the battlefield tapped.${tap}: Add {W} or {U}.|
Windbrisk Heights|Lorwyn|281|R||Land|||Hideaway (This land enters the battlefield tapped. When it does, look at the top four cards of your library, exile one face down, then put the rest on the bottom of your library.)${tap}: Add {W}.${W}, {tap}: You may play the exiled card without paying its mana cost if you attacked with three or more creatures this turn.|
@@ -12144,29 +12144,29 @@ Earthquake|Magic 2010|134|R|{X}{R}|Sorcery|||Earthquake deals X damage to each c
Fiery Hellhound|Magic 2010|135|C|{1}{R}{R}|Creature - Elemental Hound|2|2|{R}: Fiery Hellhound gets +1/+0 until end of turn.|
Fireball|Magic 2010|136|U|{X}{R}|Sorcery|||Fireball deals X damage divided evenly, rounded down, among any number of target creatures and/or players.$Fireball costs {1} more to cast for each target beyond the first.|
Firebreathing|Magic 2010|137|C|{R}|Enchantment - Aura|||Enchant creature${R}: Enchanted creature gets +1/+0 until end of turn.|
-Goblin Artillery|Magic 2010|138|U|{1}{R}{R}|Creature - Goblin Warrior|1|3|{tap}: Goblin Artillery deals 2 damage to target creature or player and 3 damage to you.|
+Goblin Artillery|Magic 2010|138|U|{1}{R}{R}|Creature - Goblin Warrior|1|3|{tap}: Goblin Artillery deals 2 damage to any target and 3 damage to you.|
Goblin Chieftain|Magic 2010|139|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.|
-Harm's Way|Magic 2010|14|U|{W}|Instant|||The next 2 damage that a source of your choice would deal to you and/or permanents you control this turn is dealt to target creature or player instead.|
+Harm's Way|Magic 2010|14|U|{W}|Instant|||The next 2 damage that a source of your choice would deal to you and/or permanents you control this turn is dealt to any target instead.|
Goblin Piker|Magic 2010|140|C|{1}{R}|Creature - Goblin Warrior|2|1||
Ignite Disorder|Magic 2010|141|U|{1}{R}|Instant|||Ignite Disorder deals 3 damage divided as you choose among one, two, or three target white and/or blue creatures.|
Inferno Elemental|Magic 2010|142|U|{4}{R}{R}|Creature - Elemental|4|4|Whenever Inferno Elemental blocks or becomes blocked by a creature, Inferno Elemental deals 3 damage to that creature.|
Jackal Familiar|Magic 2010|143|C|{R}|Creature - Hound|2|2|Jackal Familiar can't attack or block alone.|
Kindled Fury|Magic 2010|144|C|{R}|Instant|||Target creature gets +1/+0 and gains first strike until end of turn. (It deals combat damage before creatures without first strike.)|
Lava Axe|Magic 2010|145|C|{4}{R}|Sorcery|||Lava Axe deals 5 damage to target player.|
-Lightning Bolt|Magic 2010|146|C|{R}|Instant|||Lightning Bolt deals 3 damage to target creature or player.|
+Lightning Bolt|Magic 2010|146|C|{R}|Instant|||Lightning Bolt deals 3 damage to any target.|
Lightning Elemental|Magic 2010|147|C|{3}{R}|Creature - Elemental|4|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)|
Magma Phoenix|Magic 2010|148|R|{3}{R}{R}|Creature - Phoenix|3|3|Flying$When Magma Phoenix dies, it deals 3 damage to each creature and each player.${3}{R}{R}: Return Magma Phoenix from your graveyard to your hand.|
Manabarbs|Magic 2010|149|R|{3}{R}|Enchantment|||Whenever a player taps a land for mana, Manabarbs deals 1 damage to that player.|
Holy Strength|Magic 2010|15|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+2.|
Panic Attack|Magic 2010|150|C|{2}{R}|Sorcery|||Up to three target creatures can't block this turn.|
-Prodigal Pyromancer|Magic 2010|151|U|{2}{R}|Creature - Human Wizard|1|1|{tap}: Prodigal Pyromancer deals 1 damage to target creature or player.|
+Prodigal Pyromancer|Magic 2010|151|U|{2}{R}|Creature - Human Wizard|1|1|{tap}: Prodigal Pyromancer deals 1 damage to any target.|
Pyroclasm|Magic 2010|152|U|{1}{R}|Sorcery|||Pyroclasm deals 2 damage to each creature.|
Raging Goblin|Magic 2010|153|C|{R}|Creature - Goblin Berserker|1|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)|
Seismic Strike|Magic 2010|154|C|{2}{R}|Instant|||Seismic Strike deals damage to target creature equal to the number of Mountains you control.|
Shatter|Magic 2010|155|C|{1}{R}|Instant|||Destroy target artifact.|
Shivan Dragon|Magic 2010|156|R|{4}{R}{R}|Creature - Dragon|5|5|Flying${R}: Shivan Dragon gets +1/+0 until end of turn.|
-Siege-Gang Commander|Magic 2010|157|R|{3}{R}{R}|Creature - Goblin|2|2|When Siege-Gang Commander enters the battlefield, put three 1/1 red Goblin creature tokens onto the battlefield.${1}{R}, Sacrifice a Goblin: Siege-Gang Commander deals 2 damage to target creature or player.|
-Sparkmage Apprentice|Magic 2010|158|C|{1}{R}|Creature - Human Wizard|1|1|When Sparkmage Apprentice enters the battlefield, it deals 1 damage to target creature or player.|
+Siege-Gang Commander|Magic 2010|157|R|{3}{R}{R}|Creature - Goblin|2|2|When Siege-Gang Commander enters the battlefield, put three 1/1 red Goblin creature tokens onto the battlefield.${1}{R}, Sacrifice a Goblin: Siege-Gang Commander deals 2 damage to any target.|
+Sparkmage Apprentice|Magic 2010|158|C|{1}{R}|Creature - Human Wizard|1|1|When Sparkmage Apprentice enters the battlefield, it deals 1 damage to any target.|
Stone Giant|Magic 2010|159|U|{2}{R}{R}|Creature - Giant|3|4|{tap}: Target creature you control with toughness less than Stone Giant's power gains flying until end of turn. Destroy that creature at the beginning of the next end step.|
Honor of the Pure|Magic 2010|16|R|{1}{W}|Enchantment|||White creatures you control get +1/+1.|
Trumpet Blast|Magic 2010|160|C|{2}{R}|Instant|||Attacking creatures get +2/+0 until end of turn.|
@@ -12177,7 +12177,7 @@ Yawning Fissure|Magic 2010|164|C|{4}{R}|Sorcery|||Each opponent sacrifices a lan
Acidic Slime|Magic 2010|165|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.|
Ant Queen|Magic 2010|166|R|{3}{G}{G}|Creature - Insect|5|5|{1}{G}: Put a 1/1 green Insect creature token onto the battlefield.|
Awakener Druid|Magic 2010|167|U|{2}{G}|Creature - Human Druid|1|1|When Awakener Druid enters the battlefield, target Forest becomes a 4/5 green Treefolk creature for as long as Awakener Druid remains on the battlefield. It's still a land.|
-Birds of Paradise|Magic 2010|168|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color to your mana pool.|
+Birds of Paradise|Magic 2010|168|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color.|
Borderland Ranger|Magic 2010|169|C|{2}{G}|Creature - Human Scout|2|2|When Borderland Ranger enters the battlefield, you may search your library for a basic land card, reveal it, and put it into your hand. If you do, shuffle your library.|
Indestructibility|Magic 2010|17|R|{3}{W}|Enchantment - Aura|||Enchant permanent$Enchanted permanent is indestructible. (Effects that say "destroy" don't destroy that permanent. An indestructible creature can't be destroyed by damage.)|
Bountiful Harvest|Magic 2010|170|C|{4}{G}|Sorcery|||You gain 1 life for each land you control.|
@@ -12234,7 +12234,7 @@ Mirror of Fate|Magic 2010|215|R|{5}|Artifact|||{tap}, Sacrifice Mirror of Fate:
Ornithopter|Magic 2010|216|U|{0}|Artifact Creature - Thopter|0|2|Flying|
Pithing Needle|Magic 2010|217|R|{1}|Artifact|||As Pithing Needle enters the battlefield, name a card.$Activated abilities of sources with the chosen name can't be activated unless they're mana abilities.|
Platinum Angel|Magic 2010|218|M|{7}|Artifact Creature - Angel|4|4|Flying$You can't lose the game and your opponents can't win the game.|
-Rod of Ruin|Magic 2010|219|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to target creature or player.|
+Rod of Ruin|Magic 2010|219|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to any target.|
Pacifism|Magic 2010|22|C|{1}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature can't attack or block.|
Spellbook|Magic 2010|220|U|{0}|Artifact|||You have no maximum hand size.|
Whispersilk Cloak|Magic 2010|221|U|{3}|Artifact - Equipment|||Equipped creature is unblockable and has shroud.$Equip {2}|
@@ -12338,7 +12338,7 @@ Black Knight|Magic 2010|85|U|{B}{B}|Creature - Human Knight|2|2|First strike
Bog Wraith|Magic 2010|86|U|{3}{B}|Creature - Wraith|3|3|Swampwalk (This creature is unblockable as long as defending player controls a Swamp.)|
Cemetery Reaper|Magic 2010|87|R|{1}{B}{B}|Creature - Zombie|2|2|Other Zombie creatures you control get +1/+1.${2}{B}, {tap}: Exile target creature card from a graveyard. Put a 2/2 black Zombie creature token onto the battlefield.|
Child of Night|Magic 2010|88|C|{1}{B}|Creature - Vampire|2|1|Lifelink (Damage dealt by this creature also causes you to gain that much life.)|
-Consume Spirit|Magic 2010|89|U|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Consume Spirit deals X damage to target creature or player and you gain X life.|
+Consume Spirit|Magic 2010|89|U|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Consume Spirit deals X damage to any target and you gain X life.|
Elite Vanguard|Magic 2010|9|U|{W}|Creature - Human Soldier|2|1||
Deathmark|Magic 2010|90|U|{B}|Sorcery|||Destroy target green or white creature.|
Diabolic Tutor|Magic 2010|91|U|{2}{B}{B}|Sorcery|||Search your library for a card and put that card into your hand. Then shuffle your library.|
@@ -12390,11 +12390,11 @@ Cyclops Gladiator|Magic 2011|131|R|{1}{R}{R}{R}|Creature - Cyclops Warrior|4|4|W
Demolish|Magic 2011|132|C|{3}{R}|Sorcery|||Destroy target artifact or land.|
Destructive Force|Magic 2011|133|R|{5}{R}{R}|Sorcery|||Each player sacrifices five lands. Destructive Force deals 5 damage to each creature.|
Earth Servant|Magic 2011|134|U|{5}{R}|Creature - Elemental|4|4|Earth Servant gets +0/+1 for each Mountain you control.|
-Ember Hauler|Magic 2011|135|U|{R}{R}|Creature - Goblin|2|2|{1}, Sacrifice Ember Hauler: Ember Hauler deals 2 damage to target creature or player.|
+Ember Hauler|Magic 2011|135|U|{R}{R}|Creature - Goblin|2|2|{1}, Sacrifice Ember Hauler: Ember Hauler deals 2 damage to any target.|
Fiery Hellhound|Magic 2011|136|C|{1}{R}{R}|Creature - Elemental Hound|2|2|{R}: Fiery Hellhound gets +1/+0 until end of turn.|
Fire Servant|Magic 2011|137|U|{3}{R}{R}|Creature - Elemental|4|3|If a red instant or sorcery spell you control would deal damage, it deals double that damage instead.|
Fireball|Magic 2011|138|U|{X}{R}|Sorcery|||Fireball deals X damage divided evenly, rounded down, among any number of target creatures and/or players.$Fireball costs {1} more to cast for each target beyond the first.|
-Fling|Magic 2011|139|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.|
+Fling|Magic 2011|139|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 any target.|
Excommunicate|Magic 2011|14|C|{2}{W}|Sorcery|||Put target creature on top of its owner's library.|
Goblin Balloon Brigade|Magic 2011|140|C|{R}|Creature - Goblin Warrior|1|1|{R}: Goblin Balloon Brigade gains flying until end of turn.|
Goblin Chieftain|Magic 2011|141|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.|
@@ -12405,11 +12405,11 @@ Incite|Magic 2011|145|C|{R}|Instant|||Target creature becomes red until end of t
Inferno Titan|Magic 2011|146|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.|
Lava Axe|Magic 2011|147|C|{4}{R}|Sorcery|||Lava Axe deals 5 damage to target player.|
Leyline of Punishment|Magic 2011|148|R|{2}{R}{R}|Enchantment|||If Leyline of Punishment is in your opening hand, you may begin the game with it on the battlefield.$Players can't gain life.$Damage can't be prevented.|
-Lightning Bolt|Magic 2011|149|C|{R}|Instant|||Lightning Bolt deals 3 damage to target creature or player.|
+Lightning Bolt|Magic 2011|149|C|{R}|Instant|||Lightning Bolt deals 3 damage to any target.|
Goldenglow Moth|Magic 2011|15|C|{W}|Creature - Insect|0|1|Flying$Whenever Goldenglow Moth blocks, you may gain 4 life.|
Magma Phoenix|Magic 2011|150|R|{3}{R}{R}|Creature - Phoenix|3|3|Flying$When Magma Phoenix dies, it deals 3 damage to each creature and each player.${3}{R}{R}: Return Magma Phoenix from your graveyard to your hand.|
Manic Vandal|Magic 2011|151|C|{2}{R}|Creature - Human Warrior|2|2|When Manic Vandal enters the battlefield, destroy target artifact.|
-Prodigal Pyromancer|Magic 2011|152|U|{2}{R}|Creature - Human Wizard|1|1|{tap}: Prodigal Pyromancer deals 1 damage to target creature or player.|
+Prodigal Pyromancer|Magic 2011|152|U|{2}{R}|Creature - Human Wizard|1|1|{tap}: Prodigal Pyromancer deals 1 damage to any target.|
Pyretic Ritual|Magic 2011|153|C|{1}{R}|Instant|||Add {R}{R}{R}.|
Pyroclasm|Magic 2011|154|U|{1}{R}|Sorcery|||Pyroclasm deals 2 damage to each creature.|
Reverberate|Magic 2011|155|R|{R}{R}|Instant|||Copy target instant or sorcery spell. You may choose new targets for the copy.|
@@ -12423,7 +12423,7 @@ Acidic Slime|Magic 2011|161|U|{3}{G}{G}|Creature - Ooze|2|2|Deathtouch (Any a
Autumn's Veil|Magic 2011|162|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.|
Awakener Druid|Magic 2011|163|U|{2}{G}|Creature - Human Druid|1|1|When Awakener Druid enters the battlefield, target Forest becomes a 4/5 green Treefolk creature for as long as Awakener Druid remains on the battlefield. It's still a land.|
Back to Nature|Magic 2011|164|U|{1}{G}|Instant|||Destroy all enchantments.|
-Birds of Paradise|Magic 2011|165|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color to your mana pool.|
+Birds of Paradise|Magic 2011|165|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color.|
Brindle Boar|Magic 2011|166|C|{2}{G}|Creature - Boar|2|2|Sacrifice Brindle Boar: You gain 4 life.|
Cudgel Troll|Magic 2011|167|U|{2}{G}{G}|Creature - Troll|4|3|{G}: Regenerate Cudgel Troll. (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.)|
Cultivate|Magic 2011|168|C|{2}{G}|Sorcery|||Search your library for up to two basic land cards, reveal those cards, and put one onto the battlefield tapped and the other into your hand. Then shuffle your library.|
@@ -12441,7 +12441,7 @@ Giant Growth|Magic 2011|178|C|{G}|Instant|||Target creature gets +3/+3 until end
Giant Spider|Magic 2011|179|C|{3}{G}|Creature - Spider|2|4|Reach (This creature can block creatures with flying.)|
Infantry Veteran|Magic 2011|18|C|{W}|Creature - Human Soldier|1|1|{tap}: Target attacking creature gets +1/+1 until end of turn.|
Greater Basilisk|Magic 2011|180|C|{3}{G}{G}|Creature - Basilisk|3|5|Deathtouch (Any amount of damage this deals to a creature is enough to destroy it.)|
-Hornet Sting|Magic 2011|181|C|{G}|Instant|||Hornet Sting deals 1 damage to target creature or player.|
+Hornet Sting|Magic 2011|181|C|{G}|Instant|||Hornet Sting deals 1 damage to any target.|
Hunters' Feast|Magic 2011|182|C|{3}{G}|Sorcery|||Any number of target players each gain 6 life.|
Leyline of Vitality|Magic 2011|183|R|{2}{G}{G}|Enchantment|||If Leyline of Vitality is in your opening hand, you may begin the game with it on the battlefield.$Creatures you control get +0/+1.$Whenever a creature enters the battlefield under your control, you may gain 1 life.|
Llanowar Elves|Magic 2011|184|C|{G}|Creature - Elf Druid|1|1|{tap}: Add {G}.|
@@ -12482,7 +12482,7 @@ Steel Overseer|Magic 2011|214|R|{2}|Artifact Creature - Construct|1|1|{tap}: Put
Stone Golem|Magic 2011|215|U|{5}|Artifact Creature - Golem|4|4||
Sword of Vengeance|Magic 2011|216|R|{3}|Artifact - Equipment|||Equipped creature gets +2/+0 and has first strike, vigilance, trample, and haste.$Equip {3} ({3}: Attach to target creature you control. Equip only as a sorcery.)|
Temple Bell|Magic 2011|217|R|{3}|Artifact|||{tap}: Each player draws a card.|
-Triskelion|Magic 2011|218|R|{6}|Artifact Creature - Construct|1|1|Triskelion enters the battlefield with three +1/+1 counters on it.$Remove a +1/+1 counter from Triskelion: Triskelion deals 1 damage to target creature or player.|
+Triskelion|Magic 2011|218|R|{6}|Artifact Creature - Construct|1|1|Triskelion enters the battlefield with three +1/+1 counters on it.$Remove a +1/+1 counter from Triskelion: Triskelion deals 1 damage to any target.|
Voltaic Key|Magic 2011|219|U|{1}|Artifact|||{1}, {tap}: Untap target artifact.|
Mighty Leap|Magic 2011|22|C|{1}{W}|Instant|||Target creature gets +2/+2 and gains flying until end of turn.|
Warlord's Axe|Magic 2011|220|U|{3}|Artifact - Equipment|||Equipped creature gets +3/+1.$Equip {4} ({4}: Attach to target creature you control. Equip only as a sorcery.)|
@@ -12587,7 +12587,7 @@ Bloodthrone Vampire|Magic 2011|85|C|{1}{B}|Creature - Vampire|1|1|Sacrifice a cr
Bog Raiders|Magic 2011|86|C|{2}{B}|Creature - Zombie|2|2|Swampwalk (This creature is unblockable as long as defending player controls a Swamp.)|
Captivating Vampire|Magic 2011|87|R|{1}{B}{B}|Creature - Vampire|2|2|Other Vampire creatures you control get +1/+1.$Tap five untapped Vampires you control: Gain control of target creature. It becomes a Vampire in addition to its other types.|
Child of Night|Magic 2011|88|C|{1}{B}|Creature - Vampire|2|1|Lifelink (Damage dealt by this creature also causes you to gain that much life.)|
-Corrupt|Magic 2011|89|U|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to target creature or player. You gain life equal to the damage dealt this way.|
+Corrupt|Magic 2011|89|U|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to any target. You gain life equal to the damage dealt this way.|
Celestial Purge|Magic 2011|9|U|{1}{W}|Instant|||Exile target black or red permanent.|
Dark Tutelage|Magic 2011|90|R|{2}{B}|Enchantment|||At the beginning of your upkeep, reveal the top card of your library and put that card into your hand. You lose life equal to its converted mana cost.|
Deathmark|Magic 2011|91|U|{B}|Sorcery|||Destroy target green or white creature.|
@@ -12610,7 +12610,7 @@ Royal Assassin|Magic 2012|105|R|{1}{B}{B}|Creature - Human Assassin|1|1|{tap}: D
Rune-Scarred Demon|Magic 2012|106|R|{5}{B}{B}|Creature - Demon|6|6|Flying$When Rune-Scarred Demon enters the battlefield, search your library for a card, put it into your hand, then shuffle your library.|
Sengir Vampire|Magic 2012|107|U|{3}{B}{B}|Creature - Vampire|4|4|Flying$Whenever a creature dealt damage by Sengir Vampire this turn dies, put a +1/+1 counter on Sengir Vampire.|
Smallpox|Magic 2012|108|U|{B}{B}|Sorcery|||Each player loses 1 life, discards a card, sacrifices a creature, then sacrifices a land.|
-Sorin Markov|Magic 2012|109|M|{3}{B}{B}{B}|Legendary Planeswalker - Sorin|||+2: Sorin Markov deals 2 damage to target creature or player and you gain 2 life.$-3: Target opponent's life total becomes 10.$-7: You control target player during that player's next turn.|
+Sorin Markov|Magic 2012|109|M|{3}{B}{B}{B}|Legendary Planeswalker - Sorin|||+2: Sorin Markov deals 2 damage to any target and you gain 2 life.$-3: Target opponent's life total becomes 10.$-7: You control target player during that player's next turn.|
Celestial Purge|Magic 2012|11|U|{1}{W}|Instant|||Exile target black or red permanent.|
Sorin's Thirst|Magic 2012|110|C|{B}{B}|Instant|||Sorin's Thirst deals 2 damage to target creature and you gain 2 life.|
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.|
@@ -12627,7 +12627,7 @@ Zombie Infestation|Magic 2012|120|U|{1}{B}|Enchantment|||Discard two cards: Put
Act of Treason|Magic 2012|121|C|{2}{R}|Sorcery|||Gain control of target creature until end of turn. Untap that creature. It gains haste until end of turn.|
Blood Ogre|Magic 2012|122|C|{2}{R}|Creature - Ogre Warrior|2|2|Bloodthirst 1 (If an opponent was dealt damage this turn, this creature enters the battlefield with a +1/+1 counter on it.)$First strike (This creature deals combat damage before creatures without first strike.)|
Bonebreaker Giant|Magic 2012|123|C|{4}{R}|Creature - Giant|4|4||
-Chandra, the Firebrand|Magic 2012|124|M|{3}{R}|Legendary Planeswalker - Chandra|||+1: Chandra, the Firebrand deals 1 damage to target creature or player.$-2: When you cast your next instant or sorcery spell this turn, copy that spell. You may choose new targets for the copy.$-6: Chandra, the Firebrand deals 6 damage to each of up to six target creatures and/or players.|
+Chandra, the Firebrand|Magic 2012|124|M|{3}{R}|Legendary Planeswalker - Chandra|||+1: Chandra, the Firebrand deals 1 damage to any target.$-2: When you cast your next instant or sorcery spell this turn, copy that spell. You may choose new targets for the copy.$-6: Chandra, the Firebrand deals 6 damage to each of up to six target creatures and/or players.|
Chandra's Outrage|Magic 2012|125|C|{2}{R}{R}|Instant|||Chandra's Outrage deals 4 damage to target creature and 2 damage to that creature's controller.|
Chandra's Phoenix|Magic 2012|126|R|{1}{R}{R}|Creature - Phoenix|2|2|Flying$Haste (This creature can attack and {tap} as soon as it comes under your control.)$Whenever an opponent is dealt damage by a red instant or sorcery spell you control or by a red planeswalker you control, return Chandra's Phoenix from your graveyard to your hand.|
Circle of Flame|Magic 2012|127|U|{1}{R}|Enchantment|||Whenever a creature without flying attacks you or a planeswalker you control, Circle of Flame deals 1 damage to that creature.|
@@ -12637,21 +12637,21 @@ Demystify|Magic 2012|13|C|{W}|Instant|||Destroy target enchantment.|
Fiery Hellhound|Magic 2012|130|C|{1}{R}{R}|Creature - Elemental Hound|2|2|{R}: Fiery Hellhound gets +1/+0 until end of turn.|
Fireball|Magic 2012|131|U|{X}{R}|Sorcery|||Fireball deals X damage divided evenly, rounded down, among any number of target creatures and/or players.$Fireball costs {1} more to cast for each target beyond the first.|
Firebreathing|Magic 2012|132|C|{R}|Enchantment - Aura|||Enchant creature${R}: Enchanted creature gets +1/+0 until end of turn.|
-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.|
-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.|
+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 any target.|
+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 any target.|
Furyborn Hellkite|Magic 2012|135|M|{4}{R}{R}{R}|Creature - Dragon|6|6|Bloodthirst 6 (If an opponent was dealt damage this turn, this creature enters the battlefield with six +1/+1 counters on it.)$Flying|
-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.|
-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.|
+Goblin Arsonist|Magic 2012|136|C|{R}|Creature - Goblin Shaman|1|1|When Goblin Arsonist dies, you may have it deal 1 damage to any target.|
+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 any target. If you lose the flip, Goblin Bangchuckers deals 2 damage to itself.|
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.|
Goblin Fireslinger|Magic 2012|139|C|{R}|Creature - Goblin Warrior|1|1|{tap}: Goblin Fireslinger deals 1 damage to target player.|
Divine Favor|Magic 2012|14|C|{1}{W}|Enchantment - Aura|||Enchant creature$When Divine Favor enters the battlefield, you gain 3 life.$Enchanted creature gets +1/+3.|
-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.|
+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 any target.|
Goblin Piker|Magic 2012|141|C|{1}{R}|Creature - Goblin Warrior|2|1||
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.|
Goblin War Paint|Magic 2012|143|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2 and has haste. (It can attack and {tap} no matter when it came under its controller's control.)|
Gorehorn Minotaurs|Magic 2012|144|C|{2}{R}{R}|Creature - Minotaur Warrior|3|3|Bloodthirst 2 (If an opponent was dealt damage this turn, this creature enters the battlefield with two +1/+1 counters on it.)|
-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.|
-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 any target.|
+Incinerate|Magic 2012|146|C|{1}{R}|Instant|||Incinerate deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.|
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.|
Lava Axe|Magic 2012|148|C|{4}{R}|Sorcery|||Lava Axe deals 5 damage to target player.|
Lightning Elemental|Magic 2012|149|C|{3}{R}|Creature - Elemental|4|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)|
@@ -12660,19 +12660,19 @@ Manabarbs|Magic 2012|150|R|{3}{R}|Enchantment|||Whenever a player taps a land fo
Manic Vandal|Magic 2012|151|C|{2}{R}|Creature - Human Warrior|2|2|When Manic Vandal enters the battlefield, destroy target artifact.|
Reverberate|Magic 2012|152|R|{R}{R}|Instant|||Copy target instant or sorcery spell. You may choose new targets for the copy.|
Scrambleverse|Magic 2012|153|R|{6}{R}{R}|Sorcery|||For each nonland permanent, choose a player at random. Then each player gains control of each permanent for which he or she was chosen. Untap those permanents.|
-Shock|Magic 2012|154|C|{R}|Instant|||Shock deals 2 damage to target creature or player.|
+Shock|Magic 2012|154|C|{R}|Instant|||Shock deals 2 damage to any target.|
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.)|
Stormblood Berserker|Magic 2012|156|U|{1}{R}|Creature - Human Berserker|1|1|Bloodthirst 2 (If an opponent was dealt damage this turn, this creature enters the battlefield with two +1/+1 counters on it.)$Stormblood Berserker can't be blocked except by two or more creatures.|
Tectonic Rift|Magic 2012|157|U|{3}{R}|Sorcery|||Destroy target land. Creatures without flying can't block this turn.|
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.)|
Wall of Torches|Magic 2012|159|C|{1}{R}|Creature - Wall|4|1|Defender (This creature can't attack.)|
Gideon Jura|Magic 2012|16|M|{3}{W}{W}|Legendary Planeswalker - Gideon|||+2: During target opponent's next turn, creatures that player controls attack Gideon Jura if able.$-2: Destroy target tapped creature.$0: Until end of turn, Gideon Jura becomes a 6/6 Human Soldier creature that's still a planeswalker. Prevent all damage that would be dealt to him this turn.|
-Warstorm Surge|Magic 2012|160|R|{5}{R}|Enchantment|||Whenever a creature enters the battlefield under your control, it deals damage equal to its power to target creature or player.|
+Warstorm Surge|Magic 2012|160|R|{5}{R}|Enchantment|||Whenever a creature enters the battlefield under your control, it deals damage equal to its power to any target.|
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.|
Arachnus Spinner|Magic 2012|162|R|{5}{G}|Creature - Spider|5|7|Reach (This creature can block creatures with flying.)$Tap an untapped Spider you control: Search your graveyard and/or library for a card named Arachnus Web and put it onto the battlefield attached to target creature. If you search your library this way, shuffle it.|
Arachnus Web|Magic 2012|163|C|{2}{G}|Enchantment - Aura|||Enchant creature$Enchanted creature can't attack or block, and its activated abilities can't be activated.$At the beginning of the end step, if enchanted creature's power is 4 or greater, destroy Arachnus Web.|
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.|
-Birds of Paradise|Magic 2012|165|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color to your mana pool.|
+Birds of Paradise|Magic 2012|165|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color.|
Bountiful Harvest|Magic 2012|166|C|{4}{G}|Sorcery|||You gain 1 life for each land you control.|
Brindle Boar|Magic 2012|167|C|{2}{G}|Creature - Boar|2|2|Sacrifice Brindle Boar: You gain 4 life.|
Carnage Wurm|Magic 2012|168|U|{6}{G}|Creature - Wurm|6|6|Bloodthirst 3 (If an opponent was dealt damage this turn, this creature enters the battlefield with three +1/+1 counters on it.)$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.)|
@@ -12725,7 +12725,7 @@ Greatsword|Magic 2012|209|U|{3}|Artifact - Equipment|||Equipped creature gets +3
Griffin Sentinel|Magic 2012|21|C|{2}{W}|Creature - Griffin|1|3|Flying$Vigilance (Attacking doesn't cause this creature to tap.)|
Kite Shield|Magic 2012|210|U|{0}|Artifact - Equipment|||Equipped creature gets +0/+3.$Equip {3} ({3}: Attach to target creature you control. Equip only as a sorcery.)|
Kraken's Eye|Magic 2012|211|U|{2}|Artifact|||Whenever a player casts a blue spell, you may gain 1 life.|
-Manalith|Magic 2012|212|C|{3}|Artifact|||{tap}: Add one mana of any color to your mana pool.|
+Manalith|Magic 2012|212|C|{3}|Artifact|||{tap}: Add one mana of any color.|
Pentavus|Magic 2012|213|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.|
Quicksilver Amulet|Magic 2012|214|R|{4}|Artifact|||{4}, {tap}: You may put a creature card from your hand onto the battlefield.|
Rusted Sentinel|Magic 2012|215|U|{4}|Artifact Creature - Golem|3|4|Rusted Sentinel enters the battlefield tapped.|
@@ -12835,7 +12835,7 @@ Brink of Disaster|Magic 2012|84|C|{2}{B}{B}|Enchantment - Aura|||Enchant creatur
Call to the Grave|Magic 2012|85|R|{4}{B}|Enchantment|||At the beginning of each player's upkeep, that player sacrifices a non-Zombie creature.$At the beginning of the end step, if no creatures are on the battlefield, sacrifice Call to the Grave.|
Cemetery Reaper|Magic 2012|86|R|{1}{B}{B}|Creature - Zombie|2|2|Other Zombie creatures you control get +1/+1.${2}{B}, {tap}: Exile target creature card from a graveyard. Put a 2/2 black Zombie creature token onto the battlefield.|
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.)|
-Consume Spirit|Magic 2012|88|U|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Consume Spirit deals X damage to target creature or player and you gain X life.|
+Consume Spirit|Magic 2012|88|U|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Consume Spirit deals X damage to any target and you gain X life.|
Dark Favor|Magic 2012|89|C|{1}{B}|Enchantment - Aura|||Enchant creature$When Dark Favor enters the battlefield, you lose 1 life.$Enchanted creature gets +3/+1.|
Auramancer|Magic 2012|9|C|{2}{W}|Creature - Human Wizard|2|2|When Auramancer enters the battlefield, you may return target enchantment card from your graveyard to your hand.|
Deathmark|Magic 2012|90|U|{B}|Sorcery|||Destroy target green or white creature.|
@@ -12875,7 +12875,7 @@ Divine Verdict|Magic 2013|12|C|{3}{W}|Instant|||Destroy target attacking or bloc
Arms Dealer|Magic 2013|120|U|{2}{R}|Creature - Goblin Rogue|1|1|{1}{R}, Sacrifice a Goblin: Arms Dealer deals 4 damage to target creature.|
Bladetusk Boar|Magic 2013|121|C|{3}{R}|Creature - Boar|3|2|Intimidate (This creature can't be blocked except by artifact creatures and/or creatures that share a color with it.)|
Canyon Minotaur|Magic 2013|122|C|{3}{R}|Creature - Minotaur Warrior|3|3||
-Chandra, the Firebrand|Magic 2013|123|M|{3}{R}|Legendary Planeswalker - Chandra|||+1: Chandra, the Firebrand deals 1 damage to target creature or player.$-2: When you cast your next instant or sorcery spell this turn, copy that spell. You may choose new targets for the copy.$-6: Chandra, the Firebrand deals 6 damage to each of up to six target creatures and/or players.|
+Chandra, the Firebrand|Magic 2013|123|M|{3}{R}|Legendary Planeswalker - Chandra|||+1: Chandra, the Firebrand deals 1 damage to any target.$-2: When you cast your next instant or sorcery spell this turn, copy that spell. You may choose new targets for the copy.$-6: Chandra, the Firebrand deals 6 damage to each of up to six target creatures and/or players.|
Chandra's Fury|Magic 2013|124|C|{4}{R}|Instant|||Chandra's Fury deals 4 damage to target player and 1 damage to each creature that player controls.|
Cleaver Riot|Magic 2013|125|U|{4}{R}|Sorcery|||Creatures you control gain double strike until end of turn. (They deal both first-strike and regular combat damage.)|
Craterize|Magic 2013|126|C|{3}{R}|Sorcery|||Destroy target land.|
@@ -12887,7 +12887,7 @@ Fire Elemental|Magic 2013|130|C|{3}{R}{R}|Creature - Elemental|5|4||
Firewing Phoenix|Magic 2013|131|R|{3}{R}|Creature - Phoenix|4|2|Flying${1}{R}{R}{R}: Return Firewing Phoenix from your graveyard to your hand.|
Flames of the Firebrand|Magic 2013|132|U|{2}{R}|Sorcery|||Flames of the Firebrand deals 3 damage divided as you choose among one, two, or three target creatures and/or players.|
Furnace Whelp|Magic 2013|133|U|{2}{R}{R}|Creature - Dragon|2|2|Flying${R}: Furnace Whelp gets +1/+0 until end of turn.|
-Goblin Arsonist|Magic 2013|134|C|{R}|Creature - Goblin Shaman|1|1|When Goblin Arsonist dies, you may have it deal 1 damage to target creature or player.|
+Goblin Arsonist|Magic 2013|134|C|{R}|Creature - Goblin Shaman|1|1|When Goblin Arsonist dies, you may have it deal 1 damage to any target.|
Goblin Battle Jester|Magic 2013|135|C|{3}{R}|Creature - Goblin|2|2|Whenever you cast a red spell, target creature can't block this turn.|
Hamletback Goliath|Magic 2013|136|R|{6}{R}|Creature - Giant Warrior|6|6|Whenever another creature enters the battlefield, you may put X +1/+1 counters on Hamletback Goliath, where X is that creature's power.|
Kindled Fury|Magic 2013|137|C|{R}|Instant|||Target creature gets +1/+0 and gains first strike until end of turn. (It deals combat damage before creatures without first strike.)|
@@ -12901,7 +12901,7 @@ Mogg Flunkies|Magic 2013|143|C|{1}{R}|Creature - Goblin|3|3|Mogg Flunkies can't
Reckless Brute|Magic 2013|144|C|{2}{R}|Creature - Ogre Warrior|3|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)$Reckless Brute attacks each turn if able.|
Reverberate|Magic 2013|145|R|{R}{R}|Instant|||Copy target instant or sorcery spell. You may choose new targets for the copy.|
Rummaging Goblin|Magic 2013|146|C|{2}{R}|Creature - Goblin Rogue|1|1|{tap}, Discard a card: Draw a card.|
-Searing Spear|Magic 2013|147|C|{1}{R}|Instant|||Searing Spear deals 3 damage to target creature or player.|
+Searing Spear|Magic 2013|147|C|{1}{R}|Instant|||Searing Spear deals 3 damage to any target.|
Slumbering Dragon|Magic 2013|148|R|{R}|Creature - Dragon|3|3|Flying$Slumbering Dragon can't attack or block unless it has five or more +1/+1 counters on it.$Whenever a creature attacks you or a planeswalker you control, put a +1/+1 counter on Slumbering Dragon.|
Smelt|Magic 2013|149|C|{R}|Instant|||Destroy target artifact.|
Glorious Charge|Magic 2013|15|C|{1}{W}|Instant|||Creatures you control get +1/+1 until end of turn.|
@@ -12909,7 +12909,7 @@ Thundermaw Hellkite|Magic 2013|150|M|{3}{R}{R}|Creature - Dragon|5|5|Flying$Hast
Torch Fiend|Magic 2013|151|U|{1}{R}|Creature - Devil|2|1|{R}, Sacrifice Torch Fiend: Destroy target artifact.|
Trumpet Blast|Magic 2013|152|C|{2}{R}|Instant|||Attacking creatures get +2/+0 until end of turn.|
Turn to Slag|Magic 2013|153|C|{3}{R}{R}|Sorcery|||Turn to Slag deals 5 damage to target creature. Destroy all Equipment attached to that creature.|
-Volcanic Geyser|Magic 2013|154|U|{X}{R}{R}|Instant|||Volcanic Geyser deals X damage to target creature or player.|
+Volcanic Geyser|Magic 2013|154|U|{X}{R}{R}|Instant|||Volcanic Geyser deals X damage to any target.|
Volcanic Strength|Magic 2013|155|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2 and has mountainwalk. (It's unblockable as long as defending player controls a Mountain.)|
Wall of Fire|Magic 2013|156|C|{1}{R}{R}|Creature - Wall|0|5|Defender (This creature can't attack.)${R}: Wall of Fire gets +1/+0 until end of turn.|
Wild Guess|Magic 2013|157|C|{R}{R}|Sorcery|||As an additional cost to cast Wild Guess, discard a card.$Draw two cards.|
@@ -12967,7 +12967,7 @@ Clock of Omens|Magic 2013|202|U|{4}|Artifact|||Tap two untapped artifacts you co
Door to Nothingness|Magic 2013|203|R|{5}|Artifact|||Door to Nothingness enters the battlefield tapped.${W}{W}{U}{U}{B}{B}{R}{R}{G}{G}, {tap}, Sacrifice Door to Nothingness: Target player loses the game.|
Elixir of Immortality|Magic 2013|204|U|{1}|Artifact|||{2}, {tap}: You gain 5 life. Shuffle Elixir of Immortality and your graveyard into their owner's library.|
Gem of Becoming|Magic 2013|205|U|{3}|Artifact|||{3}, {tap}, Sacrifice Gem of Becoming: Search your library for an Island card, a Swamp card, and a Mountain card. Reveal those cards and put them into your hand. Then shuffle your library.|
-Gilded Lotus|Magic 2013|206|R|{5}|Artifact|||{tap}: Add three mana of any one color to your mana pool.|
+Gilded Lotus|Magic 2013|206|R|{5}|Artifact|||{tap}: Add three mana of any one color.|
Jayemdae Tome|Magic 2013|207|U|{4}|Artifact|||{4}, {tap}: Draw a card.|
Kitesail|Magic 2013|208|U|{2}|Artifact - Equipment|||Equipped creature gets +1/+0 and has flying.$Equip {2} ({2}: Attach to target creature you control. Equip only as a sorcery.)|
Phyrexian Hulk|Magic 2013|209|U|{6}|Artifact Creature - Golem|5|4||
@@ -12979,7 +12979,7 @@ Ring of Thune|Magic 2013|213|U|{2}|Artifact - Equipment|||Equipped creature has
Ring of Valkas|Magic 2013|214|U|{2}|Artifact - Equipment|||Equipped creature has haste. (It can attack and {tap} no matter when it came under your control.)$At the beginning of your upkeep, put a +1/+1 counter on equipped creature if it's red.$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)|
Ring of Xathrid|Magic 2013|215|U|{2}|Artifact - Equipment|||{2}: Regenerate equipped creature. (The next time that creature would be destroyed this turn, it isn't. Instead tap it, remove all damage from it, and remove it from combat.)$At the beginning of your upkeep, put a +1/+1 counter on equipped creature if it's black.$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)|
Sands of Delirium|Magic 2013|216|R|{3}|Artifact|||{X}, {tap}: Target player puts the top X cards of his or her library into his or her graveyard.|
-Staff of Nin|Magic 2013|217|R|{6}|Artifact|||At the beginning of your upkeep, draw a card.${tap}: Staff of Nin deals 1 damage to target creature or player.|
+Staff of Nin|Magic 2013|217|R|{6}|Artifact|||At the beginning of your upkeep, draw a card.${tap}: Staff of Nin deals 1 damage to any target.|
Stuffy Doll|Magic 2013|218|R|{5}|Artifact Creature - Construct|0|1|As Stuffy Doll enters the battlefield, choose a player.$Stuffy Doll is indestructible.$Whenever Stuffy Doll is dealt damage, it deals that much damage to the chosen player.${tap}: Stuffy Doll deals 1 damage to itself.|
Tormod's Crypt|Magic 2013|219|U|{0}|Artifact|||{tap}, Sacrifice Tormod's Crypt: Exile all cards from target player's graveyard.|
Oblivion Ring|Magic 2013|22|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.|
@@ -13090,7 +13090,7 @@ Captain's Call|Magic 2013|9|C|{3}{W}|Sorcery|||Put three 1/1 white Soldier creat
Duress|Magic 2013|90|C|{B}|Sorcery|||Target opponent reveals his or her hand. You choose a noncreature, nonland card from it. That player discards that card.|
Duskmantle Prowler|Magic 2013|91|U|{3}{B}|Creature - Vampire Rogue|2|2|Haste (This creature can attack and {tap} as soon as it comes under your control.)$Exalted (Whenever a creature you control attacks alone, that creature gets +1/+1 until end of turn.)|
Duty-Bound Dead|Magic 2013|92|C|{B}|Creature - Skeleton|0|2|Exalted (Whenever a creature you control attacks alone, that creature gets +1/+1 until end of turn.)${3}{B}: Regenerate Duty-Bound Dead. (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.)|
-Essence Drain|Magic 2013|93|C|{4}{B}|Sorcery|||Essence Drain deals 3 damage to target creature or player and you gain 3 life.|
+Essence Drain|Magic 2013|93|C|{4}{B}|Sorcery|||Essence Drain deals 3 damage to any target and you gain 3 life.|
Giant Scorpion|Magic 2013|94|C|{2}{B}|Creature - Scorpion|1|3|Deathtouch (Any amount of damage this deals to a creature is enough to destroy it.)|
Harbor Bandit|Magic 2013|95|U|{2}{B}|Creature - Human Rogue|2|2|Harbor Bandit gets +1/+1 as long as you control an Island.${1}{U}: Harbor Bandit is unblockable this turn.|
Knight of Infamy|Magic 2013|96|U|{1}{B}|Creature - Human Knight|2|1|Protection from white (This creature can't be blocked, targeted, dealt damage, or enchanted by anything white.)$Exalted (Whenever a creature you control attacks alone, that creature gets +1/+1 until end of turn.)|
@@ -13187,7 +13187,7 @@ Blood Bairn|Magic 2014|87|C|{2}{B}|Creature - Vampire|2|2|Sacrifice another crea
Bogbrew Witch|Magic 2014|88|R|{3}{B}|Creature - Human Wizard|1|3|{2}, {T}: Search your library for a card named Festering Newt or Bubbling Cauldron, put it onto the battlefield tapped, then shuffle your library.|
Child of Night|Magic 2014|89|C|{1}{B}|Creature - Vampire|2|1|Lifelink|
Corpse Hauler|Magic 2014|90|C|{1}{B}|Creature - Human Rogue|2|1|{2}{B}, Sacrifice Corpse Hauler: Return another target creature card from your graveyard to your hand.|
-Corrupt|Magic 2014|91|U|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to target creature or player. You gain life equal to the damage dealt this way.|
+Corrupt|Magic 2014|91|U|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to any target. You gain life equal to the damage dealt this way.|
Dark Favor|Magic 2014|92|C|{1}{B}|Enchantment - Aura|||Enchant creature$When Dark Favor enters the battlefield, you lose 1 life.$Enchanted creature gets +3/+1.|
Dark Prophecy|Magic 2014|93|R|{B}{B}{B}|Enchantment|||Whenever a creature you control dies, you draw a card and lose 1 life.|
Deathgaze Cockatrice|Magic 2014|94|C|{2}{B}{B}|Creature - Cockatrice|2|2|Flying, deathtouch|
@@ -13223,7 +13223,7 @@ Xathrid Necromancer|Magic 2014|123|R|{2}{B}|Creature - Human Wizard|2|2|Whenever
Academy Raider|Magic 2014|124|C|{2}{R}|Creature - Human Warrior|1|1|Intimidate$Whenever Academy Raider deals combat damage to a player, you may discard a card. If you do, draw a card.|
Act of Treason|Magic 2014|125|C|{2}{R}|Sorcery|||Gain control of target creature until end of turn. Untap that creature. It gains haste until end of turn.|
Awaken the Ancient|Magic 2014|126|R|{1}{R}{R}{R}|Enchantment - Aura|||Enchant Mountain$Enchanted Mountain is a 7/7 red Giant creature with haste. It's still a land.|
-Barrage of Expendables|Magic 2014|127|U|{R}|Enchantment|||{R}, Sacrifice a creature: Barrage of Expendables deals 1 damage to target creature or player.|
+Barrage of Expendables|Magic 2014|127|U|{R}|Enchantment|||{R}, Sacrifice a creature: Barrage of Expendables deals 1 damage to any target.|
Battle Sliver|Magic 2014|128|U|{4}{R}|Creature - Sliver|3|3|Sliver creatures you control get +2/+0.|
Blur Sliver|Magic 2014|129|C|{2}{R}|Creature - Sliver|2|2|Sliver creatures you control have haste.|
Burning Earth|Magic 2014|130|R|{3}{R}|Enchantment|||Whenever a player taps a nonbasic land for mana, Burning Earth deals 1 damage to that player.|
@@ -13245,18 +13245,18 @@ Marauding Maulhorn|Magic 2014|145|C|{2}{R}{R}|Creature - Beast|5|3|Marauding Mau
Mindsparker|Magic 2014|146|R|{1}{R}{R}|Creature - Elemental|3|2|First strike$Whenever an opponent casts a white or blue instant or sorcery spell, Mindsparker deals 2 damage to that player.|
Molten Birth|Magic 2014|147|U|{1}{R}{R}|Sorcery|||Put two 1/1 red Elemental creature tokens onto the battlefield. Then flip a coin. If you win the flip, return Molten Birth to its owner's hand. |
Ogre Battledriver|Magic 2014|148|R|{2}{R}{R}|Creature - Ogre Warrior|3|3|Whenever another creature enters the battlefield under your control, that creature gets +2/+0 and gains haste until end of turn.|
-Pitchburn Devils|Magic 2014|149|C|{4}{R}|Creature - Devil|3|3|When Pitchburn Devils dies, it deals 3 damage to target creature or player.|
+Pitchburn Devils|Magic 2014|149|C|{4}{R}|Creature - Devil|3|3|When Pitchburn Devils dies, it deals 3 damage to any target.|
Regathan Firecat|Magic 2014|150|C|{2}{R}|Creature - Elemental Cat|4|1||
-Scourge of Valkas|Magic 2014|151|M|{2}{R}{R}{R}|Creature - Dragon|4|4|Flying$Whenever Scourge of Valkas or another Dragon enters the battlefield under your control, it deals X damage to target creature or player, where X is the number of Dragons you control.${R}: Scourge of Valkas gets +1/+0 until end of turn.|
+Scourge of Valkas|Magic 2014|151|M|{2}{R}{R}{R}|Creature - Dragon|4|4|Flying$Whenever Scourge of Valkas or another Dragon enters the battlefield under your control, it deals X damage to any target, where X is the number of Dragons you control.${R}: Scourge of Valkas gets +1/+0 until end of turn.|
Seismic Stomp|Magic 2014|152|C|{1}{R}|Sorcery|||Creatures without flying can't block this turn.|
Shiv's Embrace|Magic 2014|153|U|{2}{R}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2 and has flying.${R}: Enchanted creature gets +1/+0 until end of turn.|
Shivan Dragon|Magic 2014|154|R|{4}{R}{R}|Creature - Dragon|5|5|Flying${R}: Shivan Dragon gets +1/+0 until end of turn.|
-Shock|Magic 2014|155|C|{R}|Instant|||Shock deals 2 damage to target creature or player.|
+Shock|Magic 2014|155|C|{R}|Instant|||Shock deals 2 damage to any target.|
Smelt|Magic 2014|156|C|{R}|Instant|||Destroy target artifact.|
Striking Sliver|Magic 2014|157|C|{R}|Creature - Sliver|1|1|Sliver creatures you control have first strike.|
-Thorncaster Sliver|Magic 2014|158|R|{4}{R}|Creature - Sliver|2|2|Sliver creatures you control have "Whenever this creature attacks, it deals 1 damage to target creature or player."|
+Thorncaster Sliver|Magic 2014|158|R|{4}{R}|Creature - Sliver|2|2|Sliver creatures you control have "Whenever this creature attacks, it deals 1 damage to any target."|
Thunder Strike|Magic 2014|159|C|{1}{R}|Instant|||Target creature gets +2/+0 and gains first strike until end of turn.|
-Volcanic Geyser|Magic 2014|160|U|{X}{R}{R}|Instant|||Volcanic Geyser deals X damage to target creature or player.|
+Volcanic Geyser|Magic 2014|160|U|{X}{R}{R}|Instant|||Volcanic Geyser deals X damage to any target.|
Wild Guess|Magic 2014|161|C|{R}{R}|Sorcery|||As an additional cost to cast Wild Guess, discard a card.$Draw two cards.|
Wild Ricochet|Magic 2014|162|R|{2}{R}{R}|Instant|||You may choose new targets for target instant or sorcery spell. Then copy that spell. You may choose new targets for the copy.|
Young Pyromancer|Magic 2014|163|U|{1}{R}|Creature - Human Shaman|2|1|Whenever you cast an instant or sorcery spell, put a 1/1 red Elemental creature token onto the battlefield.|
@@ -13280,7 +13280,7 @@ Into the Wilds|Magic 2014|180|R|{3}{G}|Enchantment|||At the beginning of your up
Kalonian Hydra|Magic 2014|181|M|{3}{G}{G}|Creature - Hydra|0|0|Trample$Kalonian Hydra enters the battlefield with four +1/+1 counters on it.$Whenever Kalonian Hydra attacks, double the number of +1/+1 counters on each creature you control.|
Kalonian Tusker|Magic 2014|182|U|{G}{G}|Creature - Beast|3|3||
Lay of the Land|Magic 2014|183|C|{G}|Sorcery|||Search your library for a basic land card, reveal that card, and put it into your hand. Then shuffle your library.|
-Manaweft Sliver|Magic 2014|184|U|{1}{G}|Creature - Sliver|1|1|Sliver creatures you control have "{T}: Add one mana of any color to your mana pool."|
+Manaweft Sliver|Magic 2014|184|U|{1}{G}|Creature - Sliver|1|1|Sliver creatures you control have "{T}: Add one mana of any color."|
Megantic Sliver|Magic 2014|185|R|{5}{G}|Creature - Sliver|3|3|Sliver creatures you control get +3/+3.|
Naturalize|Magic 2014|186|C|{1}{G}|Instant|||Destroy target artifact or enchantment.|
Oath of the Ancient Wood|Magic 2014|187|R|{2}{G}|Enchantment|||Whenever Oath of the Ancient Wood or another enchantment enters the battlefield under your control, you may put a +1/+1 counter on target creature.|
@@ -13303,7 +13303,7 @@ Woodborn Behemoth|Magic 2014|203|U|{3}{G}{G}|Creature - Elemental|4|4|As long as
Accorder's Shield|Magic 2014|204|U|{0}|Artifact - Equipment|||Equipped creature gets +0/+3 and has vigilance.$Equip {3}|
Bubbling Cauldron|Magic 2014|205|U|{2}|Artifact|||{1}, {T}, Sacrifice a creature: You gain 4 life.${1}, {T}, Sacrifice a creature named Festering Newt: Each opponent loses 4 life. You gain life equal to the life lost this way. |
Darksteel Forge|Magic 2014|206|M|{9}|Artifact|||Artifacts you control have indestructible.|
-Darksteel Ingot|Magic 2014|207|C|{3}|Artifact|||Indestructible${T}: Add one mana of any color to your mana pool.|
+Darksteel Ingot|Magic 2014|207|C|{3}|Artifact|||Indestructible${T}: Add one mana of any color.|
Door of Destinies|Magic 2014|208|R|{4}|Artifact|||As Door of Destinies enters the battlefield, choose a creature type.$Whenever you cast a spell of the chosen type, put a charge counter on Door of Destinies.$Creatures you control of the chosen type get +1/+1 for each charge counter on Door of Destinies.|
Elixir of Immortality|Magic 2014|209|U|{1}|Artifact|||{2}, {T}: You gain 5 life. Shuffle Elixir of Immortality and your graveyard into their owner's library.|
Fireshrieker|Magic 2014|210|U|{3}|Artifact - Equipment|||Equipped creature has double strike.$Equip {2}|
@@ -13313,7 +13313,7 @@ Millstone|Magic 2014|213|U|{2}|Artifact|||{2}, {T}: Target player puts the top t
Pyromancer's Gauntlet|Magic 2014|214|R|{5}|Artifact|||If a red instant or sorcery spell you control or a red planeswalker you control would deal damage to a permanent or player, it deals that much damage plus 2 to that permanent or player instead.|
Ratchet Bomb|Magic 2014|215|R|{2}|Artifact|||{T}: Put a charge counter on Ratchet Bomb.${T}, Sacrifice Ratchet Bomb: Destroy each nonland permanent with converted mana cost equal to the number of charge counters on Ratchet Bomb.|
Ring of Three Wishes|Magic 2014|216|M|{5}|Artifact|||Ring of Three Wishes enters the battlefield with three wish counters on it.${5}, {T}, Remove a wish counter from Ring of Three Wishes: Search your library for a card and put that card into your hand. Then shuffle your library. |
-Rod of Ruin|Magic 2014|217|U|{4}|Artifact|||{3}, {T}: Rod of Ruin deals 1 damage to target creature or player.|
+Rod of Ruin|Magic 2014|217|U|{4}|Artifact|||{3}, {T}: Rod of Ruin deals 1 damage to any target.|
Sliver Construct|Magic 2014|218|C|{3}|Artifact Creature - Sliver Construct |2|2||
Staff of the Death Magus|Magic 2014|219|U|{3}|Artifact|||Whenever you cast a black spell or a Swamp enters the battlefield under your control, you gain 1 life.|
Staff of the Flame Magus|Magic 2014|220|U|{3}|Artifact|||Whenever you cast a red spell or a Mountain enters the battlefield under your control, you gain 1 life.|
@@ -13325,7 +13325,7 @@ Trading Post|Magic 2014|225|R|{4}|Artifact|||{1}, {T}, Discard a card: You gain
Vial of Poison|Magic 2014|226|U|{1}|Artifact|||{1}, Sacrifice Vial of Poison: Target creature gains deathtouch until end of turn. |
Encroaching Wastes|Magic 2014|227|U||Land|||{T}: Add {C}.${4}, {T}: Sacrifice Encroaching Wastes: Destroy target nonbasic land.|
Mutavault|Magic 2014|228|R||Land|||{T}: Add {C}.${1}: Mutavault becomes a 2/2 creature with all creature types until end of turn. It's still a land.|
-Shimmering Grotto|Magic 2014|229|C||Land|||{T}: Add {C}.${1}, {T}: Add one mana of any color to your mana pool.|
+Shimmering Grotto|Magic 2014|229|C||Land|||{T}: Add {C}.${1}, {T}: Add one mana of any color.|
Plains|Magic 2014|230|L||Basic Land - Plains|||W|
Plains|Magic 2014|231|L||Basic Land - Plains|||W|
Plains|Magic 2014|232|L||Basic Land - Plains|||W|
@@ -13442,7 +13442,7 @@ Blood Host|Magic 2015|87|U|{3}{B}{B}|Creature - Vampire|3|3|{1}{B}, Sacrifice an
Carrion Crow|Magic 2015|88|C|{2}{B}|Creature - Zombie Bird|2|2|Flying$Carrion Crow enters the battlefield tapped.|
Caustic Tar|Magic 2015|89|U|{4}{B}{B}|Enchantment - Aura|||Enchant land$Enchanted land has "{T}: Target player loses 3 life."|
Child of Night|Magic 2015|90|C|{1}{B}|Creature - Vampire|2|1|Lifelink|
-Covenant of Blood|Magic 2015|91|C|{6}{B}|Sorcery|||Convoke$Covenant of Blood deals 4 damage to target creature or player and you gain 4 life.|
+Covenant of Blood|Magic 2015|91|C|{6}{B}|Sorcery|||Convoke$Covenant of Blood deals 4 damage to any target and you gain 4 life.|
Crippling Blight|Magic 2015|92|C|{B}|Enchantment - Aura|||Enchant creature$Enchanted creature gets -1/-1 and can't block.|
Cruel Sadist|Magic 2015|93|R|{B}|Creature - Human Assassin|1|1|{B}, {T}, Pay 1 life: Put a +1/+1 counter on Cruel Sadist. ${2}{B}, {T}, Remove X +1/+1 counters from Cruel Sadist: Cruel Sadist deals X damage to target creature.|
Endless Obedience|Magic 2015|94|U|{4}{B}{B}|Sorcery|||Convoke$Put target creature card from a graveyard onto the battlefield under your control.|
@@ -13460,7 +13460,7 @@ Necrobite|Magic 2015|105|C|{2}{B}|Instant|||Target creature gains deathtouch unt
Necrogen Scudder|Magic 2015|106|U|{2}{B}|Creature - Horror|3|3|Flying$When Necrogen Scudder enters the battlefield, you lose 3 life.|
Necromancer's Assistant|Magic 2015|107|C|{2}{B}|Creature - Zombie|3|1|When Necromancer's Assistant enters the battlefield, put the top three cards of your library into your graveyard.|
Necromancer's Stockpile|Magic 2015|108|R|{1}{B}|Enchantment|||{1}{B}, Discard a creature card: Draw a card. If the discarded card was a Zombie card, put a 2/2 black Zombie creature token onto the battlefield tapped.|
-Nightfire Giant|Magic 2015|109|U|{4}{B}|Creature - Zombie Giant|4|3|Nightfire Giant gets +1/+1 as long as you control a Mountain.${4}{R}: Nightfire Giant deals 2 damage to target creature or player.|
+Nightfire Giant|Magic 2015|109|U|{4}{B}|Creature - Zombie Giant|4|3|Nightfire Giant gets +1/+1 as long as you control a Mountain.${4}{R}: Nightfire Giant deals 2 damage to any target.|
Ob Nixilis, Unshackled|Magic 2015|110|R|{4}{B}{B}|Legendary Creature - Demon|4|4|Flying, trample$Whenever an opponent searches his or her library, that player sacrifices a creature and loses 10 life.$Whenever another creature dies, put at +1/+1 counter on Ob Nixilis, Unshackled.|
Paragon of Open Graves|Magic 2015|111|U|{3}{B}|Creature - Skeleton Warrior|2|2|Other black creatures you control get +1/+1.${2}{B}, {T}: Another target black creature you control gains deathtouch until end of turn.|
Rotfeaster Maggot|Magic 2015|112|C|{4}{B}|Creature - Insect|3|5|When Rotfeaster Maggot enters the battlefield, exile target creature card from a graveyard. You gain life equal to that card's toughness.|
@@ -13487,11 +13487,11 @@ Belligerent Sliver|Magic 2015|129|U|{2}{R}|Creature - Sliver|2|2|Sliver creature
Blastfire Bolt|Magic 2015|130|C|{5}{R}|Instant|||Blastfire Bolt deals 5 damage to target creature. Destroy all Equipment attached to that creature.|
Borderland Marauder|Magic 2015|131|C|{1}{R}|Creature - Human Warrior|1|2|Whenever Borderland Marauder attacks, it gets +2/+0 until end of turn.|
Brood Keeper|Magic 2015|132|U|{3}{R}|Creature - Human Shaman|2|3|Whenever an Aura becomes attached to Brood Keeper, put a 2/2 red Dragon creature token with flying onto the battlefield. It has "{R}: This creature gets +1/+0 until end of turn."|
-Burning Anger|Magic 2015|133|R|{4}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{T}: This creature deals damage equal to its power to target creature or player."|
+Burning Anger|Magic 2015|133|R|{4}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{T}: This creature deals damage equal to its power to any target."|
Chandra, Pyromaster|Magic 2015|134|M|{2}{R}{R}|Legendary Planeswalker - Chandra||4|+1: Chandra, Pyromaster deals 1 damage to target player and 1 damage to up to one target creature that player controls. That creature can't block this turn.$0: Exile the top card of your library. You may play it this turn.$-7: Exile the top ten cards of your library. Choose an instant or sorcery card exiled this way and copy it three times. You may cast the copies without paying their mana costs.|
Circle of Flame|Magic 2015|135|U|{1}{R}|Enchantment|||Whenever a creature without flying attacks you or a planeswalker you control, Circle of Flame deals 1 damage to that creature.|
Clear a Path|Magic 2015|136|C|{R}|Sorcery|||Destroy target creature with defender.|
-Cone of Flame|Magic 2015|137|U|{3}{R}{R}|Sorcery|||Cone of Flame deals 1 damage to target creature or player, 2 damage to another target creature or player, and 3 damage to a third target creature or player.|
+Cone of Flame|Magic 2015|137|U|{3}{R}{R}|Sorcery|||Cone of Flame deals 1 damage to any target, 2 damage to another any target, and 3 damage to a third any target.|
Crowd's Favor|Magic 2015|138|C|{R}|Instant|||Convoke$Target creature gets +1/+0 and gains first strike until end of turn.|
Crucible of Fire|Magic 2015|139|R|{3}{R}|Enchantment|||Dragon creatures you control get +3/+3.|
Forge Devil|Magic 2015|140|C|{R}|Creature - Devil|1|1|When Forge Devil enters the battlefield, it deals 1 damage to target creature and 1 damage to you.|
@@ -13504,21 +13504,21 @@ Goblin Roughrider|Magic 2015|146|C|{2}{R}|Creature - Goblin Knight|3|2||
Hammerhand|Magic 2015|147|C|{R}|Enchantment - Aura|||Enchant creature$When Hammerhand enters the battlefield, target creature can't block this turn.$Enchanted creature gets +1/+1 and has haste.|
Heat Ray|Magic 2015|148|U|{X}{R}|Instant|||Heat Ray deals X damage to target creature.|
Hoarding Dragon|Magic 2015|149|R|{3}{R}{R}|Creature - Dragon|4|4|Flying$When Hoarding Dragon enters the battlefield, you may search your library for an artifact card, exile it, then shuffle your library.$When Hoarding Dragon dies, you may put the exiled card into its owner's hand.|
-Inferno Fist|Magic 2015|150|C|{1}{R}|Enchantment - Aura|||Enchant creature you control$Enchanted creature gets +2/+0.${R}, Sacrifice Inferno Fist: Inferno Fist deals 2 damage to target creature or player.|
+Inferno Fist|Magic 2015|150|C|{1}{R}|Enchantment - Aura|||Enchant creature you control$Enchanted creature gets +2/+0.${R}, Sacrifice Inferno Fist: Inferno Fist deals 2 damage to any target.|
Kird Chieftain|Magic 2015|151|U|{3}{R}|Creature - Ape|3|3|Kird Chieftain gets +1/+1 as long as you control a Forest.${4}{G}: Target creature gets +2/+2 and gains trample until end of turn.|
Krenko's Enforcer|Magic 2015|152|C|{1}{R}{R}|Creature - Goblin Warrior|2|2|Intimidate|
Kurkesh, Onakke Ancient|Magic 2015|153|R|{2}{R}{R}|Legendary Creature - Ogre Spirit|4|3|Whenever you activate an ability of an artifact, if it isn't a mana ability, you may pay {R}. If you do, copy that ability. You may choose new targets for the copy.|
Lava Axe|Magic 2015|154|C|{4}{R}|Sorcery|||Lava Axe deals 5 damage to target player.|
-Lightning Strike|Magic 2015|155|C|{1}{R}|Instant|||Lightning Strike deals 3 damage to target creature or player.|
+Lightning Strike|Magic 2015|155|C|{1}{R}|Instant|||Lightning Strike deals 3 damage to any target.|
Might Makes Right|Magic 2015|156|U|{5}{R}|Enchantment|||At the beginning of combat on your turn, if you control each creature on the battlefield with the greatest power, gain control of target creature an opponent controls until end of turn. Untap that creature. It gains haste until end of turn.|
Miner's Bane|Magic 2015|157|C|{4}{R}{R}|Creature - Elemental|6|3|{2}{R}: Miner's Bane gets +1/+0 and gains trample until end of turn.|
Paragon of Fierce Defiance|Magic 2015|158|U|{3}{R}|Creature - Human Warrior|2|2|Other red creatures you control get +1/+1.${R}, {T}: Another target red creature you control gains haste until end of turn.|
Rummaging Goblin|Magic 2015|159|C|{2}{R}|Creature - Goblin Rogue|1|1|{T}, Discard a card: Draw a card.|
Scrapyard Mongrel|Magic 2015|160|C|{3}{R}|Creature - Hound|3|3|As long as you control an artifact, Scrapyard Mongrel gets +2/+0 and has trample.|
-Shrapnel Blast|Magic 2015|161|U|{1}{R}|Instant|||As an additional cost to cast Shrapnel Blast, sacrifice an artifact.$Shrapnel Blast deals 5 damage to target creature or player.|
+Shrapnel Blast|Magic 2015|161|U|{1}{R}|Instant|||As an additional cost to cast Shrapnel Blast, sacrifice an artifact.$Shrapnel Blast deals 5 damage to any target.|
Siege Dragon|Magic 2015|162|R|{5}{R}{R}|Creature - Dragon|5|5|Flying$When Siege Dragon enters the battlefield, destroy all Walls your opponents control.$Whenever Siege Dragon attacks, if defending player controls no Walls, it deals 2 damage to each creature without flying that player controls.|
Soul of Shandalar|Magic 2015|163|M|{4}{R}{R}|Creature - Avatar|6|6|First strike${3}{R}{R}: Soul of Shandalar deals 3 damage to target player and 3 damage to up to one target creature that player controls.${3}{R}{R}, Exile Soul of Shandalar from your graveyard: Soul of Shandalar deals 3 damage to target player and 3 damage to up to one target creature that player controls.|
-Stoke the Flames|Magic 2015|164|U|{2}{R}{R}|Instant|||Convoke$Stoke the Flames deals 4 damage to target creature or player.|
+Stoke the Flames|Magic 2015|164|U|{2}{R}{R}|Instant|||Convoke$Stoke the Flames deals 4 damage to any target.|
Thundering Giant|Magic 2015|165|C|{3}{R}{R}|Creature - Giant|4|3|Haste|
Torch Fiend|Magic 2015|166|C|{1}{R}|Creature - Devil|2|1|{R}, Sacrifice Torch Fiend: Destroy target artifact.|
Wall of Fire|Magic 2015|167|C|{1}{R}{R}|Creature - Wall|0|5|Defender${R}: Wall of Fire gets +1/+0 until end of turn.|
@@ -13579,7 +13579,7 @@ Evolving Wilds|Magic 2015|243|C||Land|||{T}, Sacrifice Evolving Wilds: Search yo
Llanowar Wastes|Magic 2015|244|R||Land|||{T}: Add {C}.${T}: Add {B} or {G}. Llanowar Wastes deals 1 damage to you.|
Radiant Fountain|Magic 2015|245|C||Land|||When Radiant Fountain enters the battlefield, you gain 2 life.${T}: Add {C}.|
Shivan Reef|Magic 2015|246|R||Land|||{T}: Add {C}.${T}: Add {U} or {R}. Shivan Reef deals 1 damage to you.|
-Sliver Hive|Magic 2015|247|R||Land|||{T}: Add {C}.${T}: Add one mana of any color to your mana pool. Spend this mana only to cast a Sliver spell.${5}, {T}: Put a 1/1 colorless Sliver creature token onto the battlefield. Activate this ability only if you control a Sliver.|
+Sliver Hive|Magic 2015|247|R||Land|||{T}: Add {C}.${T}: Add one mana of any color. Spend this mana only to cast a Sliver spell.${5}, {T}: Put a 1/1 colorless Sliver creature token onto the battlefield. Activate this ability only if you control a Sliver.|
Urborg, Tomb of Yawgmoth|Magic 2015|248|R||Legendary Land|||Each land is a Swamp in addition to its other land types.|
Yavimaya Coast|Magic 2015|249|R||Land|||{T}: Add {C}.${T}: Add {G} or {U}. Yavimaya Coast deals 1 damage to you.|
Plains|Magic 2015|250|L||Basic Land - Plains||||
@@ -13611,7 +13611,7 @@ Grindclock|Magic 2015|217|R|{2}|Artifact|||{T}: Put a charge counter on Grindclo
Haunted Plate Mail|Magic 2015|218|R|{4}|Artifact - Equipment|||Equipped creature gets +4/+4.${0}: Until end of turn, Haunted Plate Mail becomes a 4/4 Spirit artifact creature that's no longer an Equipment. Activate this ability only if you control no creatures.$Equip {4}|
Hot Soup|Magic 2015|219|U|{1}|Artifact - Equipment|||Equipped creature can't be blocked.$Whenever equipped creature is dealt damage, destroy it.$Equip {3}|
Juggernaut|Magic 2015|220|U|{4}|Artifact Creature - Juggernaut|5|3|Juggernaut attacks each turn if able.$Juggernaut can't be blocked by Walls.|
-Meteorite|Magic 2015|221|U|{5}|Artifact|||When Meteorite enters the battlefield, it deals 2 damage to target creature or player.${T}: Add one mana of any color to your mana pool.|
+Meteorite|Magic 2015|221|U|{5}|Artifact|||When Meteorite enters the battlefield, it deals 2 damage to any target.${T}: Add one mana of any color.|
Obelisk of Urd|Magic 2015|222|R|{6}|Artifact|||Convoke$As Obelisk of Urd enters the battlefield, choose a creature type.$Creatures you control of the chosen type get +2/+2.|
Ornithopter|Magic 2015|223|C|{0}|Artifact Creature - Thopter|0|2|Flying|
Perilous Vault|Magic 2015|224|M|{4}|Artifact|||{5}, {T}, Exile Perilous Vault: Exile all nonland permanents.|
@@ -13723,7 +13723,7 @@ Cruel Revival|Magic Origins|88|U|{4}{B}|Instant|||Destroy target non-Zombie crea
Dark Dabbling|Magic Origins|89|C|{2}{B}|Instant|||Regenerate target creature. Draw a card. (The next time the creature would be destroyed this turn, it isn't. Instead tap it, remove all damage from it, and remove it from combat.)$Spell mastery � If there are two or more instant and/or sorcery cards in your graveyard, also regenerate each other creature you control.|
Dark Petition|Magic Origins|90|R|{3}{B}{B}|Sorcery|||Search your library for a card and put that card into your hand. Then shuffle your library.$Spell mastery � If there are two or more instant and/or sorcery cards in your graveyard, add {B}{B}{B}.|
Deadbridge Shaman|Magic Origins|91|C|{2}{B}|Creature - Elf Shaman|3|1|When Deadbridge Shaman dies, target opponent discards a card.|
-Demonic Pact|Magic Origins|92|M|{2}{B}{B}|Enchantment|||At the beginning of your upkeep, choose one that hasn't been chosen �$Demonic Pact deals 4 damage to target creature or player and you gain 4 life.$Target opponent discards two cards.$Draw two cards.$You lose the game.|
+Demonic Pact|Magic Origins|92|M|{2}{B}{B}|Enchantment|||At the beginning of your upkeep, choose one that hasn't been chosen �$Demonic Pact deals 4 damage to any target and you gain 4 life.$Target opponent discards two cards.$Draw two cards.$You lose the game.|
Despoiler of Souls|Magic Origins|93|R|{B}{B}|Creature - Horror|3|1|Despoiler of Souls can't block.${B}{B}, Exile two other creature cards from your graveyard: Return Despoiler of Souls from your graveyard to the battlefield.|
Erebos's Titan|Magic Origins|94|M|{1}{B}{B}{B}|Creature - Giant|5|5|As long as your opponents control no creatures, Erebos's Titan has indestructible.$Whenever a creature card leaves an opponent's graveyard, you may discard a card. If you do, return Erebos's Titan from your graveyard to your hand.|
Eyeblight Assassin|Magic Origins|95|C|{2}{B}|Creature - Elf Assassin|2|2|When Eyeblight Assassin enters the battlefield, target creature an opponent controls gets -1/-1 until end of turn.|
@@ -13776,21 +13776,21 @@ Demolish|Magic Origins|139|C|{3}{R}|Sorcery|||Destroy target artifact or land.|
Dragon Fodder|Magic Origins|140|C|{1}{R}|Sorcery|||Put two 1/1 red Goblin creature tokens onto the battlefield.|
Embermaw Hellion|Magic Origins|141|R|{3}{R}{R}|Creature - Hellion|4|5|Trample$If another red source you control would deal damage to a permanent or player, it deals that much damage plus 1 to that permanent or player instead.|
Enthralling Victor|Magic Origins|142|U|{3}{R}|Creature - Human Warrior|3|2|When Enthralling Victor enters the battlefield, gain control of target creature an opponent controls with power 2 or less until end of turn. Untap that creature. It gains haste until end of turn.|
-Exquisite Firecraft|Magic Origins|143|R|{1}{R}{R}|Sorcery|||Exquisite Firecraft deals 4 damage to target creature or player. $Spell mastery � If there are two or more instant and/or sorcery cards in your graveyard, Exquisite Firecraft can't be countered by spells or abilities.|
+Exquisite Firecraft|Magic Origins|143|R|{1}{R}{R}|Sorcery|||Exquisite Firecraft deals 4 damage to any target. $Spell mastery � If there are two or more instant and/or sorcery cards in your graveyard, Exquisite Firecraft can't be countered by spells or abilities.|
Fiery Conclusion|Magic Origins|144|U|{1}{R}|Instant|||As an additional cost to cast Fiery Conclusion, sacrifice a creature.$Fiery Conclusion deals 5 damage to target creature.|
Fiery Impulse|Magic Origins|145|C|{R}|Instant|||Fiery Impulse deals 2 damage to target creature.$Spell mastery � If there are two or more instant and/or sorcery cards in your graveyard, Fiery Impulse deals 3 damage to that creature instead.|
Firefiend Elemental|Magic Origins|146|C|{3}{R}|Creature - Elemental|3|2|Haste$Renown 1 (When this creature deals combat damage to a player, if it isn't renowned, put a +1/+1 counter on it and it becomes renowned.)|
Flameshadow Conjuring|Magic Origins|147|R|{3}{R}|Enchantment|||Whenever a nontoken creature enters the battlefield under your control, you may pay {R}. If you do, put a token onto the battlefield that's a copy of that creature. That token gains haste. Exile it at the beginning of the next end step.|
-Ghirapur AEther Grid|Magic Origins|148|U|{2}{R}|Enchantment|||Tap two untapped artifacts you control: Ghirapur AEther Grid deals 1 damage to target creature or player.|
+Ghirapur AEther Grid|Magic Origins|148|U|{2}{R}|Enchantment|||Tap two untapped artifacts you control: Ghirapur AEther Grid deals 1 damage to any target.|
Ghirapur Gearcrafter|Magic Origins|149|C|{2}{R}|Creature - Human Artificer|2|1|When Ghirapur Gearcrafter enters the battlefield, put a 1/1 colorless Thopter artifact creature token with flying onto the battlefield.|
Goblin Glory Chaser|Magic Origins|150|U|{R}|Creature - Goblin Warrior|1|1|Renown 1 (When this creature deals combat damage to an opponent, if it isn't renowned, put a +1/+1 counter on it and it becomes renowned.)$As long as Goblin Glory Chaser is renowned, it has menace. (It can't be blocked except by two or more creatures.)|
Goblin Piledriver|Magic Origins|151|R|{1}{R}|Creature - Goblin Warror|1|2|Protection from blue (This creature can't be blocked, targeted, dealt damage, or enchanted by anything blue.)$Whenever Goblin Piledriver attacks, it gets +2/+0 until end of turn for each other attacking goblin.|
Infectious Bloodlust|Magic Origins|152|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+1, has haste, and attacks each turn if able.$When enchanted creature dies, you may search your library for a card named Infectious Bloodlust, reveal it, put it into your hand, then shuffle your library.|
-Lightning Javelin|Magic Origins|153|C|{3}{R}|Sorcery|||Lightning Javelin deals 3 damage to target creature or player. Scry 1.|
+Lightning Javelin|Magic Origins|153|C|{3}{R}|Sorcery|||Lightning Javelin deals 3 damage to any target. Scry 1.|
Mage-Ring Bully|Magic Origins|154|C|{1}{R}|Creature - Human Warrior|2|2|Prowess$Mage-Ring Bully attacks each turn if able.|
Magmatic Insight|Magic Origins|155|U|{R}|Sorcery|||As an additional cost to cast Magmatic Insight, discard a land card.$Draw two cards.|
-Molten Vortex|Magic Origins|156|R|{R}|Enchantment|||{R}, Discard a land card: Molten Vortex deals 2 damage to target creature or player.|
-Pia and Kiran Nalaar|Magic Origins|157|R|{2}{R}{R}|Legendary Creature - Human Artificer|2|2|When Pia and Kiran Nalaar enters the battlefield put 2 1/1 colorless Thopter artifact creature tokens with flying onto the battlefield.${2}{R}, Sacrifice an artifact: Pia and Kiran Nalaar deals 2 damage to target creature or player.|
+Molten Vortex|Magic Origins|156|R|{R}|Enchantment|||{R}, Discard a land card: Molten Vortex deals 2 damage to any target.|
+Pia and Kiran Nalaar|Magic Origins|157|R|{2}{R}{R}|Legendary Creature - Human Artificer|2|2|When Pia and Kiran Nalaar enters the battlefield put 2 1/1 colorless Thopter artifact creature tokens with flying onto the battlefield.${2}{R}, Sacrifice an artifact: Pia and Kiran Nalaar deals 2 damage to any target.|
Prickleboar|Magic Origins|158|C|{4}{R}|Creature - Boar|3|3|As long as it's your turn, Prickleboar gets +2/+0 and has first strike.|
Ravaging Blaze|Magic Origins|159|U|{X}{R}{R}|Instant|||Ravaging Blaze deals X damage to target creature. $Spell mastery � If there are two or more instant and/or sorcery cards in your graveyard, Ravaging Blaze also deals X damage to that creature's controller.|
Scab-Clan Berserker|Magic Origins|160|R|{1}{R}{R}|Creature - Human Berserker|2|2|Haste$Renown 1 (When this creature deals combat damage to a player, if it isn't renowned, put a +1/+1 counter on it and it becomes renowned.)$Whenever an opponent casts a noncreature spell, if Scab-Clan Berserker is renowned, Scab-Clan Berserker deals 2 damage to that player.|
@@ -13817,7 +13817,7 @@ Gather the Pack|Magic Origins|178|U|{1}{G}|Sorcery|||Reveal the top five cards o
The Great Aurora|Magic Origins|179|M|{6}{G}{G}{G}|Sorcery|||Each player shuffles all cards from his or her hand and all permanents he or she owns into his or her library, then draws that many cards. Each player may put any number of land cards from his or her hand onto the battlefield. Exile The Great Aurora.|
Herald of the Pantheon|Magic Origins|180|R|{1}{G}|Creature - Centaur Shaman|2|2|Enchantment spells you cast cost {1} less to cast.$Whenever you cast an enchantment spell, you gain 1 life.|
Hitchclaw Recluse|Magic Origins|181|C|{2}{G}|Creature - Spider|1|4|Reach|
-Honored Hierarch|Magic Origins|182|R|{G}|Creature - Human Druid|1|1|Renown 1 (When this creature deals combat damage to a player, if it isn't renowned, put a +1/+1 counter on it and it becomes renowned.)$As long as Honored Hierarch is renowned, it has vigilance and "{t}: Add one mana of any color to your mana pool."|
+Honored Hierarch|Magic Origins|182|R|{G}|Creature - Human Druid|1|1|Renown 1 (When this creature deals combat damage to a player, if it isn't renowned, put a +1/+1 counter on it and it becomes renowned.)$As long as Honored Hierarch is renowned, it has vigilance and "{t}: Add one mana of any color."|
Joraga Invocation|Magic Origins|183|U|{4}{G}{G}|Sorcery|||Each creature you control gets +3/+3 until end of turn and must be blocked this turn if able.|
Leaf Gilder|Magic Origins|184|C|{1}{G}|Creature - Elf Druid|2|1|{T}: Add {G}.|
Llanowar Empath|Magic Origins|185|C|{3}{G}|Creature - Elf Shaman|2|2|When Llanowar Empath enters the battlefield, scry 2, then reveal the top card of your library. If it's a creature card, put it into your hand.|
@@ -13849,7 +13849,7 @@ Zendikar's Roil|Magic Origins|209|U|{3}{G}{G}|Enchantment|||Whenever a land ente
Plummet|Magic Origins|286|C|{1}{G}|Instant|||Destroy target creature with flying.|
Prized Unicorn|Magic Origins|287|U|{3}{G}|Creature - Unicorn|2|2|All creatures able to block Prized Unicorn do so.|
Terra Stomper|Magic Origins|288|R|{3}{G}{G}{G}|Creature - Beast|8|8|Terra Stomper can't be countered.$Trample|
-Blazing Hellhound|Magic Origins|210|U|{2}{B}{R}|Creature - Elemental Hound|4|3|{1}, Sacrifice another creature: Blazing Hellhound deals 1 damage to target creature or player.|
+Blazing Hellhound|Magic Origins|210|U|{2}{B}{R}|Creature - Elemental Hound|4|3|{1}, Sacrifice another creature: Blazing Hellhound deals 1 damage to any target.|
Blood-Cursed Knight|Magic Origins|211|U|{1}{W}{B}|Creature - Vampire Knight|3|2|As long as you control an enchantment, Blood-Cursed Knight gets +1/+1 and has lifelink.|
Bounding Krasis|Magic Origins|212|U|{1}{U}{B}|Creature - Fish Lizard|3|3|Flash (You may cast this spell any time you could cast an instant.)$When Bounding Krasis enters the battlefield, you may tap or untap target creature.|
Citadel Castellan|Magic Origins|213|U|{1}{G}{W}|Creature - Human Knight|2|3|Vigilance$Renown 2 (When this creature deals combat damage to a player, if it isn't renowned, put two +1/+1 counters on it and it becomes renowned.)|
@@ -13872,7 +13872,7 @@ Hangarback Walker|Magic Origins|229|R|{X}{X}|Artifact Creature - Construct|0|0|H
Helm of the Gods|Magic Origins|230|R|{1}|Artifact - Equipment|||Equipped creature gets +1/+1 for each enchantment you control.$Equip {1}|
Jayemdae Tome|Magic Origins|231|U|{4}|Artifact|||{4}, {T}: Draw a card.|
Mage-Ring Responder|Magic Origins|232|R|{7}|Artifact Creature - Golem|7|7|Mage-Ring Responder doesn't untap during your untap step.${7}: Untap Mage-Ring Responder.$Whenever Mage-Ring Responder attacks, it deals 7 damage to target creature defending player controls.|
-Meteorite|Magic Origins|233|U|{5}|Artifact|||When Meteorite enters the battlefield, it deals 2 damage to target creature or player.${T}: Add one mana of any color to your mana pool.|
+Meteorite|Magic Origins|233|U|{5}|Artifact|||When Meteorite enters the battlefield, it deals 2 damage to any target.${T}: Add one mana of any color.|
Orbs of Warding|Magic Origins|234|R|{5}|Artifact|||You have hexproof.$If a creature would deal damage to you, prevent 1 of that damage.|
Prism Ring|Magic Origins|235|U|{1}|Artifact|||As Prism Ring enters the battlefield, choose a color.$Whenever you cast a spell of the chosen color, you gain 1 life.|
Pyromancer's Goggles|Magic Origins|236|M|{5}|Legendary Artifact|||{T}: Add {R}. When that mana is used to cast a red instant or sorcery spell, copy that spell and you may choose new targets for the copy.|
@@ -13880,7 +13880,7 @@ Ramroller|Magic Origins|237|U|{3}|Artifact Creature - Juggernaut|2|3|Ramroller a
Runed Servitor|Magic Origins|238|U|{2}|Artifact Creature - Construct|2|2|When Runed Servitor dies, each player draws a card.|
Sigil of Valor|Magic Origins|239|U|{2}|Artifact - Equipment|||Whenever equipped creature attacks alone, it gets +1/+1 until end of turn for each other creature you control.$Equip {1}|
Sword of the Animist|Magic Origins|240|R|{2}|Legendary Artifact - Equipment|||Equipped creature gets +1/+1.$Whenever equipped creature attacks, you may search your library for a basic land card, put it onto the battlefield tapped, then shuffle your library.$Equip {2}|
-Throwing Knife|Magic Origins|241|U|{2}|Artifact - Equipment|||Equipped creature gets +2/+0.$Whenever equipped creature attacks, you may sacrifice Throwing Knife. If you do, Throwing Knife deals 2 damage to target creature or player.$Equip {2}|
+Throwing Knife|Magic Origins|241|U|{2}|Artifact - Equipment|||Equipped creature gets +2/+0.$Whenever equipped creature attacks, you may sacrifice Throwing Knife. If you do, Throwing Knife deals 2 damage to any target.$Equip {2}|
Veteran's Sidearm|Magic Origins|242|C|{2}|Artifact - Equipment|||Equipped creature gets +1/+1.$Equip {1}|
War Horn|Magic Origins|243|U|{3}|Artifact|||Attacking creatures you control get +1/+0.|
Battlefield Forge|Magic Origins|244|R||Land|||{T}: Add {C}.${T}: Add {R} or {W}. Battlefield Forge deals 1 damage to you.|
@@ -13927,23 +13927,23 @@ Pyroclasm|Magic Player Rewards|12|Special|{1}{R}|Sorcery|||Pyroclasm deals 2 dam
Giant Growth|Magic Player Rewards|13|Special|{G}|Instant|||Target creature gets +3/+3 until end of turn.|
Putrefy|Magic Player Rewards|14|Special|{1}{B}{G}|Instant|||Destroy target artifact or creature. It can't be regenerated.|
Zombify|Magic Player Rewards|15|Special|{3}{B}|Sorcery|||Return target creature card from your graveyard to the battlefield.|
-Lightning Helix|Magic Player Rewards|16|Special|{W}{R}|Instant|||Lightning Helix deals 3 damage to target creature or player and you gain 3 life.|
+Lightning Helix|Magic Player Rewards|16|Special|{W}{R}|Instant|||Lightning Helix deals 3 damage to any target and you gain 3 life.|
Wrath of God|Magic Player Rewards|17|Special|{2}{W}{W}|Sorcery|||Destroy all creatures. They can't be regenerated.|
Condemn|Magic Player Rewards|18|Special|{W}|Instant|||Put target attacking creature on the bottom of its owner's library. Its controller gains life equal to its toughness.|
Mortify|Magic Player Rewards|19|Special|{1}{W}{B}|Instant|||Destroy target creature or enchantment.|
-Psionic Blast|Magic Player Rewards|20|Special|{2}{U}|Instant|||Psionic Blast deals 4 damage to target creature or player and 2 damage to you.|
+Psionic Blast|Magic Player Rewards|20|Special|{2}{U}|Instant|||Psionic Blast deals 4 damage to any target and 2 damage to you.|
Cruel Edict|Magic Player Rewards|21|Special|{1}{B}|Sorcery|||Target opponent sacrifices a creature.|
Disenchant|Magic Player Rewards|22|Special|{1}{W}|Instant|||Destroy target artifact or enchantment.|
Recollect|Magic Player Rewards|23|Special|{2}{G}|Sorcery|||Return target card from your graveyard to your hand.|
Damnation|Magic Player Rewards|24|Special|{2}{B}{B}|Sorcery|||Destroy all creatures. They can't be regenerated.|
Tidings|Magic Player Rewards|25|Special|{3}{U}{U}|Sorcery|||Draw four cards.|
-Incinerate|Magic Player Rewards|26|Special|{1}{R}|Instant|||Incinerate deals 3 damage to target creature or player. A creature dealt damage this way can't be regenerated this turn.|
+Incinerate|Magic Player Rewards|26|Special|{1}{R}|Instant|||Incinerate deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.|
Mana Tithe|Magic Player Rewards|27|Special|{W}|Instant|||Counter target spell unless its controller pays {1}.|
Harmonize|Magic Player Rewards|28|Special|{2}{G}{G}|Sorcery|||Draw three cards.|
Ponder|Magic Player Rewards|29|Special|{U}|Sorcery|||Look at the top three cards of your library, then put them back in any order. You may shuffle your library.$Draw a card.|
-Corrupt|Magic Player Rewards|30|Special|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to target creature or player. You gain life equal to the damage dealt this way.|
+Corrupt|Magic Player Rewards|30|Special|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to any target. You gain life equal to the damage dealt this way.|
Cryptic Command|Magic Player Rewards|31|Special|{1}{U}{U}{U}|Instant|||Choose two - Counter target spell; or Return target permanent to its owner's hand; or Tap all creatures your opponents control; or Draw a card.|
-Flame Javelin|Magic Player Rewards|32|Special|{2R}{2R}{2R}|Instant|||({2R} can be paid with any two mana or with {R}. This card's converted mana cost is 6.)$Flame Javelin deals 4 damage to target creature or player.|
+Flame Javelin|Magic Player Rewards|32|Special|{2R}{2R}{2R}|Instant|||({2R} can be paid with any two mana or with {R}. This card's converted mana cost is 6.)$Flame Javelin deals 4 damage to any target.|
Unmake|Magic Player Rewards|33|Special|{WB}{WB}{WB}|Instant|||Exile target creature.|
Nameless Inversion|Magic Player Rewards|34|Special|{1}{B}|Tribal Instant - Shapeshifter|||Changeling (This card is every creature type at all times.)$Target creature gets +3/-3 and loses all creature types until end of turn.|
Remove Soul|Magic Player Rewards|35|Special|{1}{U}|Instant|||Counter target creature spell.|
@@ -13951,14 +13951,14 @@ Blightning|Magic Player Rewards|36|Special|{1}{B}{R}|Sorcery|||Blightning deals
Rampant Growth|Magic Player Rewards|37|Special|{1}{G}|Sorcery|||Search your library for a basic land card and put that card onto the battlefield tapped. Then shuffle your library.|
Negate|Magic Player Rewards|38|Special|{1}{U}|Instant|||Counter target noncreature spell.|
Terminate|Magic Player Rewards|39|Special|{B}{R}|Instant|||Destroy target creature. It can't be regenerated.|
-Lightning Bolt|Magic Player Rewards|40|Special|{R}|Instant|||Lightning Bolt deals 3 damage to target creature or player.|
+Lightning Bolt|Magic Player Rewards|40|Special|{R}|Instant|||Lightning Bolt deals 3 damage to any target.|
Cancel|Magic Player Rewards|41|Special|{1}{U}{U}|Instant|||Counter target spell.|
Sign in Blood|Magic Player Rewards|42|Special|{B}{B}|Sorcery|||Target player draws two cards and loses 2 life.|
Infest|Magic Player Rewards|43|Special|{1}{B}{B}|Sorcery|||All creatures get -2/-2 until end of turn.|
Volcanic Fallout|Magic Player Rewards|44|Special|{1}{R}{R}|Instant|||Volcanic Fallout can't be countered.$Volcanic Fallout deals 2 damage to each creature and each player.|
Celestial Purge|Magic Player Rewards|45|Special|{1}{W}|Instant|||Exile target black or red permanent.|
Bituminous Blast|Magic Player Rewards|46|Special|{3}{B}{R}|Instant|||Cascade (When you cast this spell, exile cards from the top of your library until you exile a nonland card that costs less. You may cast it without paying its mana cost. Put the exiled cards on the bottom in a random order.)$Bituminous Blast deals 4 damage to target creature.|
-Burst Lightning|Magic Player Rewards|47|Special|{R}|Instant|||Kicker {4} (You may pay an additional {4} as you cast this spell.)$Burst Lightning deals 2 damage to target creature or player. If Burst Lightning was kicked, it deals 4 damage to that creature or player instead.|
+Burst Lightning|Magic Player Rewards|47|Special|{R}|Instant|||Kicker {4} (You may pay an additional {4} as you cast this spell.)$Burst Lightning deals 2 damage to any target. If Burst Lightning was kicked, it deals 4 damage to that creature or player instead.|
Harrow|Magic Player Rewards|48|Special|{2}{G}|Instant|||As an additional cost to cast Harrow, sacrifice a land.$Search your library for up to two basic land cards and put them onto the battlefield. Then shuffle your library.|
Day of Judgment|Magic Player Rewards|49|Special|{2}{W}{W}|Sorcery|||Destroy all creatures.|
Brave the Elements|Magic Player Rewards|50|Special|{W}|Instant|||Choose a color. White creatures you control gain protection from the chosen color until end of turn.|
@@ -13985,7 +13985,7 @@ Chain Reaction|Magic: The Gathering-Commander|113|R|{2}{R}{R}|Sorcery|||Chain Re
Chaos Warp|Magic: The Gathering-Commander|114|R|{2}{R}|Instant|||The owner of target permanent shuffles it into his or her library, then reveals the top card of his or her library. If it's a permanent card, he or she puts it onto the battlefield.|
Chartooth Cougar|Magic: The Gathering-Commander|115|C|{5}{R}|Creature - Cat Beast|4|4|{R}: Chartooth Cougar gets +1/+0 until end of turn.$Mountaincycling {2} ({2}, Discard this card: Search your library for a Mountain card, reveal it, and put it into your hand. Then shuffle your library.)|
Cleansing Beam|Magic: The Gathering-Commander|116|U|{4}{R}|Instant|||Radiance - Cleansing Beam deals 2 damage to target creature and each other creature that shares a color with it.|
-Comet Storm|Magic: The Gathering-Commander|117|M|{X}{R}{R}|Instant|||Multikicker {1} (You may pay an additional {1} any number of times as you cast this spell.)$Choose target creature or player, then choose another target creature or player for each time Comet Storm was kicked. Comet Storm deals X damage to each of them.|
+Comet Storm|Magic: The Gathering-Commander|117|M|{X}{R}{R}|Instant|||Multikicker {1} (You may pay an additional {1} any number of times as you cast this spell.)$Choose any target, then choose another any target for each time Comet Storm was kicked. Comet Storm deals X damage to each of them.|
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.|
Disaster Radius|Magic: The Gathering-Commander|119|R|{5}{R}{R}|Sorcery|||As an additional cost to cast Disaster Radius, reveal a creature card from your hand.$Disaster Radius deals X damage to each creature your opponents control, where X is the revealed card's converted mana cost.|
Crescendo of War|Magic: The Gathering-Commander|12|R|{3}{W}|Enchantment|||At the beginning of each upkeep, put a strife counter on Crescendo of War.$Attacking creatures get +1/+0 for each strife counter on Crescendo of War.$Blocking creatures you control get +1/+0 for each strife counter on Crescendo of War.|
@@ -13997,11 +13997,11 @@ Furnace Whelp|Magic: The Gathering-Commander|124|U|{2}{R}{R}|Creature - Dragon|2
Goblin Cadets|Magic: The Gathering-Commander|125|U|{R}|Creature - Goblin|2|1|Whenever Goblin Cadets blocks or becomes blocked, target opponent gains control of it. (This removes Goblin Cadets from combat.)|
Insurrection|Magic: The Gathering-Commander|126|R|{5}{R}{R}{R}|Sorcery|||Untap all creatures and gain control of them until end of turn. They gain haste until end of turn.|
Lash Out|Magic: The Gathering-Commander|127|C|{1}{R}|Instant|||Lash Out deals 3 damage to target creature. Clash with an opponent. If you win, Lash Out deals 3 damage to that creature's controller. (Each clashing player reveals the top card of 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.)|
-Magmatic Force|Magic: The Gathering-Commander|128|R|{5}{R}{R}{R}|Creature - Elemental|7|7|At the beginning of each upkeep, Magmatic Force deals 3 damage to target creature or player.|
+Magmatic Force|Magic: The Gathering-Commander|128|R|{5}{R}{R}{R}|Creature - Elemental|7|7|At the beginning of each upkeep, Magmatic Force deals 3 damage to any target.|
Mana-Charged Dragon|Magic: The Gathering-Commander|129|R|{4}{R}{R}|Creature - Dragon|5|5|Flying, trample$Join forces - Whenever Mana-Charged Dragon attacks or blocks, each player starting with you may pay any amount of mana. Mana-Charged Dragon gets +X/+0 until end of turn, where X is the total amount of mana paid this way.|
False Prophet|Magic: The Gathering-Commander|13|R|{2}{W}{W}|Creature - Human Cleric|2|2|When False Prophet dies, exile all creatures.|
Oni of Wild Places|Magic: The Gathering-Commander|130|U|{5}{R}|Creature - Demon Spirit|6|5|Haste$At the beginning of your upkeep, return a red creature you control to its owner's hand.|
-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.|
+Punishing Fire|Magic: The Gathering-Commander|131|U|{1}{R}|Instant|||Punishing Fire deals 2 damage to any target.$Whenever an opponent gains life, you may pay {R}. If you do, return Punishing Fire from your graveyard to your hand.|
Pyrohemia|Magic: The Gathering-Commander|132|U|{2}{R}{R}|Enchantment|||At the beginning of the end step, if no creatures are on the battlefield, sacrifice Pyrohemia.${R}: Pyrohemia deals 1 damage to each creature and each player.|
Rapacious One|Magic: The Gathering-Commander|133|U|{5}{R}|Creature - Eldrazi Drone|5|4|Trample$Whenever Rapacious One deals combat damage to a player, put that many 0/1 colorless Eldrazi Spawn creature tokens onto the battlefield. They have "Sacrifice this creature: Add {C}."|
Ruination|Magic: The Gathering-Commander|134|R|{3}{R}|Sorcery|||Destroy all nonbasic lands.|
@@ -14099,7 +14099,7 @@ Numot, the Devastator|Magic: The Gathering-Commander|215|R|{3}{R}{W}{U}|Legendar
Oros, the Avenger|Magic: The Gathering-Commander|216|R|{3}{W}{B}{R}|Legendary Creature - Dragon|6|6|Flying$Whenever Oros, the Avenger deals combat damage to a player, you may pay {2}{W}. If you do, Oros deals 3 damage to each nonwhite creature.|
Orzhov Guildmage|Magic: The Gathering-Commander|217|U|{WB}{WB}|Creature - Human Wizard|2|2|{2}{W}: Target player gains 1 life.${2}{B}: Each player loses 1 life.|
Plumeveil|Magic: The Gathering-Commander|218|U|{WU}{WU}{WU}|Creature - Elemental|4|4|Flash (You may cast this spell any time you could cast an instant.)$Defender, flying|
-Prophetic Bolt|Magic: The Gathering-Commander|219|R|{3}{U}{R}|Instant|||Prophetic Bolt deals 4 damage to target creature or player. Look at the top four cards of your library. Put one of those cards into your hand and the rest on the bottom of your library in any order.|
+Prophetic Bolt|Magic: The Gathering-Commander|219|R|{3}{U}{R}|Instant|||Prophetic Bolt deals 4 damage to any target. Look at the top four cards of your library. Put one of those cards into your hand and the rest on the bottom of your library in any order.|
Oblation|Magic: The Gathering-Commander|22|R|{2}{W}|Instant|||The owner of target nonland permanent shuffles it into his or her library, then draws two cards.|
Riku of Two Reflections|Magic: The Gathering-Commander|220|M|{2}{U}{R}{G}|Legendary Creature - Human Wizard|2|2|Whenever you cast an instant or sorcery spell, you may pay {U}{R}. If you do, copy that spell. You may choose new targets for the copy.$Whenever another nontoken creature enters the battlefield under your control, you may pay {G}{U}. If you do, put a token that's a copy of that creature onto the battlefield.|
Ruhan of the Fomori|Magic: The Gathering-Commander|221|M|{1}{R}{W}{U}|Legendary Creature - Giant Warrior|7|7|At the beginning of combat on your turn, choose an opponent at random. Ruhan of the Fomori attacks that player this combat if able.|
@@ -14115,7 +14115,7 @@ Oblivion Ring|Magic: The Gathering-Commander|23|C|{2}{W}|Enchantment|||When Obli
Teneb, the Harvester|Magic: The Gathering-Commander|230|R|{3}{B}{G}{W}|Legendary Creature - Dragon|6|6|Flying$Whenever Teneb, the Harvester deals combat damage to a player, you may pay {2}{B}. If you do, put target creature card from a graveyard onto the battlefield under your control.|
Terminate|Magic: The Gathering-Commander|231|C|{B}{R}|Instant|||Destroy target creature. It can't be regenerated.|
Valley Rannet|Magic: The Gathering-Commander|232|C|{4}{R}{G}|Creature - Beast|6|3|Mountaincycling {2}, forestcycling {2} ({2}, Discard this card: Search your library for a Mountain or Forest card, reveal it, and put it into your hand. Then shuffle your library.)|
-Vengeful Rebirth|Magic: The Gathering-Commander|233|U|{4}{R}{G}|Sorcery|||Return target card from your graveyard to your hand. If you return a nonland card to your hand this way, Vengeful Rebirth deals damage equal to that card's converted mana cost to target creature or player.$Exile Vengeful Rebirth.|
+Vengeful Rebirth|Magic: The Gathering-Commander|233|U|{4}{R}{G}|Sorcery|||Return target card from your graveyard to your hand. If you return a nonland card to your hand this way, Vengeful Rebirth deals damage equal to that card's converted mana cost to any target.$Exile Vengeful Rebirth.|
Vish Kal, Blood Arbiter|Magic: The Gathering-Commander|234|R|{4}{W}{B}{B}|Legendary Creature - Vampire|5|5|Flying, lifelink$Sacrifice a creature: Put X +1/+1 counters on Vish Kal, Blood Arbiter, where X is the sacrificed creature's power.$Remove all +1/+1 counters from Vish Kal: Target creature gets -1/-1 until end of turn for each +1/+1 counter removed this way.|
Vorosh, the Hunter|Magic: The Gathering-Commander|235|R|{3}{G}{U}{B}|Legendary Creature - Dragon|6|6|Flying$Whenever Vorosh, the Hunter deals combat damage to a player, you may pay {2}{G}. If you do, put six +1/+1 counters on Vorosh.|
Vulturous Zombie|Magic: The Gathering-Commander|236|R|{3}{B}{G}|Creature - Plant Zombie|3|3|Flying$Whenever a card is put into an opponent's graveyard from anywhere, put a +1/+1 counter on Vulturous Zombie.|
@@ -14124,14 +14124,14 @@ Wrecking Ball|Magic: The Gathering-Commander|238|C|{2}{B}{R}|Instant|||Destroy t
Wrexial, the Risen Deep|Magic: The Gathering-Commander|239|M|{3}{U}{U}{B}|Legendary Creature - Kraken|5|8|Islandwalk, swampwalk$Whenever Wrexial, the Risen Deep deals combat damage to a player, you may cast target instant or sorcery card from that player's graveyard without paying its mana cost. If that card would be put into a graveyard this turn, exile it instead.|
Orim's Thunder|Magic: The Gathering-Commander|24|C|{2}{W}|Instant|||Kicker {R} (You may pay an additional {R} as you cast this spell.)$Destroy target artifact or enchantment. If Orim's Thunder was kicked, it deals damage equal to that permanent's converted mana cost to target creature.|
Zedruu the Greathearted|Magic: The Gathering-Commander|240|M|{1}{R}{W}{U}|Legendary Creature - Minotaur Monk|2|4|At the beginning of your upkeep, you gain X life and draw X cards, where X is the number of permanents you own that your opponents control.${R}{W}{U}: Target opponent gains control of target permanent you control.|
-Acorn Catapult|Magic: The Gathering-Commander|241|R|{4}|Artifact|||{1}, {tap}: Acorn Catapult deals 1 damage to target creature or player. That creature's controller or that player puts a 1/1 green Squirrel creature token onto the battlefield.|
+Acorn Catapult|Magic: The Gathering-Commander|241|R|{4}|Artifact|||{1}, {tap}: Acorn Catapult deals 1 damage to any target. That creature's controller or that player puts a 1/1 green Squirrel creature token onto the battlefield.|
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.|
Boros Signet|Magic: The Gathering-Commander|243|C|{2}|Artifact|||{1}, {tap}: Add {R}{W}.|
Champion's Helm|Magic: The Gathering-Commander|244|R|{3}|Artifact - Equipment|||Equipped creature gets +2/+2.$As long as equipped creature is legendary, it has hexproof. (It can't be the target of spells or abilities your opponents control.)$Equip {1}|
-Darksteel Ingot|Magic: The Gathering-Commander|245|C|{3}|Artifact|||Darksteel Ingot is indestructible. (Effects that say "destroy" don't destroy it.)${tap}: Add one mana of any color to your mana pool.|
+Darksteel Ingot|Magic: The Gathering-Commander|245|C|{3}|Artifact|||Darksteel Ingot is indestructible. (Effects that say "destroy" don't destroy it.)${tap}: Add one mana of any color.|
Dimir Signet|Magic: The Gathering-Commander|246|C|{2}|Artifact|||{1}, {tap}: Add {U}{B}.|
Dreamstone Hedron|Magic: The Gathering-Commander|247|U|{6}|Artifact|||{tap}: Add {C}{C}{C}.${3}, {tap}, Sacrifice Dreamstone Hedron: Draw three cards.|
-Fellwar Stone|Magic: The Gathering-Commander|248|U|{2}|Artifact|||{tap}: Add to your mana pool one mana of any color that a land an opponent controls could produce.|
+Fellwar Stone|Magic: The Gathering-Commander|248|U|{2}|Artifact|||{tap}: Add one mana of any color that a land an opponent controls could produce.|
Golgari Signet|Magic: The Gathering-Commander|249|C|{2}|Artifact|||{1}, {tap}: Add {B}{G}.|
Path to Exile|Magic: The Gathering-Commander|25|U|{W}|Instant|||Exile target creature. Its controller may search his or her library for a basic land card, put that card onto the battlefield tapped, then shuffle his or her library.|
Gruul Signet|Magic: The Gathering-Commander|250|C|{2}|Artifact|||{1}, {tap}: Add {R}{G}.|
@@ -14140,7 +14140,7 @@ Izzet Signet|Magic: The Gathering-Commander|252|C|{2}|Artifact|||{1}, {tap}: Add
Lightning Greaves|Magic: The Gathering-Commander|253|U|{2}|Artifact - Equipment|||Equipped creature has haste and shroud. (It can't be the target of spells or abilities.)$Equip {0}|
Oblivion Stone|Magic: The Gathering-Commander|254|R|{3}|Artifact|||{4}, {tap}: Put a fate counter on target permanent.${5}, {tap}, Sacrifice Oblivion Stone: Destroy each nonland permanent without a fate counter on it, then remove all fate counters from all permanents.|
Orzhov Signet|Magic: The Gathering-Commander|255|C|{2}|Artifact|||{1}, {tap}: Add {W}{B}.|
-Prophetic Prism|Magic: The Gathering-Commander|256|C|{2}|Artifact|||When Prophetic Prism enters the battlefield, draw a card.${1}, {tap}: Add one mana of any color to your mana pool.|
+Prophetic Prism|Magic: The Gathering-Commander|256|C|{2}|Artifact|||When Prophetic Prism enters the battlefield, draw a card.${1}, {tap}: Add one mana of any color.|
Rakdos Signet|Magic: The Gathering-Commander|257|C|{2}|Artifact|||{1}, {tap}: Add {B}{R}.|
Selesnya Signet|Magic: The Gathering-Commander|258|C|{2}|Artifact|||{1}, {tap}: Add {G}{W}.|
Simic Signet|Magic: The Gathering-Commander|259|C|{2}|Artifact|||{1}, {tap}: Add {G}{U}.|
@@ -14148,13 +14148,13 @@ Pollen Lullaby|Magic: The Gathering-Commander|26|U|{1}{W}|Instant|||Prevent all
Skullclamp|Magic: The Gathering-Commander|260|U|{1}|Artifact - Equipment|||Equipped creature gets +1/-1.$Whenever equipped creature dies, draw two cards.$Equip {1}|
Sol Ring|Magic: The Gathering-Commander|261|U|{1}|Artifact|||{tap}: Add {C}{C}.|
Solemn Simulacrum|Magic: The Gathering-Commander|262|R|{4}|Artifact Creature - Golem|2|2|When Solemn Simulacrum enters the battlefield, you may search your library for a basic land card, put that card onto the battlefield tapped, then shuffle your library.$When Solemn Simulacrum dies, you may draw a card.|
-Triskelavus|Magic: The Gathering-Commander|263|R|{7}|Artifact Creature - Construct|1|1|Flying$Triskelavus enters the battlefield with three +1/+1 counters on it.${1}, Remove a +1/+1 counter from Triskelavus: Put a 1/1 colorless Triskelavite artifact creature token with flying onto the battlefield. It has "Sacrifice this creature: This creature deals 1 damage to target creature or player."|
+Triskelavus|Magic: The Gathering-Commander|263|R|{7}|Artifact Creature - Construct|1|1|Flying$Triskelavus enters the battlefield with three +1/+1 counters on it.${1}, Remove a +1/+1 counter from Triskelavus: Put a 1/1 colorless Triskelavite artifact creature token with flying onto the battlefield. It has "Sacrifice this creature: This creature deals 1 damage to any target."|
Akoum Refuge|Magic: The Gathering-Commander|264|U||Land|||Akoum Refuge enters the battlefield tapped.$When Akoum Refuge enters the battlefield, you gain 1 life.${tap}: Add {B} or {R}.|
Azorius Chancery|Magic: The Gathering-Commander|265|C||Land|||Azorius Chancery enters the battlefield tapped.$When Azorius Chancery enters the battlefield, return a land you control to its owner's hand.${tap}: Add {W}{U}.|
Barren Moor|Magic: The Gathering-Commander|266|C||Land|||Barren Moor enters the battlefield tapped.${tap}: Add {B}.$Cycling {B} ({B}, Discard this card: Draw a card.)|
Bojuka Bog|Magic: The Gathering-Commander|267|C||Land|||Bojuka Bog enters the battlefield tapped.$When Bojuka Bog enters the battlefield, exile all cards from target player's graveyard.${tap}: Add {B}.|
Boros Garrison|Magic: The Gathering-Commander|268|C||Land|||Boros Garrison enters the battlefield tapped.$When Boros Garrison enters the battlefield, return a land you control to its owner's hand.${tap}: Add {R}{W}.|
-Command Tower|Magic: The Gathering-Commander|269|C||Land|||{tap}: Add to your mana pool one mana of any color in your commander's color identity.|
+Command Tower|Magic: The Gathering-Commander|269|C||Land|||{tap}: Add one mana of any color in your commander's color identity.|
Prison Term|Magic: The Gathering-Commander|27|U|{1}{W}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature can't attack or block, and its activated abilities can't be activated.$Whenever a creature enters the battlefield under an opponent's control, you may attach Prison Term to that creature.|
Dimir Aqueduct|Magic: The Gathering-Commander|270|C||Land|||Dimir Aqueduct enters the battlefield tapped.$When Dimir Aqueduct enters the battlefield, return a land you control to its owner's hand.${tap}: Add {U}{B}.|
Dreadship Reef|Magic: The Gathering-Commander|271|U||Land|||{tap}: Add {C}.${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}.|
@@ -14172,7 +14172,7 @@ Lonely Sandbar|Magic: The Gathering-Commander|281|C||Land|||Lonely Sandbar enter
Molten Slagheap|Magic: The Gathering-Commander|282|U||Land|||{tap}: Add {C}.${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}.|
Orzhov Basilica|Magic: The Gathering-Commander|283|C||Land|||Orzhov Basilica enters the battlefield tapped.$When Orzhov Basilica enters the battlefield, return a land you control to its owner's hand.${tap}: Add {W}{B}.|
Rakdos Carnarium|Magic: The Gathering-Commander|284|C||Land|||Rakdos Carnarium enters the battlefield tapped.$When Rakdos Carnarium enters the battlefield, return a land you control to its owner's hand.${tap}: Add {B}{R}.|
-Rupture Spire|Magic: The Gathering-Commander|285|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.|
+Rupture Spire|Magic: The Gathering-Commander|285|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.|
Secluded Steppe|Magic: The Gathering-Commander|286|C||Land|||Secluded Steppe enters the battlefield tapped.${tap}: Add {W}.$Cycling {W} ({W}, Discard this card: Draw a card.)|
Selesnya Sanctuary|Magic: The Gathering-Commander|287|C||Land|||Selesnya Sanctuary enters the battlefield tapped.$When Selesnya Sanctuary enters the battlefield, return a land you control to its owner's hand.${tap}: Add {G}{W}.|
Simic Growth Chamber|Magic: The Gathering-Commander|288|C||Land|||Simic Growth Chamber enters the battlefield tapped.$When Simic Growth Chamber enters the battlefield, return a land you control to its owner's hand.${tap}: Add {G}{U}.|
@@ -14181,11 +14181,11 @@ Righteous Cause|Magic: The Gathering-Commander|29|U|{3}{W}{W}|Enchantment|||When
Temple of the False God|Magic: The Gathering-Commander|290|U||Land|||{tap}: Add {C}{C}. Activate this ability only if you control five or more lands.|
Terramorphic Expanse|Magic: The Gathering-Commander|291|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.|
Tranquil Thicket|Magic: The Gathering-Commander|292|C||Land|||Tranquil Thicket enters the battlefield tapped.${tap}: Add {G}.$Cycling {G} ({G}, Discard this card: Draw a card.)|
-Vivid Crag|Magic: The Gathering-Commander|293|U||Land|||Vivid Crag enters the battlefield tapped with two charge counters on it.${tap}: Add {R}.${tap}, Remove a charge counter from Vivid Crag: Add one mana of any color to your mana pool.|
-Vivid Creek|Magic: The Gathering-Commander|294|U||Land|||Vivid Creek enters the battlefield tapped with two charge counters on it.${tap}: Add {U}.${tap}, Remove a charge counter from Vivid Creek: Add one mana of any color to your mana pool.|
-Vivid Grove|Magic: The Gathering-Commander|295|U||Land|||Vivid Grove enters the battlefield tapped with two charge counters on it.${tap}: Add {G}.${tap}, Remove a charge counter from Vivid Grove: Add one mana of any color to your mana pool.|
-Vivid Marsh|Magic: The Gathering-Commander|296|U||Land|||Vivid Marsh enters the battlefield tapped with two charge counters on it.${tap}: Add {B}.${tap}, Remove a charge counter from Vivid Marsh: Add one mana of any color to your mana pool.|
-Vivid Meadow|Magic: The Gathering-Commander|297|U||Land|||Vivid Meadow enters the battlefield tapped with two charge counters on it.${tap}: Add {W}.${tap}, Remove a charge counter from Vivid Meadow: Add one mana of any color to your mana pool.|
+Vivid Crag|Magic: The Gathering-Commander|293|U||Land|||Vivid Crag enters the battlefield tapped with two charge counters on it.${tap}: Add {R}.${tap}, Remove a charge counter from Vivid Crag: Add one mana of any color.|
+Vivid Creek|Magic: The Gathering-Commander|294|U||Land|||Vivid Creek enters the battlefield tapped with two charge counters on it.${tap}: Add {U}.${tap}, Remove a charge counter from Vivid Creek: Add one mana of any color.|
+Vivid Grove|Magic: The Gathering-Commander|295|U||Land|||Vivid Grove enters the battlefield tapped with two charge counters on it.${tap}: Add {G}.${tap}, Remove a charge counter from Vivid Grove: Add one mana of any color.|
+Vivid Marsh|Magic: The Gathering-Commander|296|U||Land|||Vivid Marsh enters the battlefield tapped with two charge counters on it.${tap}: Add {B}.${tap}, Remove a charge counter from Vivid Marsh: Add one mana of any color.|
+Vivid Meadow|Magic: The Gathering-Commander|297|U||Land|||Vivid Meadow enters the battlefield tapped with two charge counters on it.${tap}: Add {W}.${tap}, Remove a charge counter from Vivid Meadow: Add one mana of any color.|
Zoetic Cavern|Magic: The Gathering-Commander|298|U||Land|||{tap}: Add {C}.$Morph {2} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
Plains|Magic: The Gathering-Commander|299|L||Basic Land - Plains|||W|
Akroma's Vengeance|Magic: The Gathering-Commander|3|R|{4}{W}{W}|Sorcery|||Destroy all artifacts, creatures, and enchantments.$Cycling {3} ({3}, Discard this card: Draw a card.)|
@@ -14323,7 +14323,7 @@ Wakedancer|Magic: The Gathering-Conspiracy|134|C|{2}{B}|Creature - Human Shaman|
Zombie Goliath|Magic: The Gathering-Conspiracy|135|C|{4}{B}|Creature - Zombie Giant|4|3||
Barbed Shocker|Magic: The Gathering-Conspiracy|136|U|{3}{R}|Creature - Insect|2|2|Trample, haste$Whenever Barbed Shocker deals damage to a player, that player discards all the cards in his or her hand, then draws that many cards.|
Boldwyr Intimidator|Magic: The Gathering-Conspiracy|137|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.|
-Brimstone Volley|Magic: The Gathering-Conspiracy|138|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.|
+Brimstone Volley|Magic: The Gathering-Conspiracy|138|C|{2}{R}|Instant|||Brimstone Volley deals 3 damage to any target.$Morbid - Brimstone Volley deals 5 damage to that creature or player instead if a creature died this turn.|
Chartooth Cougar|Magic: The Gathering-Conspiracy|139|C|{5}{R}|Creature - Cat Beast|4|4|{R}: Chartooth Cougar gets +1/+0 until end of turn.$Mountaincycling {2} ({2}, Discard this card: Search your library for a Mountain card, reveal it, and put it into your hand. Then shuffle your library.)|
Brago's Representative|Magic: The Gathering-Conspiracy|14|C|{2}{W}|Creature - Human Advisor|1|4|While voting, you get an additional vote. (The votes can be for different choices or for the same choice.)|
Cinder Wall|Magic: The Gathering-Conspiracy|140|C|{R}|Creature - Wall|3|3|Defender$When Cinder Wall blocks, destroy it at end of combat.|
@@ -14334,10 +14334,10 @@ Heartless Hidetsugu|Magic: The Gathering-Conspiracy|144|R|{3}{R}{R}|Legendary Cr
Heckling Fiends|Magic: The Gathering-Conspiracy|145|U|{2}{R}|Creature - Devil|2|2|{2}{R}: Target creature attacks this turn if able.|
Lizard Warrior|Magic: The Gathering-Conspiracy|146|C|{3}{R}|Creature - Lizard Warrior|4|2||
Mana Geyser|Magic: The Gathering-Conspiracy|147|C|{3}{R}{R}|Sorcery|||Add {R} for each tapped land your opponents control.|
-Orcish Cannonade|Magic: The Gathering-Conspiracy|148|C|{1}{R}{R}|Instant|||Orcish Cannonade deals 2 damage to target creature or player and 3 damage to you.$Draw a card.|
-Pitchburn Devils|Magic: The Gathering-Conspiracy|149|C|{4}{R}|Creature - Devil|3|3|When Pitchburn Devils dies, it deals 3 damage to target creature or player.|
+Orcish Cannonade|Magic: The Gathering-Conspiracy|148|C|{1}{R}{R}|Instant|||Orcish Cannonade deals 2 damage to any target and 3 damage to you.$Draw a card.|
+Pitchburn Devils|Magic: The Gathering-Conspiracy|149|C|{4}{R}|Creature - Devil|3|3|When Pitchburn Devils dies, it deals 3 damage to any target.|
Council Guardian|Magic: The Gathering-Conspiracy|15|U|{5}{W}|Creature - Giant Soldier|5|5|Will of the council - When Council Guardian enters the battlefield, starting with you, each player votes for blue, black, red, or green. Council Guardian gains protection from each color with the most votes or tied for most votes.|
-Power of Fire|Magic: The Gathering-Conspiracy|150|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{tap}: This creature deals 1 damage to target creature or player."|
+Power of Fire|Magic: The Gathering-Conspiracy|150|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{tap}: This creature deals 1 damage to any target."|
Skitter of Lizards|Magic: The Gathering-Conspiracy|151|C|{R}|Creature - Lizard|1|1|Multikicker {1}{R} (You may pay an additional {1}{R} any number of times as you cast this spell.)$Haste$Skitter of Lizards enters the battlefield with a +1/+1 counter on it for each time it was kicked.|
Sulfuric Vortex|Magic: The Gathering-Conspiracy|152|R|{1}{R}{R}|Enchantment|||At the beginning of each player's upkeep, Sulfuric Vortex deals 2 damage to that player.$If a player would gain life, that player gains no life instead.|
Torch Fiend|Magic: The Gathering-Conspiracy|153|C|{1}{R}|Creature - Devil|2|1|{R}, Sacrifice Torch Fiend: Destroy target artifact.|
@@ -14379,7 +14379,7 @@ Decimate|Magic: The Gathering-Conspiracy|185|R|{2}{R}{G}|Sorcery|||Destroy targe
Dimir Doppelganger|Magic: The Gathering-Conspiracy|186|R|{1}{U}{B}|Creature - Shapeshifter|0|2|{1}{U}{B}: Exile target creature card from a graveyard. Dimir Doppelganger becomes a copy of that card and gains this ability.|
Edric, Spymaster of Trest|Magic: The Gathering-Conspiracy|187|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.|
Fires of Yavimaya|Magic: The Gathering-Conspiracy|188|U|{1}{R}{G}|Enchantment|||Creatures you control have haste.$Sacrifice Fires of Yavimaya: Target creature gets +2/+2 until end of turn.|
-Mirari's Wake|Magic: The Gathering-Conspiracy|189|M|{3}{G}{W}|Enchantment|||Creatures you control get +1/+1.$Whenever you tap a land for mana, add one mana to your mana pool of any type that land produced.|
+Mirari's Wake|Magic: The Gathering-Conspiracy|189|M|{3}{G}{W}|Enchantment|||Creatures you control get +1/+1.$Whenever you tap a land for mana, add one mana of any type that land produced.|
Rousing of Souls|Magic: The Gathering-Conspiracy|19|C|{2}{W}|Sorcery|||Parley - Each player reveals the top card of his or her library. For each nonland card revealed this way, you put a 1/1 white Spirit creature token with flying onto the battlefield. Then each player draws a card.|
Mortify|Magic: The Gathering-Conspiracy|190|U|{1}{W}{B}|Instant|||Destroy target creature or enchantment.|
Pernicious Deed|Magic: The Gathering-Conspiracy|191|M|{1}{B}{G}|Enchantment|||{X}, Sacrifice Pernicious Deed: Destroy each artifact, creature, and enchantment with converted mana cost X or less.|
@@ -14400,10 +14400,10 @@ Silent Arbiter|Magic: The Gathering-Conspiracy|204|R|{4}|Artifact Creature - Con
Spectral Searchlight|Magic: The Gathering-Conspiracy|205|U|{3}|Artifact|||{tap}: Choose a player. That player adds one mana of any color he or she chooses to his or her mana pool.|
Vedalken Orrery|Magic: The Gathering-Conspiracy|206|R|{4}|Artifact|||You may cast nonland cards as though they had flash.|
Warmonger's Chariot|Magic: The Gathering-Conspiracy|207|U|{2}|Artifact - Equipment|||Equipped creature gets +2/+2.$As long as equipped creature has defender, it can attack as though it didn't have defender.$Equip {3} ({3}: Attach to target creature you control. Equip only as a sorcery.)|
-Mirrodin's Core|Magic: The Gathering-Conspiracy|208|U||Land|||{tap}: Add {C}.${tap}: Put a charge counter on Mirrodin's Core.${tap}, Remove a charge counter from Mirrodin's Core: Add one mana of any color to your mana pool.|
+Mirrodin's Core|Magic: The Gathering-Conspiracy|208|U||Land|||{tap}: Add {C}.${tap}: Put a charge counter on Mirrodin's Core.${tap}, Remove a charge counter from Mirrodin's Core: Add one mana of any color.|
Quicksand|Magic: The Gathering-Conspiracy|209|U||Land|||{tap}: Add {C}.${tap}, Sacrifice Quicksand: Target attacking creature without flying gets -1/-2 until end of turn.|
Marchesa's Emissary|Magic: The Gathering-Conspiracy|21|C|{3}{U}|Creature - Human Rogue|2|2|Hexproof (This creature can't be the target of spells or abilities your opponents control.)$Dethrone (Whenever this creature attacks the player with the most life or tied for most life, put a +1/+1 counter on it.)|
-Reflecting Pool|Magic: The Gathering-Conspiracy|210|R||Land|||{tap}: Add to your mana pool one mana of any type that a land you control could produce.|
+Reflecting Pool|Magic: The Gathering-Conspiracy|210|R||Land|||{tap}: Add one mana of any type that a land you control could produce.|
Marchesa's Infiltrator|Magic: The Gathering-Conspiracy|22|U|{2}{U}|Creature - Human Rogue|1|1|Dethrone (Whenever this creature attacks the player with the most life or tied for most life, put a +1/+1 counter on it.)$Whenever Marchesa's Infiltrator deals combat damage to a player, draw a card.|
Muzzio, Visionary Architect|Magic: The Gathering-Conspiracy|23|M|{1}{U}{U}|Legendary Creature - Human Artificer|1|3|{3}{U}, {tap}: Look at the top X cards of your library, where X is the highest converted mana cost among artifacts you control. You may reveal an artifact card from among them and put it onto the battlefield. Put the rest on the bottom of your library in any order.|
Plea for Power|Magic: The Gathering-Conspiracy|24|R|{3}{U}|Sorcery|||Will of the council - Starting with you, each player votes for time or knowledge. If time gets more votes, take an extra turn after this one. If knowledge gets more votes or the vote is tied, draw three cards.|
@@ -14428,7 +14428,7 @@ Dack Fayden|Magic: The Gathering-Conspiracy|42|M|{1}{U}{R}|Legendary Planeswalke
Dack's Duplicate|Magic: The Gathering-Conspiracy|43|R|{2}{U}{R}|Creature - Shapeshifter|0|0|You may have Dack's Duplicate enter the battlefield as a copy of any creature on the battlefield except it gains haste and dethrone. (Whenever it attacks the player with the most life or tied for most life, put a +1/+1 counter on it.)|
Deathreap Ritual|Magic: The Gathering-Conspiracy|44|U|{2}{B}{G}|Enchantment|||Morbid - At the beginning of each end step, if a creature died this turn, you may draw a card.|
Extract from Darkness|Magic: The Gathering-Conspiracy|45|U|{3}{U}{B}|Sorcery|||Each player puts the top two cards of his or her library into his or her graveyard. Then put a creature card from a graveyard onto the battlefield under your control.|
-Flamewright|Magic: The Gathering-Conspiracy|46|U|{R}{W}|Creature - Human Artificer|1|1|{1}, {tap}: Put a 1/1 colorless Construct artifact creature token with defender onto the battlefield.${tap}, Sacrifice a creature with defender: Flamewright deals 1 damage to target creature or player.|
+Flamewright|Magic: The Gathering-Conspiracy|46|U|{R}{W}|Creature - Human Artificer|1|1|{1}, {tap}: Put a 1/1 colorless Construct artifact creature token with defender onto the battlefield.${tap}, Sacrifice a creature with defender: Flamewright deals 1 damage to any target.|
Grenzo, Dungeon Warden|Magic: The Gathering-Conspiracy|47|R|{X}{B}{R}|Legendary Creature - Goblin Rogue|2|2|Grenzo, Dungeon Warden enters the battlefield with X +1/+1 counters on it.${2}: Put the bottom card of your library into your graveyard. If it's a creature card with power less than or equal to Grenzo's power, put it onto the battlefield.|
Magister of Worth|Magic: The Gathering-Conspiracy|48|R|{4}{W}{B}|Creature - Angel|4|4|Flying$Will of the council - When Magister of Worth enters the battlefield, starting with you, each player votes for grace or condemnation. If grace gets more votes, each player returns each creature card from his or her graveyard to the battlefield. If condemnation gets more votes or the vote is tied, destroy all creatures other than Magister of Worth.|
Marchesa, the Black Rose|Magic: The Gathering-Conspiracy|49|M|{1}{U}{B}{R}|Legendary Creature - Human Wizard|3|3|Dethrone (Whenever this creature attacks the player with the most life or tied for most life, put a +1/+1 counter on it.)$Other creatures you control have dethrone.$Whenever a creature you control with a +1/+1 counter on it dies, return that card to the battlefield under your control at the beginning of the next end step.|
@@ -14447,7 +14447,7 @@ Deal Broker|Magic: The Gathering-Conspiracy|61|R|{3}|Artifact Creature - Constru
Lore Seeker|Magic: The Gathering-Conspiracy|62|R|{2}|Artifact Creature - Construct|2|2|Reveal Lore Seeker as you draft it. After you draft Lore Seeker, you may add a booster pack to the draft. (Your next pick is from that booster pack. Pass it to the next player and it's drafted this draft round.)|
Lurking Automaton|Magic: The Gathering-Conspiracy|63|C|{5}|Artifact Creature - Construct|0|0|Reveal Lurking Automaton as you draft it and note how many cards you've drafted this draft round, including Lurking Automaton.$Lurking Automaton enters the battlefield with X +1/+1 counters on it, where X is the highest number you noted for cards named Lurking Automaton.|
Whispergear Sneak|Magic: The Gathering-Conspiracy|64|C|{1}|Artifact Creature - Construct|1|1|Draft Whispergear Sneak face up.$During the draft, you may turn Whispergear Sneak face down. If you do, look at any unopened booster pack in the draft or any booster pack not being looked at by another player.|
-Paliano, the High City|Magic: The Gathering-Conspiracy|65|R||Legendary Land|||Reveal Paliano, the High City as you draft it. The player to your right chooses a color, you choose another color, then the player to your left chooses a third color.${tap}: Add one mana to your mana pool of any color chosen as you drafted cards named Paliano, the High City.|
+Paliano, the High City|Magic: The Gathering-Conspiracy|65|R||Legendary Land|||Reveal Paliano, the High City as you draft it. The player to your right chooses a color, you choose another color, then the player to your left chooses a third color.${tap}: Add one mana of any color chosen as you drafted cards named Paliano, the High City.|
Ajani's Sunstriker|Magic: The Gathering-Conspiracy|66|C|{W}{W}|Creature - Cat Cleric|2|2|Lifelink (Damage dealt by this creature also causes you to gain that much life.)|
Apex Hawks|Magic: The Gathering-Conspiracy|67|C|{2}{W}|Creature - Bird|2|2|Multikicker {1}{W} (You may pay an additional {1}{W} any number of times as you cast this spell.)$Flying$Apex Hawks enters the battlefield with a +1/+1 counter on it for each time it was kicked.|
Courier Hawk|Magic: The Gathering-Conspiracy|68|C|{1}{W}|Creature - Bird|1|2|Flying, vigilance|
@@ -14491,19 +14491,19 @@ Iterative Analysis|Magic: The Gathering-Conspiracy|6|U||Conspiracy|||Hidden agen
Muzzio's Preparations|Magic: The Gathering-Conspiracy|7|C||Conspiracy|||Hidden agenda (Start the game with this conspiracy face down in the command zone and secretly name a card. You may turn this conspiracy face up any time and reveal the chosen name.)$Each creature you control with the chosen name enters the battlefield with an additional +1/+1 counter on it.|
Power Play|Magic: The Gathering-Conspiracy|8|U||Conspiracy|||(Start the game with this conspiracy face up in the command zone.)$You are the starting player. If multiple players would be the starting player, one of those players is chosen at random.|
Secret Summoning|Magic: The Gathering-Conspiracy|9|U||Conspiracy|||Hidden agenda (Start the game with this conspiracy face down in the command zone and secretly name a card. You may turn this conspiracy face up any time and reveal the chosen name.)$Whenever a creature with the chosen name enters the battlefield under your control, you may search your library for any number of cards with that name, reveal them, put them into your hand, then shuffle your library.|
-Secrets of Paradise|Magic: The Gathering-Conspiracy|10|C||Conspiracy|||Hidden agenda (Start the game with this conspiracy face down in the command zone and secretly name a card. You may turn this conspiracy face up any time and reveal the chosen name.)$Creatures you control with the chosen name have "{T}: Add one mana of any color to your mana pool."|
+Secrets of Paradise|Magic: The Gathering-Conspiracy|10|C||Conspiracy|||Hidden agenda (Start the game with this conspiracy face down in the command zone and secretly name a card. You may turn this conspiracy face up any time and reveal the chosen name.)$Creatures you control with the chosen name have "{T}: Add one mana of any color."|
Sentinel Dispatch|Magic: The Gathering-Conspiracy|11|C||Conspiracy|||(Start the game with this conspiracy face up in the command zone.)$At the beginning of the first upkeep, put a 1/1 colorless Construct artifact creature token with defender onto the battlefield.|
Unexpected Potential|Magic: The Gathering-Conspiracy|12|U||Conspiracy|||Hidden agenda (Start the game with this conspiracy face down in the command zone and secretly name a card. You may turn this conspiracy face up any time and reveal the chosen name.)$You may spend mana as though it were mana of any color to cast spells with the chosen name.|
-Worldknit|Magic: The Gathering-Conspiracy|13|R||Conspiracy|||(Start the game with this conspiracy face up in the command zone.)$As long as every card in your card pool started the game in your library or in the command zone, lands you control have "{T}: Add one mana of any color to your mana pool."|
+Worldknit|Magic: The Gathering-Conspiracy|13|R||Conspiracy|||(Start the game with this conspiracy face up in the command zone.)$As long as every card in your card pool started the game in your library or in the command zone, lands you control have "{T}: Add one mana of any color."|
Angry Mob|Masters Edition|1|U|{2}{W}{W}|Creature - Human|2+*|2+*|Trample$As long as it's your turn, Angry Mob's power and toughness are each equal to 2 plus the number of Swamps your opponents control. As long as it's not your turn, Angry Mob's power and toughness are each 2.|
Dust to Dust|Masters Edition|10|C|{1}{W}{W}|Sorcery|||Exile two target artifacts.|
Jokulhaups|Masters Edition|100|R|{4}{R}{R}|Sorcery|||Destroy all artifacts, creatures, and lands. They can't be regenerated.|
Keldon Warlord|Masters Edition|101|U|{2}{R}{R}|Creature - Human Barbarian|*|*|Keldon Warlord's power and toughness are each equal to the number of non-Wall creatures you control.|
-Lightning Bolt|Masters Edition|102|C|{R}|Instant|||Lightning Bolt deals 3 damage to target creature or player.|
+Lightning Bolt|Masters Edition|102|C|{R}|Instant|||Lightning Bolt deals 3 damage to any target.|
Mana Flare|Masters Edition|103|R|{2}{R}|Enchantment|||Whenever a player taps a land for mana, that player adds one mana to his or her mana pool of any type that land produced.|
Marton Stromgald|Masters Edition|104|R|{2}{R}{R}|Legendary Creature - Human Knight|1|1|Whenever Márton Stromgald attacks, other attacking creatures get +1/+1 until end of turn for each attacking creature other than Márton Stromgald.$Whenever Márton Stromgald blocks, other blocking creatures get +1/+1 until end of turn for each blocking creature other than Márton Stromgald.|
Mountain Yeti|Masters Edition|105|C|{2}{R}{R}|Creature - Yeti|3|3|Mountainwalk, protection from white|
-Orcish Mechanics|Masters Edition|106|U|{2}{R}|Creature - Orc|1|1|{tap}, Sacrifice an artifact: Orcish Mechanics deals 2 damage to target creature or player.|
+Orcish Mechanics|Masters Edition|106|U|{2}{R}|Creature - Orc|1|1|{tap}, Sacrifice an artifact: Orcish Mechanics deals 2 damage to any target.|
Pyroblast|Masters Edition|107|C|{R}|Instant|||Choose one - Counter target spell if it's blue; or destroy target permanent if it's blue.|
Spinal Villain|Masters Edition|108|U|{2}{R}|Creature - Beast|1|2|{tap}: Destroy target blue creature.|
Stone Giant|Masters Edition|109|U|{2}{R}{R}|Creature - Giant|3|4|{tap}: Target creature you control with toughness less than Stone Giant's power gains flying until end of turn. Destroy that creature at the beginning of the next end step.|
@@ -14535,7 +14535,7 @@ Spectral Bears|Masters Edition|131|U|{1}{G}|Creature - Bear Spirit|3|3|Whenever
Storm Seeker|Masters Edition|132|U|{3}{G}|Instant|||Storm Seeker deals damage to target player equal to the number of cards in that player's hand.|
Sylvan Library|Masters Edition|133|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.|
Thicket Basilisk|Masters Edition|134|U|{3}{G}{G}|Creature - Basilisk|2|4|Whenever Thicket Basilisk blocks or becomes blocked by a non-Wall creature, destroy that creature at end of combat.|
-Thorn Thallid|Masters Edition|135|C|{1}{G}{G}|Creature - Fungus|2|2|At the beginning of your upkeep, put a spore counter on Thorn Thallid.$Remove three spore counters from Thorn Thallid: Thorn Thallid deals 1 damage to target creature or player.|
+Thorn Thallid|Masters Edition|135|C|{1}{G}{G}|Creature - Fungus|2|2|At the beginning of your upkeep, put a spore counter on Thorn Thallid.$Remove three spore counters from Thorn Thallid: Thorn Thallid deals 1 damage to any target.|
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.|
Wanderlust|Masters Edition|137|C|{2}{G}|Enchantment - Aura|||Enchant creature$At the beginning of the upkeep of enchanted creature's controller, Wanderlust deals 1 damage to that player.|
Winter Blast|Masters Edition|138|U|{X}{G}|Sorcery|||Tap X target creatures. Winter Blast deals 2 damage to each of those creatures with flying.|
@@ -14583,7 +14583,7 @@ Diamond Valley|Masters Edition|175|R||Land|||{tap}, Sacrifice a creature: You ga
Island of Wak-Wak|Masters Edition|176|R||Land|||{tap}: The power of target creature with flying becomes 0 until end of turn.|
Lake of the Dead|Masters Edition|177|R||Land|||If Lake of the Dead would enter the battlefield, sacrifice a Swamp instead. If you do, put Lake of the Dead onto the battlefield. If you don't, put it into its owner's graveyard.${tap}: Add {B}.${tap}, Sacrifice a Swamp: Add {B}{B}{B}{B}.|
Mishra's Factory|Masters Edition|178|U||Land|||{tap}: Add {C}.${1}: Mishra's Factory becomes a 2/2 Assembly-Worker artifact creature until end of turn. It's still a land.${tap}: Target Assembly-Worker creature gets +1/+1 until end of turn.|
-Rainbow Vale|Masters Edition|179|R||Land|||{tap}: Add one mana of any color to your mana pool. An opponent gains control of Rainbow Vale at the beginning of the next end step.|
+Rainbow Vale|Masters Edition|179|R||Land|||{tap}: Add one mana of any color. An opponent gains control of Rainbow Vale at the beginning of the next end step.|
Icatian Town|Masters Edition|18|U|{5}{W}|Sorcery|||Put four 1/1 white Citizen creature tokens onto the battlefield.|
Thawing Glaciers|Masters Edition|180|R||Land|||Thawing Glaciers enters the battlefield tapped.${1}, {tap}: Search your library for a basic land card, put that card onto the battlefield tapped, then shuffle your library. Return Thawing Glaciers to its owner's hand at the beginning of the next cleanup step.|
Plains|Masters Edition|181|L||Basic Land - Plains|||W|
@@ -14630,7 +14630,7 @@ Juxtapose|Masters Edition|41|U|{3}{U}|Sorcery|||You and target player exchange c
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}.|
Phantom Monster|Masters Edition|43|C|{3}{U}|Creature - Illusion|3|3|Flying|
Polar Kraken|Masters Edition|44|R|{8}{U}{U}{U}|Creature - Kraken|11|11|Trample$Polar Kraken enters the battlefield tapped.$Cumulative upkeep-Sacrifice a land. (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.)|
-Psychic Purge|Masters Edition|45|U|{U}|Sorcery|||Psychic Purge deals 1 damage to target creature or player.$When a spell or ability an opponent controls causes you to discard Psychic Purge, that player loses 5 life.|
+Psychic Purge|Masters Edition|45|U|{U}|Sorcery|||Psychic Purge deals 1 damage to any target.$When a spell or ability an opponent controls causes you to discard Psychic Purge, that player loses 5 life.|
Psychic Venom|Masters Edition|46|C|{1}{U}|Enchantment - Aura|||Enchant land$Whenever enchanted land becomes tapped, Psychic Venom deals 2 damage to that land's controller.|
River Merfolk|Masters Edition|47|C|{U}{U}|Creature - Merfolk|2|1|{U}: River Merfolk gains mountainwalk until end of turn.|
Sea Sprite|Masters Edition|48|C|{1}{U}|Creature - Faerie|1|1|Flying, protection from red|
@@ -14652,14 +14652,14 @@ Blight|Masters Edition|61|U|{B}{B}|Enchantment - Aura|||Enchant land$When enchan
Breeding Pit|Masters Edition|62|U|{3}{B}|Enchantment|||At the beginning of your upkeep, sacrifice Breeding Pit unless you pay {B}{B}.$At the beginning of your end step, put a 0/1 black Thrull creature token onto the battlefield.|
Chains of Mephistopheles|Masters Edition|63|R|{1}{B}|Enchantment|||If a player would draw a card except the first one he or she draws in his or her draw step each turn, that player discards a card instead. If the player discards a card this way, he or she draws a card. If the player doesn't discard a card this way, he or she puts the top card of his or her library into his or her graveyard.|
Contagion|Masters Edition|64|R|{3}{B}{B}|Instant|||You may pay 1 life and exile a black card from your hand rather than pay Contagion's mana cost.$Distribute two -2/-1 counters among one or two target creatures.|
-Cuombajj Witches|Masters Edition|65|C|{B}{B}|Creature - Human Wizard|1|3|{tap}: Cuombajj Witches deals 1 damage to target creature or player and 1 damage to target creature or player of an opponent's choice.|
+Cuombajj Witches|Masters Edition|65|C|{B}{B}|Creature - Human Wizard|1|3|{tap}: Cuombajj Witches deals 1 damage to any target and 1 damage to any target of an opponent's choice.|
Derelor|Masters Edition|66|U|{3}{B}|Creature - Thrull|4|4|Black spells you cast cost {B} more to cast.|
Eater of the Dead|Masters Edition|67|U|{4}{B}|Creature - Horror|3|4|{0}: If Eater of the Dead is tapped, exile target creature card from a graveyard and untap Eater of the Dead.|
Erg Raiders|Masters Edition|68|C|{1}{B}|Creature - Human Warrior|2|3|At the beginning of your end step, if Erg Raiders didn't attack this turn, Erg Raiders deals 2 damage to you unless it came under your control this turn.|
The Fallen|Masters Edition|69|U|{1}{B}{B}{B}|Creature - Zombie|2|3|At the beginning of your upkeep, The Fallen deals 1 damage to each opponent it has dealt damage to this game.|
Death Speakers|Masters Edition|7|C|{W}|Creature - Human Cleric|1|1|Protection from black|
Feast or Famine|Masters Edition|70|C|{3}{B}|Instant|||Choose one - Put a 2/2 black Zombie creature token onto the battlefield; or destroy target nonartifact, nonblack creature and it can't be regenerated.|
-Hecatomb|Masters Edition|71|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.|
+Hecatomb|Masters Edition|71|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 any target.|
Hyalopterous Lemure|Masters Edition|72|C|{4}{B}|Creature - Spirit|4|3|{0}: Hyalopterous Lemure gets -1/-0 and gains flying until end of turn.|
Hymn to Tourach|Masters Edition|73|U|{B}{B}|Sorcery|||Target player discards two cards at random.|
Juzam Djinn|Masters Edition|74|R|{2}{B}{B}|Creature - Djinn|5|5|At the beginning of your upkeep, Juzám Djinn deals 1 damage to you.|
@@ -14678,14 +14678,14 @@ Artifact Blast|Masters Edition|85|C|{R}|Instant|||Counter target artifact spell.
Balduvian Horde|Masters Edition|86|R|{2}{R}{R}|Creature - Human Barbarian|5|5|When Balduvian Horde enters the battlefield, sacrifice it unless you discard a card at random.|
Ball Lightning|Masters Edition|87|R|{R}{R}{R}|Creature - Elemental|6|1|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.)$Haste (This creature can attack and {tap} as soon as it comes under your control.)$At the beginning of the end step, sacrifice Ball Lightning.|
Bestial Fury|Masters Edition|88|C|{2}{R}|Enchantment - Aura|||Enchant creature$When Bestial Fury enters the battlefield, draw a card at the beginning of the next turn's upkeep.$Whenever enchanted creature becomes blocked, it gets +4/+0 and gains trample until end of turn.|
-Brothers of Fire|Masters Edition|89|C|{1}{R}{R}|Creature - Human Shaman|2|2|{1}{R}{R}: Brothers of Fire deals 1 damage to target creature or player and 1 damage to you.|
+Brothers of Fire|Masters Edition|89|C|{1}{R}{R}|Creature - Human Shaman|2|2|{1}{R}{R}: Brothers of Fire deals 1 damage to any target and 1 damage to you.|
Divine Transformation|Masters Edition|9|U|{2}{W}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +3/+3.|
Crookshank Kobolds|Masters Edition|90|C|{0}|Creature - Kobold|0|1||
Dwarven Catapult|Masters Edition|91|U|{X}{R}|Instant|||Dwarven Catapult deals X damage divided evenly, rounded down, among all creatures target opponent controls.|
Dwarven Soldier|Masters Edition|92|C|{1}{R}|Creature - Dwarf Soldier|2|1|Whenever Dwarven Soldier blocks or becomes blocked by one or more Orcs, Dwarven Soldier gets +0/+2 until end of turn.|
Fissure|Masters Edition|93|C|{3}{R}{R}|Instant|||Destroy target creature or land. It can't be regenerated.|
Goblin Chirurgeon|Masters Edition|94|C|{R}|Creature - Goblin Shaman|0|2|Sacrifice a Goblin: Regenerate target creature.|
-Goblin Grenade|Masters Edition|95|U|{R}|Sorcery|||As an additional cost to cast Goblin Grenade, sacrifice a Goblin.$Goblin Grenade deals 5 damage to target creature or player.|
+Goblin Grenade|Masters Edition|95|U|{R}|Sorcery|||As an additional cost to cast Goblin Grenade, sacrifice a Goblin.$Goblin Grenade deals 5 damage to any target.|
Goblin Mutant|Masters Edition|96|U|{2}{R}{R}|Creature - Goblin Mutant|5|3|Trample$Goblin Mutant can't attack if defending player controls an untapped creature with power 3 or greater.$Goblin Mutant can't block creatures with power 3 or greater.|
Goblin Wizard|Masters Edition|97|R|{2}{R}{R}|Creature - Goblin Wizard|1|1|{tap}: You may put a Goblin permanent card from your hand onto the battlefield.${R}: Target Goblin gains protection from white until end of turn.|
Goblins of the Flarg|Masters Edition|98|C|{R}|Creature - Goblin Warrior|1|1|Mountainwalk$When you control a Dwarf, sacrifice Goblins of the Flarg.|
@@ -14693,7 +14693,7 @@ Granite Gargoyle|Masters Edition|99|U|{2}{R}|Creature - Gargoyle|2|2|Flying${R}:
Abbey Gargoyles|Masters Edition II|1|U|{2}{W}{W}{W}|Creature - Gargoyle|3|4|Flying, protection from red|
Disenchant|Masters Edition II|10|C|{1}{W}|Instant|||Destroy target artifact or enchantment.|
Krovikan Fetish|Masters Edition II|100|C|{2}{B}|Enchantment - Aura|||Enchant creature$When Krovikan Fetish enters the battlefield, draw a card at the beginning of the next turn's upkeep.$Enchanted creature gets +1/+1.|
-Krovikan Horror|Masters Edition II|101|R|{3}{B}|Creature - Horror Spirit|2|2|At the beginning of the end step, if Krovikan Horror is in your graveyard with a creature card directly above it, you may return Krovikan Horror to your hand.${1}, Sacrifice a creature: Krovikan Horror deals 1 damage to target creature or player.|
+Krovikan Horror|Masters Edition II|101|R|{3}{B}|Creature - Horror Spirit|2|2|At the beginning of the end step, if Krovikan Horror is in your graveyard with a creature card directly above it, you may return Krovikan Horror to your hand.${1}, Sacrifice a creature: Krovikan Horror deals 1 damage to any target.|
Krovikan Vampire|Masters Edition II|102|U|{3}{B}{B}|Creature - Vampire|3|3|At the beginning of each end step, if a creature dealt damage by Krovikan Vampire this turn died, put that card onto the battlefield under your control. Sacrifice it when you lose control of Krovikan Vampire.|
Lim-Dul's High Guard|Masters Edition II|103|U|{1}{B}{B}|Creature - Skeleton|2|1|First strike${1}{B}: Regenerate Lim-Dûl's High Guard.|
Minion of Leshrac|Masters Edition II|104|R|{4}{B}{B}{B}|Creature - Demon Minion|5|5|Protection from black$At the beginning of your upkeep, Minion of Leshrac deals 5 damage to you unless you sacrifice a creature other than Minion of Leshrac. If Minion of Leshrac deals damage to you this way, tap it.${tap}: Destroy target creature or land.|
@@ -14717,7 +14717,7 @@ Errand of Duty|Masters Edition II|12|U|{1}{W}|Instant|||Put a 1/1 white Knight c
Brimstone Dragon|Masters Edition II|120|R|{6}{R}{R}|Creature - Dragon|6|6|Flying, haste|
Burnout|Masters Edition II|121|U|{1}{R}|Instant|||Counter target instant spell if it's blue.$Draw a card at the beginning of the next turn's upkeep.|
Conquer|Masters Edition II|122|U|{3}{R}{R}|Enchantment - Aura|||Enchant land$You control enchanted land.|
-Death Spark|Masters Edition II|123|C|{R}|Instant|||Death Spark deals 1 damage to target creature or player.$At the beginning of your upkeep, if Death Spark is in your graveyard with a creature card directly above it, you may pay {1}. If you do, return Death Spark to your hand.|
+Death Spark|Masters Edition II|123|C|{R}|Instant|||Death Spark deals 1 damage to any target.$At the beginning of your upkeep, if Death Spark is in your graveyard with a creature card directly above it, you may pay {1}. If you do, return Death Spark to your hand.|
Errantry|Masters Edition II|124|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +3/+0 and can only attack alone.|
Fire Dragon|Masters Edition II|125|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.|
Flame Spirit|Masters Edition II|126|U|{4}{R}|Creature - Elemental Spirit|2|3|{R}: Flame Spirit gets +1/+0 until end of turn.|
@@ -14726,14 +14726,14 @@ Goblin Ski Patrol|Masters Edition II|128|C|{1}{R}|Creature - Goblin|1|1|{1}{R}:
Gorilla Shaman|Masters Edition II|129|U|{R}|Creature - Ape Shaman|1|1|{X}{X}{1}: Destroy target noncreature artifact with converted mana cost X.|
Farrel's Mantle|Masters Edition II|13|U|{2}{W}|Enchantment - Aura|||Enchant creature$Whenever enchanted creature attacks and isn't blocked, its controller may have it deal damage equal to its power plus 2 to another target creature. If that player does, the attacking creature assigns no combat damage this turn.|
Imperial Recruiter|Masters Edition II|130|R|{2}{R}|Creature - Human Advisor|1|1|When Imperial Recruiter enters the battlefield, search your library for a creature card with power 2 or less, reveal it, and put it into your hand. Then shuffle your library.|
-Incinerate|Masters Edition II|131|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.|
+Incinerate|Masters Edition II|131|C|{1}{R}|Instant|||Incinerate deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.|
Ironclaw Orcs|Masters Edition II|132|C|{1}{R}|Creature - Orc|2|2|Ironclaw Orcs can't block creatures with power 2 or greater.|
Karplusan Giant|Masters Edition II|133|U|{6}{R}|Creature - Giant|3|3|Tap an untapped snow land you control: Karplusan Giant gets +1/+1 until end of turn.|
-Lava Burst|Masters Edition II|134|U|{X}{R}|Sorcery|||Lava Burst deals X damage to target creature or player. If Lava Burst would deal damage to a creature, that damage can't be prevented or dealt instead to another creature or player.|
+Lava Burst|Masters Edition II|134|U|{X}{R}|Sorcery|||Lava Burst deals X damage to any target. If Lava Burst would deal damage to a creature, that damage can't be prevented or dealt instead to another creature or player.|
Meteor Shower|Masters Edition II|135|C|{X}{X}{R}|Sorcery|||Meteor Shower deals X plus 1 damage divided as you choose among any number of target creatures and/or players.|
Mudslide|Masters Edition II|136|R|{2}{R}|Enchantment|||Creatures without flying don't untap during their controllers' untap steps.$At the beginning of each player's upkeep, that player may choose any number of tapped creatures without flying he or she controls and pay {2} for each creature chosen this way. If the player does, untap those creatures.|
Orc General|Masters Edition II|137|U|{2}{R}|Creature - Orc Warrior|2|2|{tap}, Sacrifice another Orc or Goblin: Other Orc creatures get +1/+1 until end of turn.|
-Orcish Cannoneers|Masters Edition II|138|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Cannoneers deals 2 damage to target creature or player and 3 damage to you.|
+Orcish Cannoneers|Masters Edition II|138|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Cannoneers deals 2 damage to any target and 3 damage to you.|
Orcish Captain|Masters Edition II|139|U|{R}|Creature - Orc Warrior|1|1|{1}: Flip a coin. If you win the flip, target Orc creature gets +2/+0 until end of turn. If you lose the flip, it gets -0/-2 until end of turn.|
Farrel's Zealot|Masters Edition II|14|U|{1}{W}{W}|Creature - Human|2|2|Whenever Farrel's Zealot attacks and isn't blocked, you may have it deal 3 damage to target creature. If you do, Farrel's Zealot assigns no combat damage this turn.|
Orcish Conscripts|Masters Edition II|140|C|{R}|Creature - Orc|2|2|Orcish Conscripts can't attack unless at least two other creatures attack.$$Orcish Conscripts can't block unless at least two other creatures block.|
@@ -14746,7 +14746,7 @@ Pillage|Masters Edition II|146|U|{1}{R}{R}|Sorcery|||Destroy target artifact or
Pyrokinesis|Masters Edition II|147|R|{4}{R}{R}|Instant|||You may exile a red card from your hand rather than pay Pyrokinesis's mana cost.$Pyrokinesis deals 4 damage divided as you choose among any number of target creatures.|
Retribution|Masters Edition II|148|U|{2}{R}{R}|Sorcery|||Choose two target creatures an opponent controls. That player chooses and sacrifices one of those creatures. Put a -1/-1 counter on the other.|
Rogue Skycaptain|Masters Edition II|149|R|{2}{R}|Creature - Human Rogue Mercenary|3|4|Flying$At the beginning of your upkeep, put a wage counter on Rogue Skycaptain. You may pay {2} for each wage counter on it. If you don't, remove all wage counters from Rogue Skycaptain and an opponent gains control of it.|
-Icatian Javelineers|Masters Edition II|15|C|{W}|Creature - Human Soldier|1|1|Icatian Javelineers enters the battlefield with a javelin counter on it.${tap}, Remove a javelin counter from Icatian Javelineers: Icatian Javelineers deals 1 damage to target creature or player.|
+Icatian Javelineers|Masters Edition II|15|C|{W}|Creature - Human Soldier|1|1|Icatian Javelineers enters the battlefield with a javelin counter on it.${tap}, Remove a javelin counter from Icatian Javelineers: Icatian Javelineers deals 1 damage to any target.|
Stone Spirit|Masters Edition II|150|U|{4}{R}|Creature - Elemental Spirit|4|3|Stone Spirit can't be blocked by creatures with flying.|
Stonehands|Masters Edition II|151|C|{2}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +0/+2.${R}: Enchanted creature gets +1/+0 until end of turn.|
Varchild's Crusader|Masters Edition II|152|C|{3}{R}|Creature - Human Knight|3|2|{0}: Varchild's Crusader can't be blocked this turn except by Walls. Sacrifice Varchild's Crusader at the beginning of the next end step.|
@@ -14805,9 +14805,9 @@ Angel of Fury|Masters Edition II|2|R|{4}{W}{W}|Creature - Angel|3|5|Flying$When
Juniper Order Advocate|Masters Edition II|20|U|{2}{W}|Creature - Human Knight|1|2|As long as Juniper Order Advocate is untapped, green creatures you control get +1/+1.|
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.|
Adarkar Sentinel|Masters Edition II|201|C|{5}|Artifact Creature - Soldier|3|3|{1}: Adarkar Sentinel gets +0/+1 until end of turn.|
-Aeolipile|Masters Edition II|202|C|{2}|Artifact|||{1}, {tap}, Sacrifice Aeolipile: Aeolipile deals 2 damage to target creature or player.|
+Aeolipile|Masters Edition II|202|C|{2}|Artifact|||{1}, {tap}, Sacrifice Aeolipile: Aeolipile deals 2 damage to any target.|
Ashnod's Cylix|Masters Edition II|203|R|{2}|Artifact|||{3}, {tap}: Target player looks at the top three cards of his or her library, puts one of them back on top of his or her library, then exiles the rest.|
-Barbed Sextant|Masters Edition II|204|C|{1}|Artifact|||{1}, {tap}, Sacrifice Barbed Sextant: Add one mana of any color to your mana pool. Draw a card at the beginning of the next turn's upkeep.|
+Barbed Sextant|Masters Edition II|204|C|{1}|Artifact|||{1}, {tap}, Sacrifice Barbed Sextant: Add one mana of any color. Draw a card at the beginning of the next turn's upkeep.|
Clockwork Steed|Masters Edition II|205|U|{4}|Artifact Creature - Horse|0|3|Clockwork Steed enters the battlefield with four +1/+0 counters on it.$Clockwork Steed can't be blocked by artifact creatures.$At end of combat, if Clockwork Steed attacked or blocked this combat, remove a +1/+0 counter from it.${X}, {tap}: Put up to X +1/+0 counters on Clockwork Steed. This ability can't cause the total number of +1/+0 counters on Clockwork Steed to be greater than four. Activate this ability only during your upkeep.|
Despotic Scepter|Masters Edition II|206|R|{1}|Artifact|||{tap}: Destroy target permanent you own. It can't be regenerated.|
Elkin Bottle|Masters Edition II|207|R|{3}|Artifact|||{3}, {tap}: Exile the top card of your library. Until the beginning of your next upkeep, you may play that card.|
@@ -14816,14 +14816,14 @@ Gustha's Scepter|Masters Edition II|209|R|{0}|Artifact|||{tap}: Exile a card fro
Kjeldoran Elite Guard|Masters Edition II|21|C|{3}{W}|Creature - Human Soldier|2|2|{tap}: Target creature gets +2/+2 until end of turn. When that creature leaves the battlefield this turn, sacrifice Kjeldoran Elite Guard. Activate this ability only during combat.|
Helm of Obedience|Masters Edition II|210|R|{4}|Artifact|||{X}, {tap}: Target opponent puts cards from the top of his or her library into his or her graveyard until a creature card or X cards are put into that graveyard this way, whichever comes first. If a creature card is put into that graveyard this way, sacrifice Helm of Obedience and put that card onto the battlefield under your control. X can't be 0.|
Jester's Mask|Masters Edition II|211|R|{5}|Artifact|||Jester's Mask enters the battlefield tapped.${1}, {tap}, Sacrifice Jester's Mask: Target opponent puts the cards from his or her hand on top of his or her library. Search that player's library for that many cards. That player puts those cards into his or her hand, then shuffles his or her library.|
-Jeweled Amulet|Masters Edition II|212|U|{0}|Artifact|||{1}, {tap}: Put a charge counter on Jeweled Amulet. Note the type of mana spent to pay this activation cost. Activate this ability only if there are no charge counters on Jeweled Amulet.${tap}, Remove a charge counter from Jeweled Amulet: Add one mana of Jeweled Amulet's last noted type to your mana pool.|
+Jeweled Amulet|Masters Edition II|212|U|{0}|Artifact|||{1}, {tap}: Put a charge counter on Jeweled Amulet. Note the type of mana spent to pay this activation cost. Activate this ability only if there are no charge counters on Jeweled Amulet.${tap}, Remove a charge counter from Jeweled Amulet: Add one mana of Jeweled Amulet's last noted type.|
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.|
Mana Crypt|Masters Edition II|214|R|{0}|Artifact|||At the beginning of your upkeep, flip a coin. If you lose the flip, Mana Crypt deals 3 damage to you.${tap}: Add {C}{C}.|
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.)|
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}: If your library has ten or more cards in it, 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.|
Roterothopter|Masters Edition II|218|C|{1}|Artifact Creature - Thopter|0|2|Flying${2}: Roterothopter gets +1/+0 until end of turn. Activate this ability no more than twice each turn.|
-Skull Catapult|Masters Edition II|219|U|{4}|Artifact|||{1}, {tap}, Sacrifice a creature: Skull Catapult deals 2 damage to target creature or player.|
+Skull Catapult|Masters Edition II|219|U|{4}|Artifact|||{1}, {tap}, Sacrifice a creature: Skull Catapult deals 2 damage to any target.|
Kjeldoran Home Guard|Masters Edition II|22|U|{3}{W}|Creature - Human Soldier|1|6|At end of combat, if Kjeldoran Home Guard attacked or blocked this combat, put a -0/-1 counter on Kjeldoran Home Guard and put a 0/1 white Deserter creature token onto the battlefield.|
Snow Fortress|Masters Edition II|220|U|{5}|Artifact Creature - Wall|0|4|Defender (This creature can't attack.)${1}: Snow Fortress gets +1/+0 until end of turn.${1}: Snow Fortress gets +0/+1 until end of turn.${3}: Snow Fortress deals 1 damage to target creature without flying that's attacking you.|
Soldevi Digger|Masters Edition II|221|U|{2}|Artifact|||{2}: Put the top card of your graveyard on the bottom of your library.|
@@ -14863,7 +14863,7 @@ Righteous Fury|Masters Edition II|30|R|{4}{W}{W}|Sorcery|||Destroy all tapped cr
Royal Decree|Masters Edition II|31|R|{2}{W}{W}|Enchantment|||Cumulative upkeep {W} (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 a Swamp, Mountain, black permanent, or red permanent becomes tapped, Royal Decree deals 1 damage to that permanent's controller.|
Royal Trooper|Masters Edition II|32|C|{2}{W}|Creature - Human Soldier|2|2|Whenever Royal Trooper blocks, it gets +2/+2 until end of turn.|
Sacred Boon|Masters Edition II|33|U|{1}{W}|Instant|||Prevent the next 3 damage that would be dealt to target creature this turn. At the beginning of the next end step, put a +0/+1 counter on that creature for each 1 damage prevented this way.|
-Scars of the Veteran|Masters Edition II|34|R|{4}{W}|Instant|||You may exile a white card from your hand rather than pay Scars of the Veteran's mana cost.$Prevent the next 7 damage that would be dealt to target creature or player this turn. At the beginning of the next end step, put a +0/+1 counter on that creature for each 1 damage prevented this way.|
+Scars of the Veteran|Masters Edition II|34|R|{4}{W}|Instant|||You may exile a white card from your hand rather than pay Scars of the Veteran's mana cost.$Prevent the next 7 damage that would be dealt to any target this turn. At the beginning of the next end step, put a +0/+1 counter on that creature for each 1 damage prevented this way.|
Shield Bearer|Masters Edition II|35|C|{1}{W}|Creature - Human Soldier|0|3|Banding (Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding you control are blocking or being blocked by a creature, you divide that creature's combat damage, not its controller, among any of the creatures it's being blocked by or is blocking.)|
Sustaining Spirit|Masters Edition II|36|R|{1}{W}|Creature - Angel Spirit|0|3|Cumulative upkeep {1}{W} (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.)$Damage that would reduce your life total to less than 1 reduces it to 1 instead.|
Swords to Plowshares|Masters Edition II|37|U|{W}|Instant|||Exile target creature. Its controller gains life equal to its power.|
@@ -14909,7 +14909,7 @@ Viscerid Armor|Masters Edition II|72|C|{1}{U}|Enchantment - Aura|||Enchant creat
Viscerid Drone|Masters Edition II|73|U|{1}{U}|Creature - Homarid Drone|1|2|{tap}, Sacrifice a creature and a Swamp: Destroy target nonartifact creature. It can't be regenerated.${tap}, Sacrifice a creature and a snow Swamp: Destroy target creature. It can't be regenerated.|
Wall of Kelp|Masters Edition II|74|C|{U}{U}|Creature - Plant Wall|0|3|Defender (This creature can't attack.)${U}{U}, {tap}: Put a 0/1 blue Plant Wall creature token with defender named Kelp onto the battlefield.|
Wind Spirit|Masters Edition II|75|U|{4}{U}|Creature - Elemental Spirit|3|2|Flying$Wind Spirit can't be blocked except by two or more creatures.|
-Zuran Spellcaster|Masters Edition II|76|C|{2}{U}|Creature - Human Wizard|1|1|{tap}: Zuran Spellcaster deals 1 damage to target creature or player.|
+Zuran Spellcaster|Masters Edition II|76|C|{2}{U}|Creature - Human Wizard|1|1|{tap}: Zuran Spellcaster deals 1 damage to any target.|
Armor Thrull|Masters Edition II|77|C|{2}{B}|Creature - Thrull|1|3|{tap}, Sacrifice Armor Thrull: Put a +1/+2 counter on target creature.|
Ashen Ghoul|Masters Edition II|78|U|{3}{B}|Creature - Zombie|3|1|Haste${B}: Return Ashen Ghoul from your graveyard to the battlefield. Activate this ability only during your upkeep and only if three or more creature cards are above Ashen Ghoul.|
Balduvian Dead|Masters Edition II|79|U|{3}{B}|Creature - Zombie|2|3|{2}{R}, Exile a creature card from your graveyard: Put a 3/1 black and red Graveborn creature token with haste onto the battlefield. Sacrifice it at the beginning of the next end step.|
@@ -14924,7 +14924,7 @@ Drift of the Dead|Masters Edition II|86|C|{3}{B}|Creature - Wall|*|*|Defender (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.)$At the beginning of each player's upkeep, that player sacrifices a green or white permanent.|
Ebon Praetor|Masters Edition II|89|R|{4}{B}{B}|Creature - Avatar Praetor|5|5|First strike, trample$At the beginning of your upkeep, put a -2/-2 counter on Ebon Praetor.$Sacrifice a creature: Remove a -2/-2 counter from Ebon Praetor. If the sacrificed creature was a Thrull, put a +1/+0 counter on Ebon Praetor. Activate this ability only during your upkeep and only once each turn.|
-Combat Medic|Masters Edition II|9|C|{2}{W}|Creature - Human Cleric Soldier|0|2|{1}{W}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Combat Medic|Masters Edition II|9|C|{2}{W}|Creature - Human Cleric Soldier|0|2|{1}{W}: Prevent the next 1 damage that would be dealt to any target this turn.|
Foul Familiar|Masters Edition II|90|C|{2}{B}|Creature - Spirit|3|1|Foul Familiar can't block.${B}, Pay 1 life: Return Foul Familiar to its owner's hand.|
Funeral March|Masters Edition II|91|C|{1}{B}{B}|Enchantment - Aura|||Enchant creature$When enchanted creature leaves the battlefield, its controller sacrifices a creature.|
Gangrenous Zombies|Masters Edition II|92|C|{1}{B}{B}|Creature - Zombie|2|2|{tap}, Sacrifice Gangrenous Zombies: Gangrenous Zombies deals 1 damage to each creature and each player. If you control a snow Swamp, Gangrenous Zombies deals 2 damage to each creature and each player instead.|
@@ -14980,7 +14980,7 @@ Tracker|Masters Edition III|136|U|{2}{G}|Creature - Human|2|2|{G}{G}, {tap}: Tra
Trip Wire|Masters Edition III|137|C|{2}{G}|Sorcery|||Destroy target creature with horsemanship.|
Willow Priestess|Masters Edition III|138|U|{2}{G}{G}|Creature - Faerie Druid|2|2|{tap}: You may put a Faerie permanent card from your hand onto the battlefield.${2}{G}: Target green creature gains protection from black until end of turn.|
Willow Satyr|Masters Edition III|139|R|{2}{G}{G}|Creature - Satyr|1|1|You may choose not to untap Willow Satyr during your untap step.${tap}: Gain control of target legendary creature for as long as you control Willow Satyr and Willow Satyr remains tapped.|
-Heal|Masters Edition III|14|C|{W}|Instant|||Prevent the next 1 damage that would be dealt to target creature or player this turn.$$Draw a card at the beginning of the next turn's upkeep.|
+Heal|Masters Edition III|14|C|{W}|Instant|||Prevent the next 1 damage that would be dealt to any target this turn.$$Draw a card at the beginning of the next turn's upkeep.|
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.|
Angus Mackenzie|Masters Edition III|141|R|{G}{W}{U}|Legendary Creature - Human Cleric|2|2|{G}{W}{U}, {tap}: Prevent all combat damage that would be dealt this turn. Activate this ability only before the combat damage step.|
Arcades Sabboth|Masters Edition III|142|R|{2}{G}{G}{W}{W}{U}{U}|Legendary Creature - Elder Dragon|7|7|Flying$At the beginning of your upkeep, sacrifice Arcades Sabboth unless you pay {G}{W}{U}.$Each untapped creature you control gets +0/+2 as long as it's not attacking.${W}: Arcades Sabboth gets +0/+1 until end of turn.|
@@ -15034,24 +15034,24 @@ Vaevictis Asmadi|Masters Edition III|185|R|{2}{B}{B}{R}{R}{G}{G}|Legendary Creat
Wandering Mage|Masters Edition III|186|R|{W}{U}{B}|Creature - Human Cleric Wizard|0|3|{W}, Pay 1 life: Prevent the next 2 damage that would be dealt to target creature this turn.${U}: Prevent the next 1 damage that would be dealt to target Cleric or Wizard creature this turn.${B}, Put a -1/-1 counter on a creature you control: Prevent the next 2 damage that would be dealt to target player this turn.|
Xira Arien|Masters Edition III|187|R|{B}{R}{G}|Legendary Creature - Insect Wizard|1|2|Flying${B}{R}{G}, {tap}: Target player draws a card.|
Arena of the Ancients|Masters Edition III|188|R|{3}|Artifact|||Legendary creatures don't untap during their controllers' untap steps.$When Arena of the Ancients enters the battlefield, tap all legendary creatures.|
-Astrolabe|Masters Edition III|189|C|{3}|Artifact|||{1}, {tap}, Sacrifice Astrolabe: Add two mana of any one color to your mana pool. Draw a card at the beginning of the next turn's upkeep.|
+Astrolabe|Masters Edition III|189|C|{3}|Artifact|||{1}, {tap}, Sacrifice Astrolabe: Add two mana of any one color. Draw a card at the beginning of the next turn's upkeep.|
Liu Bei, Lord of Shu|Masters Edition III|19|R|{3}{W}{W}|Legendary Creature - Human Soldier|2|4|Horsemanship (This creature can't be blocked except by creatures with horsemanship.)$Liu Bei, Lord of Shu gets +2/+2 as long as you control a permanent named Guan Yu, Sainted Warrior or a permanent named Zhang Fei, Fierce Warrior.|
Barl's Cage|Masters Edition III|190|R|{4}|Artifact|||{3}: Target creature doesn't untap during its controller's next untap step.|
Black Vise|Masters Edition III|191|R|{1}|Artifact|||As Black Vise enters the battlefield, choose an opponent.$At the beginning of the chosen player's upkeep, Black Vise deals X damage to that player, where X is the number of cards in his or her hand minus 4.|
Bone Flute|Masters Edition III|192|C|{3}|Artifact|||{2}, {tap}: All creatures get -1/-0 until end of turn.|
Coal Golem|Masters Edition III|193|C|{5}|Artifact Creature - Golem|3|3|{3}, Sacrifice Coal Golem: Add {R}{R}{R}.|
Didgeridoo|Masters Edition III|194|U|{1}|Artifact|||{3}: You may put a Minotaur permanent card from your hand onto the battlefield.|
-Fellwar Stone|Masters Edition III|195|C|{2}|Artifact|||{tap}: Add to your mana pool one mana of any color that a land an opponent controls could produce.|
+Fellwar Stone|Masters Edition III|195|C|{2}|Artifact|||{tap}: Add one mana of any color that a land an opponent controls could produce.|
Gauntlets of Chaos|Masters Edition III|196|R|{5}|Artifact|||{5}, Sacrifice Gauntlets of Chaos: Exchange control of target artifact, creature, or land you control and target permanent an opponent controls that shares one of those types with it. If those permanents are exchanged this way, destroy all Auras attached to them.|
Illusionary Mask|Masters Edition III|197|R|{2}|Artifact|||{X}: You may choose a creature card in your hand whose mana cost could be paid by some amount of, or all of, the mana you spent on {X}. If you do, you may cast that card face down as a 2/2 creature spell without paying its mana cost. If the creature that spell becomes as it resolves has not been turned face up and would assign or deal damage, be dealt damage, or become tapped, instead it's turned face up and assigns or deals damage, is dealt damage, or becomes tapped. Activate this ability only any time you could cast a sorcery.|
Knowledge Vault|Masters Edition III|198|U|{4}|Artifact|||{2}, {tap}: Exile the top card of your library face down.${0}: Sacrifice Knowledge Vault. If you do, discard your hand, then put all cards exiled with Knowledge Vault into their owner's hand.$When Knowledge Vault leaves the battlefield, put all cards exiled with Knowledge Vault into their owner's graveyard.|
Life Chisel|Masters Edition III|199|R|{4}|Artifact|||Sacrifice a creature: You gain life equal to the sacrificed creature's toughness. Activate this ability only during your upkeep.|
-Alabaster Potion|Masters Edition III|2|U|{X}{W}{W}|Instant|||Choose one - Target player gains X life; or prevent the next X damage that would be dealt to target creature or player this turn.|
+Alabaster Potion|Masters Edition III|2|U|{X}{W}{W}|Instant|||Choose one - Target player gains X life; or prevent the next X damage that would be dealt to any target this turn.|
Loyal Retainers|Masters Edition III|20|U|{2}{W}|Creature - Human Advisor|1|1|Sacrifice Loyal Retainers: Return target legendary creature card from your graveyard to the battlefield. Activate this ability only during your turn, before attackers are declared.|
Nova Pentacle|Masters Edition III|200|R|{4}|Artifact|||{3}, {tap}: The next time a source of your choice would deal damage to you this turn, that damage is dealt to target creature of an opponent's choice instead.|
-Sol Grail|Masters Edition III|201|C|{3}|Artifact|||As Sol Grail enters the battlefield, choose a color.${tap}: Add one mana of the chosen color to your mana pool.|
-Sword of the Ages|Masters Edition III|202|R|{6}|Artifact|||Sword of the Ages enters the battlefield tapped.${tap}, Sacrifice Sword of the Ages and any number of creatures you control: Sword of the Ages deals X damage to target creature or player, where X is the total power of the creatures sacrificed this way, then exile Sword of the Ages and those creature cards.|
-Voodoo Doll|Masters Edition III|203|R|{6}|Artifact|||At the beginning of your upkeep, put a pin counter on Voodoo Doll.$At the beginning of your end step, if Voodoo Doll is untapped, destroy Voodoo Doll and it deals damage to you equal to the number of pin counters on it.${X}{X}, {tap}: Voodoo Doll deals damage equal to the number of pin counters on it to target creature or player. X is the number of pin counters on Voodoo Doll.|
+Sol Grail|Masters Edition III|201|C|{3}|Artifact|||As Sol Grail enters the battlefield, choose a color.${tap}: Add one mana of the chosen color.|
+Sword of the Ages|Masters Edition III|202|R|{6}|Artifact|||Sword of the Ages enters the battlefield tapped.${tap}, Sacrifice Sword of the Ages and any number of creatures you control: Sword of the Ages deals X damage to any target, where X is the total power of the creatures sacrificed this way, then exile Sword of the Ages and those creature cards.|
+Voodoo Doll|Masters Edition III|203|R|{6}|Artifact|||At the beginning of your upkeep, put a pin counter on Voodoo Doll.$At the beginning of your end step, if Voodoo Doll is untapped, destroy Voodoo Doll and it deals damage to you equal to the number of pin counters on it.${X}{X}, {tap}: Voodoo Doll deals damage equal to the number of pin counters on it to any target. X is the number of pin counters on Voodoo Doll.|
Bayou|Masters Edition III|204|R||Land - Swamp Forest||||
Bazaar of Baghdad|Masters Edition III|205|R||Land|||{tap}: Draw two cards, then discard three cards.|
City of Shadows|Masters Edition III|206|R||Land|||{tap}, Exile a creature you control: Put a storage counter on City of Shadows.${tap}: Add X mana of {C}, where X is the number of storage counters on City of Shadows.|
@@ -15087,7 +15087,7 @@ Shu General|Masters Edition III|25|C|{3}{W}|Creature - Human Soldier|2|2|Vigilan
Shu Soldier-Farmers|Masters Edition III|26|C|{4}{W}|Creature - Human Soldier|2|4|When Shu Soldier-Farmers enters the battlefield, you gain 4 life.|
Wall of Light|Masters Edition III|27|C|{2}{W}|Creature - Wall|1|5|Defender (This creature can't attack.)$Protection from black|
Zhang Fei, Fierce Warrior|Masters Edition III|28|U|{4}{W}{W}|Legendary Creature - Human Soldier Warrior|4|4|Vigilance; horsemanship (This creature can't be blocked except by creatures with horsemanship.)|
-Benthic Explorers|Masters Edition III|29|C|{3}{U}|Creature - Merfolk Scout|2|4|{tap}, Untap a tapped land an opponent controls: Add one mana of any type that land could produce to your mana pool.|
+Benthic Explorers|Masters Edition III|29|C|{3}{U}|Creature - Merfolk Scout|2|4|{tap}, Untap a tapped land an opponent controls: Add one mana of any type that land could produce.|
Amrou Kithkin|Masters Edition III|3|C|{W}{W}|Creature - Kithkin|1|1|Amrou Kithkin can't be blocked by creatures with power 3 or greater.|
Boomerang|Masters Edition III|30|C|{U}{U}|Instant|||Return target permanent to its owner's hand.|
Borrowing 100,000 Arrows|Masters Edition III|31|U|{2}{U}|Sorcery|||Draw a card for each tapped creature target opponent controls.|
@@ -15109,18 +15109,18 @@ Old Man of the Sea|Masters Edition III|45|R|{1}{U}{U}|Creature - Djinn|2|3|You m
Recall|Masters Edition III|46|U|{X}{X}{U}|Sorcery|||Discard X cards, then return a card from your graveyard to your hand for each card discarded this way. Exile Recall.|
Remove Soul|Masters Edition III|47|C|{1}{U}|Instant|||Counter target creature spell.|
Reset|Masters Edition III|48|R|{U}{U}|Instant|||Cast Reset only during an opponent's turn after his or her upkeep step.$Untap all lands you control.|
-Reveka, Wizard Savant|Masters Edition III|49|U|{2}{U}{U}|Legendary Creature - Dwarf Wizard|0|1|{tap}: Reveka, Wizard Savant deals 2 damage to target creature or player and doesn't untap during your next untap step.|
+Reveka, Wizard Savant|Masters Edition III|49|U|{2}{U}{U}|Legendary Creature - Dwarf Wizard|0|1|{tap}: Reveka, Wizard Savant deals 2 damage to any target and doesn't untap during your next untap step.|
Cleanse|Masters Edition III|5|R|{2}{W}{W}|Sorcery|||Destroy all black creatures.|
Spiny Starfish|Masters Edition III|50|U|{2}{U}|Creature - Starfish|0|1|{U}: Regenerate Spiny Starfish.$At the beginning of each end step, if Spiny Starfish regenerated this turn, put a 0/1 blue Starfish creature token onto the battlefield for each time it regenerated this turn.|
Strategic Planning|Masters Edition III|51|C|{1}{U}|Sorcery|||Look at the top three cards of your library. Put one of them into your hand and the rest into your graveyard.|
Sun Ce, Young Conquerer|Masters Edition III|52|U|{3}{U}{U}|Legendary Creature - Human Soldier|3|3|Horsemanship (This creature can't be blocked except by creatures with horsemanship.)$When Sun Ce, Young Conquerer enters the battlefield, you may return target creature to its owner's hand.|
Sun Quan, Lord of Wu|Masters Edition III|53|R|{4}{U}{U}|Legendary Creature - Human Soldier|4|4|Creatures you control have horsemanship. (They can't be blocked except by creatures with horsemanship.)|
Wu Elite Cavalry|Masters Edition III|54|C|{3}{U}|Creature - Human Soldier|2|3|Horsemanship (This creature can't be blocked except by creatures with horsemanship.)|
-Wu Longbowman|Masters Edition III|55|C|{2}{U}|Creature - Human Soldier Archer|1|1|{tap}: Wu Longbowman deals 1 damage to target creature or player. Activate this ability only during your turn, before attackers are declared.|
+Wu Longbowman|Masters Edition III|55|C|{2}{U}|Creature - Human Soldier Archer|1|1|{tap}: Wu Longbowman deals 1 damage to any target. Activate this ability only during your turn, before attackers are declared.|
Wu Warship|Masters Edition III|56|C|{2}{U}|Creature - Human Soldier|3|3|Wu Warship can't attack unless defending player controls an Island.|
All Hallow's Eve|Masters Edition III|57|R|{2}{B}{B}|Sorcery|||Exile All Hallow's Eve with two scream counters on it.$At the beginning of your upkeep, if All Hallow's Eve is exiled with a scream counter on it, remove a scream counter from it. If there are no more scream counters on it, put it into your graveyard and each player returns all creature cards from his or her graveyard to the battlefield.|
Ashes to Ashes|Masters Edition III|58|U|{1}{B}{B}|Sorcery|||Exile two target nonartifact creatures. Ashes to Ashes deals 5 damage to you.|
-Banshee|Masters Edition III|59|U|{2}{B}{B}|Creature - Spirit|0|1|{X}, {tap}: Banshee deals half X damage, rounded down, to target creature or player, and half X damage, rounded up, to you.|
+Banshee|Masters Edition III|59|U|{2}{B}{B}|Creature - Spirit|0|1|{X}, {tap}: Banshee deals half X damage, rounded down, to any target, and half X damage, rounded up, to you.|
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.|
Carrion Ants|Masters Edition III|60|U|{2}{B}{B}|Creature - Insect|0|1|{1}: Carrion Ants gets +1/+1 until end of turn.|
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.|
@@ -15155,14 +15155,14 @@ Anaba Spirit Crafter|Masters Edition III|87|C|{2}{R}{R}|Creature - Minotaur Sham
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.|
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.|
Eightfold Maze|Masters Edition III|9|U|{2}{W}|Instant|||Cast Eightfold Maze only during the declare attackers step and only if you've been attacked this step.$Destroy target attacking creature.|
-Chain Lightning|Masters Edition III|90|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.|
-Cinder Storm|Masters Edition III|91|U|{6}{R}|Sorcery|||Cinder Storm deals 7 damage to target creature or player.|
+Chain Lightning|Masters Edition III|90|C|{R}|Sorcery|||Chain Lightning deals 3 damage to any target. 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.|
+Cinder Storm|Masters Edition III|91|U|{6}{R}|Sorcery|||Cinder Storm deals 7 damage to any target.|
Corrupt Eunuchs|Masters Edition III|92|U|{3}{R}|Creature - Human Advisor|2|2|When Corrupt Eunuchs enters the battlefield, it deals 2 damage to target creature.|
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.|
Dong Zhou, the Tyrant|Masters Edition III|96|R|{4}{R}|Legendary Creature - Human Soldier|3|3|When Dong Zhou, the Tyrant enters the battlefield, target creature an opponent controls deals damage equal to its power to that player.|
-Fire Ambush|Masters Edition III|97|C|{1}{R}|Sorcery|||Fire Ambush deals 3 damage to target creature or player.|
+Fire Ambush|Masters Edition III|97|C|{1}{R}|Sorcery|||Fire Ambush deals 3 damage to any target.|
Fire Drake|Masters Edition III|98|C|{1}{R}{R}|Creature - Drake|1|2|Flying${R}: Fire Drake gets +1/+0 until end of turn. Activate this ability only once each turn.|
Firestorm Phoenix|Masters Edition III|99|R|{4}{R}{R}|Creature - Phoenix|3|2|Flying$If Firestorm Phoenix would die, return Firestorm Phoenix to its owner's hand instead. Until that player's next turn, that player plays with that card revealed in his or her hand and can't play it.|
Alaborn Musketeer|Masters Edition IV|1|C|{1}{W}|Creature - Human Soldier|2|1|Reach (This creature can block creatures with flying.)|
@@ -15189,7 +15189,7 @@ Goblin Bully|Masters Edition IV|117|C|{1}{R}|Creature - Goblin|2|1||
Goblin Cavaliers|Masters Edition IV|118|C|{2}{R}|Creature - Goblin|3|2||
Goblin Caves|Masters Edition IV|119|C|{1}{R}{R}|Enchantment - Aura|||Enchant land$As long as enchanted land is a basic Mountain, Goblin creatures get +0/+2.|
Eye for an Eye|Masters Edition IV|12|R|{W}{W}|Instant|||The next time a source of your choice would deal damage to you this turn, instead that source deals that much damage to you and Eye for an Eye deals that much damage to that source's controller.|
-Goblin Firestarter|Masters Edition IV|120|C|{R}|Creature - Goblin|1|1|Sacrifice Goblin Firestarter: Goblin Firestarter deals 1 damage to target creature or player. Activate this ability only during your turn, before attackers are declared.|
+Goblin Firestarter|Masters Edition IV|120|C|{R}|Creature - Goblin|1|1|Sacrifice Goblin Firestarter: Goblin Firestarter deals 1 damage to any target. Activate this ability only during your turn, before attackers are declared.|
Goblin General|Masters Edition IV|121|U|{1}{R}{R}|Creature - Goblin Warrior|1|1|Whenever Goblin General attacks, Goblin creatures you control get +1/+1 until end of turn.|
Goblin Shrine|Masters Edition IV|122|C|{1}{R}{R}|Enchantment - Aura|||Enchant land$As long as enchanted land is a basic Mountain, Goblin creatures get +1/+0.$When Goblin Shrine leaves the battlefield, it deals 1 damage to each Goblin creature.|
Goblin Warrens|Masters Edition IV|123|U|{2}{R}|Enchantment|||{2}{R}, Sacrifice two Goblins: Put three 1/1 red Goblin creature tokens onto the battlefield.|
@@ -15198,7 +15198,7 @@ Last Chance|Masters Edition IV|125|R|{R}{R}|Sorcery|||Take an extra turn after t
Lava Flow|Masters Edition IV|126|C|{3}{R}{R}|Sorcery|||Destroy target creature or land.|
Mijae Djinn|Masters Edition IV|127|R|{R}{R}{R}|Creature - Djinn|6|3|Whenever Mijae Djinn attacks, flip a coin. If you lose the flip, remove Mijae Djinn from combat and tap it.|
Ogre Taskmaster|Masters Edition IV|128|C|{3}{R}|Creature - Ogre|4|3|Ogre Taskmaster can't block.|
-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.|
+Orcish Mechanics|Masters Edition IV|129|U|{2}{R}|Creature - Orc|1|1|{tap}, Sacrifice an artifact: Orcish Mechanics deals 2 damage to any target.|
Harsh Justice|Masters Edition IV|13|R|{2}{W}|Instant|||Cast Harsh Justice only during the declare attackers step and only if you've been attacked this step.$This turn, whenever an attacking creature deals combat damage to you, it deals that much damage to its controller.|
Primitive Justice|Masters Edition IV|130|U|{1}{R}|Sorcery|||As an additional cost to cast Primitive Justice, you may pay {1}{R} and/or {1}{G} any number of times.$Destroy target artifact. For each additional {1}{R} you paid, destroy another target artifact. For each additional {1}{G} you paid, destroy another target artifact, and you gain 1 life.|
Red Elemental Blast|Masters Edition IV|131|U|{R}|Instant|||Choose one - Counter target blue spell; or destroy target blue permanent.|
@@ -15210,12 +15210,12 @@ Shivan Dragon|Masters Edition IV|136|R|{4}{R}{R}|Creature - Dragon|5|5|Flying${R
Smoke|Masters Edition IV|137|R|{R}{R}|Enchantment|||Players can't untap more than one creature during their untap steps.|
Thunder Dragon|Masters Edition IV|138|R|{5}{R}{R}|Creature - Dragon|5|5|Flying$When Thunder Dragon enters the battlefield, it deals 3 damage to each creature without flying.|
Two-Headed Giant of Foriys|Masters Edition IV|139|U|{4}{R}|Creature - Giant|4|4|Trample$Two-Headed Giant of Foriys can block an additional creature each combat.|
-Healing Salve|Masters Edition IV|14|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to target creature or player this turn.|
+Healing Salve|Masters Edition IV|14|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to any target this turn.|
Wheel of Fortune|Masters Edition IV|140|R|{2}{R}|Sorcery|||Each player discards his or her hand and draws seven cards.|
Alluring Scent|Masters Edition IV|141|C|{1}{G}{G}|Sorcery|||All creatures able to block target creature this turn do so.|
Argothian Pixies|Masters Edition IV|142|C|{1}{G}|Creature - Faerie|2|1|Argothian Pixies can't be blocked by artifact creatures.$Prevent all damage that would be dealt to Argothian Pixies by artifact creatures.|
Argothian Treefolk|Masters Edition IV|143|U|{3}{G}{G}|Creature - Treefolk|3|5|Prevent all damage that would be dealt to Argothian Treefolk by artifact sources.|
-Bee Sting|Masters Edition IV|144|U|{3}{G}|Sorcery|||Bee Sting deals 2 damage to target creature or player.|
+Bee Sting|Masters Edition IV|144|U|{3}{G}|Sorcery|||Bee Sting deals 2 damage to any target.|
Channel|Masters Edition IV|145|R|{G}{G}|Sorcery|||Until end of turn, any time you could activate a mana ability, you may pay 1 life. If you do, add {C}.|
Citanul Druid|Masters Edition IV|146|C|{1}{G}|Creature - Human Druid|1|1|Whenever an opponent casts an artifact spell, put a +1/+1 counter on Citanul Druid.|
Crumble|Masters Edition IV|147|C|{G}|Instant|||Destroy target artifact. It can't be regenerated. That artifact's controller gains life equal to its converted mana cost.|
@@ -15253,7 +15253,7 @@ Wood Elemental|Masters Edition IV|175|R|{3}{G}|Creature - Elemental|*|*|As Wood
Aesthir Glider|Masters Edition IV|176|C|{3}|Artifact Creature - Bird|2|1|Flying$Aesthir Glider can't block.|
Al-abara's Carpet|Masters Edition IV|177|R|{5}|Artifact|||{5}, {tap}: Prevent all damage that would be dealt to you this turn by attacking creatures without flying.|
Alchor's Tomb|Masters Edition IV|178|R|{4}|Artifact|||{2}, {tap}: Target permanent you control becomes the color of your choice. (This effect lasts indefinitely.)|
-Amulet of Kroog|Masters Edition IV|179|C|{2}|Artifact|||{2}, {tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Amulet of Kroog|Masters Edition IV|179|C|{2}|Artifact|||{2}, {tap}: Prevent the next 1 damage that would be dealt to any target this turn.|
Leeches|Masters Edition IV|18|R|{1}{W}{W}|Sorcery|||Target player loses all poison counters. Leeches deals that much damage to that player.|
Armageddon Clock|Masters Edition IV|180|R|{6}|Artifact|||At the beginning of your upkeep, put a doom counter on Armageddon Clock.$At the beginning of your draw step, Armageddon Clock deals damage equal to the number of doom counters on it to each player.${4}: Remove a doom counter from Armageddon Clock. Any player may activate this ability but only during any upkeep step.|
Ashnod's Altar|Masters Edition IV|181|R|{3}|Artifact|||Sacrifice a creature: Add {C}{C}.|
@@ -15284,7 +15284,7 @@ Gauntlet of Might|Masters Edition IV|202|R|{4}|Artifact|||Red creatures get +1/+
Glasses of Urza|Masters Edition IV|203|C|{1}|Artifact|||{tap}: Look at target player's hand.|
Grapeshot Catapult|Masters Edition IV|204|U|{4}|Artifact Creature - Construct|2|3|{tap}: Grapeshot Catapult deals 1 damage to target creature with flying.|
Horn of Deafening|Masters Edition IV|205|U|{4}|Artifact|||{2}, {tap}: Prevent all combat damage that would be dealt by target creature this turn.|
-Ice Cauldron|Masters Edition IV|206|R|{4}|Artifact|||{X}, {tap}: Put a charge counter on Ice Cauldron and exile a nonland card from your hand. You may cast that card for as long as it remains exiled. Note the type and amount of mana spent to pay this activation cost. Activate this ability only if there are no charge counters on Ice Cauldron.${tap}, Remove a charge counter from Ice Cauldron: Add Ice Cauldron's last noted type and amount of mana to your mana pool. Spend this mana only to cast the last card exiled with Ice Cauldron.|
+Ice Cauldron|Masters Edition IV|206|R|{4}|Artifact|||{X}, {tap}: Put a charge counter on Ice Cauldron and exile a nonland card from your hand. You may cast that card for as long as it remains exiled. Note the type and amount of mana spent to pay this activation cost. Activate this ability only if there are no charge counters on Ice Cauldron.${tap}, Remove a charge counter from Ice Cauldron: Add Ice Cauldron's last noted type and amount of mana. Spend this mana only to cast the last card exiled with Ice Cauldron.|
Icy Manipulator|Masters Edition IV|207|U|{4}|Artifact|||{1}, {tap}: Tap target artifact, creature, or land.|
Jade Monolith|Masters Edition IV|208|R|{4}|Artifact|||{1}: The next time a source of your choice would deal damage to target creature this turn, that source deals that damage to you instead.|
Juggernaut|Masters Edition IV|209|U|{4}|Artifact Creature - Juggernaut|5|3|Juggernaut attacks each turn if able.$Juggernaut can't be blocked by Walls.|
@@ -15303,7 +15303,7 @@ Personal Incarnation|Masters Edition IV|22|R|{3}{W}{W}{W}|Creature - Avatar Inca
Pentagram of the Ages|Masters Edition IV|220|U|{4}|Artifact|||{4}, {tap}: The next time a source of your choice would deal damage to you this turn, prevent that damage.|
Planar Gate|Masters Edition IV|221|U|{6}|Artifact|||Creature spells you cast cost up to {2} less to cast.|
Primal Clay|Masters Edition IV|222|C|{4}|Artifact Creature - Shapeshifter|*|*|As Primal Clay enters the battlefield, it becomes your choice of a 3/3 artifact creature, a 2/2 artifact creature with flying, or a 1/6 Wall artifact creature with defender in addition to its other types. (A creature with defender can't attack.)|
-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.|
+Rakalite|Masters Edition IV|223|R|{6}|Artifact|||{2}: Prevent the next 1 damage that would be dealt to any target this turn. Return Rakalite to its owner's hand at the beginning of the next end step.|
Ring of Renewal|Masters Edition IV|224|R|{5}|Artifact|||{5}, {tap}: Discard a card at random, then draw two cards.|
Scarecrow|Masters Edition IV|225|U|{5}|Artifact Creature - Scarecrow|2|2|{6}, {tap}: Prevent all damage that would be dealt to you this turn by creatures with flying.|
Shapeshifter|Masters Edition IV|226|U|{6}|Artifact Creature - Shapeshifter|*|7-*|As Shapeshifter enters the battlefield, choose a number between 0 and 7.$At the beginning of your upkeep, you may choose a number between 0 and 7.$Shapeshifter's power is equal to the last chosen number and its toughness is equal to 7 minus that number.|
@@ -15325,7 +15325,7 @@ Savannah Lions|Masters Edition IV|24|U|{W}|Creature - Cat|2|1||
Yotian Soldier|Masters Edition IV|240|C|{3}|Artifact Creature - Soldier|1|4|Vigilance|
Badlands|Masters Edition IV|241|R||Land - Swamp Mountain||||
Bayou|Masters Edition IV|242|R||Land - Swamp Forest||||
-City of Brass|Masters Edition IV|243|R||Land|||Whenever City of Brass becomes tapped, it deals 1 damage to you.${tap}: Add one mana of any color to your mana pool.|
+City of Brass|Masters Edition IV|243|R||Land|||Whenever City of Brass becomes tapped, it deals 1 damage to you.${tap}: Add one mana of any color.|
Elephant Graveyard|Masters Edition IV|244|U||Land|||{tap}: Add {C}.${tap}: Regenerate target Elephant.|
Library of Alexandria|Masters Edition IV|245|R||Land|||{tap}: Add {C}.${tap}: Draw a card. Activate this ability only if you have exactly seven cards in hand.|
Maze of Ith|Masters Edition IV|246|R||Land|||{tap}: Untap target attacking creature. Prevent all combat damage that would be dealt to and dealt by that creature this turn.|
@@ -15379,7 +15379,7 @@ Owl Familiar|Masters Edition IV|54|C|{1}{U}|Creature - Bird|1|1|Flying$When Owl
Phantasmal Forces|Masters Edition IV|55|C|{3}{U}|Creature - Illusion|4|1|Flying$At the beginning of your upkeep, sacrifice Phantasmal Forces unless you pay {U}.|
Phantasmal Terrain|Masters Edition IV|56|C|{U}{U}|Enchantment - Aura|||Enchant land$As Phantasmal Terrain enters the battlefield, choose a basic land type.$Enchanted land is the chosen type.|
Power Artifact|Masters Edition IV|57|R|{U}{U}|Enchantment - Aura|||Enchant artifact$Enchanted artifact's activated abilities cost {2} less to activate. This effect can't reduce the amount of mana an ability costs to activate to less than one mana.|
-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.|
+Prodigal Sorcerer|Masters Edition IV|58|U|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to any target.|
Reconstruction|Masters Edition IV|59|C|{U}|Sorcery|||Return target artifact card from your graveyard to your hand.|
Balance|Masters Edition IV|6|R|{1}{W}|Sorcery|||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 discard cards and sacrifice creatures the same way.|
Sea Serpent|Masters Edition IV|60|C|{5}{U}|Creature - Serpent|5|5|Sea Serpent can't attack unless defending player controls an Island.$$When you control no Islands, sacrifice Sea Serpent.|
@@ -15434,7 +15434,7 @@ Shoving Match|Mercadian Masques|103|U|{2}{U}|Instant|||Until end of turn, all cr
Soothsaying|Mercadian Masques|104|U|{U}|Enchantment|||{3}{U}{U}: Shuffle your library.${X}: Look at the top X cards of your library, then put them back in any order.|
Squeeze|Mercadian Masques|105|R|{3}{U}|Enchantment|||Sorcery spells cost {3} more to cast.|
Statecraft|Mercadian Masques|106|R|{3}{U}|Enchantment|||Prevent all combat damage that would be dealt to and dealt by creatures you control.|
-Stinging Barrier|Mercadian Masques|107|C|{2}{U}{U}|Creature - Wall|0|4|Defender (This creature can't attack.)${U}, {tap}: Stinging Barrier deals 1 damage to target creature or player.|
+Stinging Barrier|Mercadian Masques|107|C|{2}{U}{U}|Creature - Wall|0|4|Defender (This creature can't attack.)${U}, {tap}: Stinging Barrier deals 1 damage to any target.|
Thwart|Mercadian Masques|108|U|{2}{U}{U}|Instant|||You may return three Islands you control to their owner's hand rather than pay Thwart's mana cost.$$Counter target spell.|
Tidal Bore|Mercadian Masques|109|C|{1}{U}|Instant|||You may return an Island you control to its owner's hand rather than pay Tidal Bore's mana cost.$You may tap or untap target creature.|
Cho-Manno, Revolutionary|Mercadian Masques|11|R|{2}{W}{W}|Legendary Creature - Human Rebel|2|2|Prevent all damage that would be dealt to Cho-Manno, Revolutionary.|
@@ -15518,8 +15518,8 @@ Disenchant|Mercadian Masques|18|C|{1}{W}|Instant|||Destroy target artifact or en
Cave-In|Mercadian Masques|180|R|{3}{R}{R}|Sorcery|||You may exile a red card from your hand rather than pay Cave-In's mana cost.$Cave-In deals 2 damage to each creature and each player.|
Cavern Crawler|Mercadian Masques|181|C|{2}{R}|Creature - Insect|0|3|Mountainwalk${R}: Cavern Crawler gets +1/-1 until end of turn.|
Ceremonial Guard|Mercadian Masques|182|C|{2}{R}|Creature - Human Soldier|3|4|When Ceremonial Guard attacks or blocks, destroy it at end of combat.|
-Cinder Elemental|Mercadian Masques|183|U|{3}{R}|Creature - Elemental|2|2|{X}{R}, {tap}, Sacrifice Cinder Elemental: Cinder Elemental deals X damage to target creature or player.|
-Close Quarters|Mercadian Masques|184|U|{2}{R}{R}|Enchantment|||Whenever a creature you control becomes blocked, Close Quarters deals 1 damage to target creature or player.|
+Cinder Elemental|Mercadian Masques|183|U|{3}{R}|Creature - Elemental|2|2|{X}{R}, {tap}, Sacrifice Cinder Elemental: Cinder Elemental deals X damage to any target.|
+Close Quarters|Mercadian Masques|184|U|{2}{R}{R}|Enchantment|||Whenever a creature you control becomes blocked, Close Quarters deals 1 damage to any target.|
Crag Saurian|Mercadian Masques|185|R|{R}{R}{R}|Creature - Lizard|4|4|Whenever a source deals damage to Crag Saurian, that source's controller gains control of Crag Saurian.|
Crash|Mercadian Masques|186|C|{2}{R}|Instant|||You may sacrifice a Mountain rather than pay Crash's mana cost.$$Destroy target artifact.|
Flailing Manticore|Mercadian Masques|187|R|{3}{R}|Creature - Manticore|3|3|Flying, first strike${1}: Flailing Manticore gets +1/+1 until end of turn. Any player may activate this ability.${1}: Flailing Manticore gets -1/-1 until end of turn. Any player may activate this ability.|
@@ -15531,12 +15531,12 @@ Furious Assault|Mercadian Masques|191|C|{2}{R}|Enchantment|||Whenever you cast a
Gerrard's Irregulars|Mercadian Masques|192|C|{4}{R}|Creature - Human Soldier|4|2|Trample, haste|
Hammer Mage|Mercadian Masques|193|U|{1}{R}|Creature - Human Spellshaper|1|1|{X}{R}, {tap}, Discard a card: Destroy all artifacts with converted mana cost X or less.|
Hired Giant|Mercadian Masques|194|U|{3}{R}|Creature - Giant|4|4|When Hired Giant enters the battlefield, each other player may search his or her library for a land card and put that card onto the battlefield. Then each player who searched his or her library this way shuffles it.|
-Kris Mage|Mercadian Masques|195|C|{R}|Creature - Human Spellshaper|1|1|{R}, {tap}, Discard a card: Kris Mage deals 1 damage to target creature or player.|
+Kris Mage|Mercadian Masques|195|C|{R}|Creature - Human Spellshaper|1|1|{R}, {tap}, Discard a card: Kris Mage deals 1 damage to any target.|
Kyren Glider|Mercadian Masques|196|C|{1}{R}|Creature - Goblin|1|1|Flying$Kyren Glider can't block.|
Kyren Legate|Mercadian Masques|197|U|{1}{R}|Creature - Goblin|1|1|Haste$If an opponent controls a Plains and you control a Mountain, you may cast Kyren Legate without paying its mana cost.|
Kyren Negotiations|Mercadian Masques|198|U|{2}{R}{R}|Enchantment|||Tap an untapped creature you control: Kyren Negotiations deals 1 damage to target player.|
Kyren Sniper|Mercadian Masques|199|C|{2}{R}|Creature - Goblin|1|1|At the beginning of your upkeep, you may have Kyren Sniper deal 1 damage to target player.|
-Alabaster Wall|Mercadian Masques|2|C|{2}{W}|Creature - Wall|0|4|Defender (This creature can't attack.)${tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Alabaster Wall|Mercadian Masques|2|C|{2}{W}|Creature - Wall|0|4|Defender (This creature can't attack.)${tap}: Prevent the next 1 damage that would be dealt to any target this turn.|
Fresh Volunteers|Mercadian Masques|20|C|{1}{W}|Creature - Human Rebel|2|2||
Lava Runner|Mercadian Masques|200|R|{1}{R}{R}|Creature - Lizard|2|2|Haste$Whenever Lava Runner becomes the target of a spell or ability, that spell or ability's controller sacrifices a land.|
Lightning Hounds|Mercadian Masques|201|C|{2}{R}{R}|Creature - Hound|3|2|First strike|
@@ -15551,7 +15551,7 @@ Robber Fly|Mercadian Masques|209|U|{2}{R}|Creature - Insect|1|1|Flying$Whenever
Honor the Fallen|Mercadian Masques|21|R|{1}{W}|Instant|||Exile all creature cards from all graveyards. You gain 1 life for each card exiled this way.|
Rock Badger|Mercadian Masques|210|U|{4}{R}|Creature - Badger Beast|3|3|Mountainwalk (This creature is unblockable as long as defending player controls a Mountain.)|
Seismic Mage|Mercadian Masques|211|R|{3}{R}|Creature - Human Spellshaper|1|1|{2}{R}, {tap}, Discard a card: Destroy target land.|
-Shock Troops|Mercadian Masques|212|C|{3}{R}|Creature - Human Soldier|2|2|Sacrifice Shock Troops: Shock Troops deals 2 damage to target creature or player.|
+Shock Troops|Mercadian Masques|212|C|{3}{R}|Creature - Human Soldier|2|2|Sacrifice Shock Troops: Shock Troops deals 2 damage to any target.|
Sizzle|Mercadian Masques|213|C|{2}{R}|Sorcery|||Sizzle deals 3 damage to each opponent.|
Squee, Goblin Nabob|Mercadian Masques|214|R|{2}{R}|Legendary Creature - Goblin|1|1|At the beginning of your upkeep, you may return Squee, Goblin Nabob from your graveyard to your hand.|
Stone Rain|Mercadian Masques|215|C|{2}{R}|Sorcery|||Destroy target land.|
@@ -15588,7 +15588,7 @@ Deepwood Wolverine|Mercadian Masques|242|C|{G}|Creature - Wolverine|1|1|Whenever
Desert Twister|Mercadian Masques|243|U|{4}{G}{G}|Sorcery|||Destroy target permanent.|
Erithizon|Mercadian Masques|244|R|{2}{G}{G}|Creature - Beast|4|4|Whenever Erithizon attacks, put a +1/+1 counter on target creature of defending player's choice.|
Ferocity|Mercadian Masques|245|C|{1}{G}|Enchantment - Aura|||Enchant creature$Whenever enchanted creature blocks or becomes blocked, you may put a +1/+1 counter on it.|
-Food Chain|Mercadian Masques|246|R|{2}{G}|Enchantment|||Exile a creature you control: Add X mana of any one color to your mana pool, where X is the exiled creature's converted mana cost plus one. Spend this mana only to cast creature spells.|
+Food Chain|Mercadian Masques|246|R|{2}{G}|Enchantment|||Exile a creature you control: Add X mana of any one color, where X is the exiled creature's converted mana cost plus one. Spend this mana only to cast creature spells.|
Foster|Mercadian Masques|247|R|{2}{G}{G}|Enchantment|||Whenever a creature you control dies, you may pay {1}. If you do, reveal cards from the top of your library until you reveal a creature card. Put that card into your hand and the rest into your graveyard.|
Game Preserve|Mercadian Masques|248|R|{2}{G}|Enchantment|||At the beginning of your upkeep, each player reveals the top card of his or her library. If all cards revealed this way are creature cards, put those cards onto the battlefield under their owners' control.|
Giant Caterpillar|Mercadian Masques|249|C|{3}{G}|Creature - Insect|3|3|{G}, Sacrifice Giant Caterpillar: Put a 1/1 green Insect creature token with flying named Butterfly onto the battlefield at the beginning of the next end step.|
@@ -15657,7 +15657,7 @@ Magistrate's Scepter|Mercadian Masques|304|R|{3}|Artifact|||{4}, {tap}: Put a ch
Mercadian Atlas|Mercadian Masques|305|R|{5}|Artifact|||At the beginning of your end step, if you didn't play a land this turn, you may draw a card.|
Mercadian Lift|Mercadian Masques|306|R|{2}|Artifact|||{1}, {tap}: Put a winch counter on Mercadian Lift.${tap}, Remove X winch counters from Mercadian Lift: You may put a creature card with converted mana cost X from your hand onto the battlefield.|
Monkey Cage|Mercadian Masques|307|R|{5}|Artifact|||When a creature enters the battlefield, sacrifice Monkey Cage and put X 2/2 green Ape creature tokens onto the battlefield, where X is that creature's converted mana cost.|
-Panacea|Mercadian Masques|308|U|{4}|Artifact|||{X}{X}, {tap}: Prevent the next X damage that would be dealt to target creature or player this turn.|
+Panacea|Mercadian Masques|308|U|{4}|Artifact|||{X}{X}, {tap}: Prevent the next X damage that would be dealt to any target this turn.|
Power Matrix|Mercadian Masques|309|R|{4}|Artifact|||{tap}: Target creature gets +1/+1 and gains flying, first strike, and trample until end of turn.|
Nightwind Glider|Mercadian Masques|31|C|{2}{W}|Creature - Human Rebel|2|1|Flying, protection from black|
Puffer Extract|Mercadian Masques|310|U|{5}|Artifact|||{X}, {tap}: Target creature you control gets +X/+X until end of turn. Destroy it at the beginning of the next end step.|
@@ -15668,7 +15668,7 @@ Toymaker|Mercadian Masques|314|U|{2}|Artifact Creature - Spellshaper|1|1|{1}, {t
Worry Beads|Mercadian Masques|315|R|{3}|Artifact|||At the beginning of each player's upkeep, that player puts the top card of his or her library into his or her graveyard.|
Dust Bowl|Mercadian Masques|316|R||Land|||{tap}: Add {C}.$${3}, {tap}, Sacrifice a land: Destroy target nonbasic land.|
Fountain of Cho|Mercadian Masques|317|U||Land|||Fountain of Cho enters the battlefield tapped.${tap}: Put a storage counter on Fountain of Cho.${tap}, Remove any number of storage counters from Fountain of Cho: Add {W} for each storage counter removed this way.|
-Henge of Ramos|Mercadian Masques|318|U||Land|||{tap}: Add {C}.$${2}, {tap}: Add one mana of any color to your mana pool.|
+Henge of Ramos|Mercadian Masques|318|U||Land|||{tap}: Add {C}.$${2}, {tap}: Add one mana of any color.|
Hickory Woodlot|Mercadian Masques|319|C||Land|||Hickory Woodlot enters the battlefield tapped with two depletion counters on it.${tap}, Remove a depletion counter from Hickory Woodlot: Add {G}{G}. If there are no depletion counters on Hickory Woodlot, sacrifice it.|
Noble Purpose|Mercadian Masques|32|U|{3}{W}{W}|Enchantment|||Whenever a creature you control deals combat damage, you gain that much life.|
High Market|Mercadian Masques|320|R||Land|||{tap}: Add {C}.${tap}, Sacrifice a creature: You gain 1 life.|
@@ -15681,7 +15681,7 @@ Sandstone Needle|Mercadian Masques|326|C||Land|||Sandstone Needle enters the bat
Saprazzan Cove|Mercadian Masques|327|U||Land|||Saprazzan Cove enters the battlefield tapped.${tap}: Put a storage counter on Saprazzan Cove.${tap}, Remove any number of storage counters from Saprazzan Cove: Add {U} for each storage counter removed this way.|
Saprazzan Skerry|Mercadian Masques|328|C||Land|||Saprazzan Skerry enters the battlefield tapped with two depletion counters on it.${tap}, Remove a depletion counter from Saprazzan Skerry: Add {U}{U}. If there are no depletion counters on Saprazzan Skerry, sacrifice it.|
Subterranean Hangar|Mercadian Masques|329|U||Land|||Subterranean Hangar enters the battlefield tapped.${tap}: Put a storage counter on Subterranean Hangar.${tap}, Remove any number of storage counters from Subterranean Hangar: Add {B} for each storage counter removed this way.|
-Orim's Cure|Mercadian Masques|33|C|{1}{W}|Instant|||If you control a Plains, you may tap an untapped creature you control rather than pay Orim's Cure's mana cost.$Prevent the next 4 damage that would be dealt to target creature or player this turn.|
+Orim's Cure|Mercadian Masques|33|C|{1}{W}|Instant|||If you control a Plains, you may tap an untapped creature you control rather than pay Orim's Cure's mana cost.$Prevent the next 4 damage that would be dealt to any target this turn.|
Tower of the Magistrate|Mercadian Masques|330|R||Land|||{tap}: Add {C}.$${1}, {tap}: Target creature gains protection from artifacts until end of turn.|
Plains|Mercadian Masques|331|L||Basic Land - Plains|||W|
Plains|Mercadian Masques|332|L||Basic Land - Plains|||W|
@@ -15798,7 +15798,7 @@ Fog|Mirage|114|C|{G}|Instant|||Prevent all combat damage that would be dealt thi
Foratog|Mirage|115|U|{2}{G}|Creature - Atog|1|2|{G}, Sacrifice a Forest: Foratog gets +2/+2 until end of turn.|
Giant Mantis|Mirage|116|C|{3}{G}|Creature - Insect|2|4|Reach (This creature can block creatures with flying.)|
Gibbering Hyenas|Mirage|117|C|{2}{G}|Creature - Hyena|3|2|Gibbering Hyenas can't block black creatures.|
-Granger Guildmage|Mirage|118|C|{G}|Creature - Human Wizard|1|1|{R}, {tap}: Granger Guildmage deals 1 damage to target creature or player and 1 damage to you.${W}, {tap}: Target creature gains first strike until end of turn.|
+Granger Guildmage|Mirage|118|C|{G}|Creature - Human Wizard|1|1|{R}, {tap}: Granger Guildmage deals 1 damage to any target and 1 damage to you.${W}, {tap}: Target creature gains first strike until end of turn.|
Hall of Gemstone|Mirage|119|R|{1}{G}{G}|World Enchantment|||At the beginning of each player's upkeep, that player chooses a color. Until end of turn, lands tapped for mana produce mana of the chosen color instead of any other color.|
Crypt Cobra|Mirage|12|U|{3}{B}|Creature - Snake|3|3|Whenever Crypt Cobra attacks and isn't blocked, defending player gets a poison counter. (A player with ten or more poison counters loses the game.)|
Jolrael's Centaur|Mirage|120|C|{1}{G}{G}|Creature - Centaur Archer|2|2|Shroud (This permanent can't be the target of spells or abilities.)$Flanking (Whenever a creature without flanking blocks this creature, the blocking creature gets -1/-1 until end of turn.)|
@@ -15814,7 +15814,7 @@ Natural Balance|Mirage|129|R|{2}{G}{G}|Sorcery|||Each player who controls six or
Dark Banishing|Mirage|13|C|{2}{B}|Instant|||Destroy target nonblack creature. It can't be regenerated.|
Nettletooth Djinn|Mirage|130|U|{3}{G}|Creature - Djinn|4|4|At the beginning of your upkeep, Nettletooth Djinn deals 1 damage to you.|
Preferred Selection|Mirage|131|R|{2}{G}{G}|Enchantment|||At the beginning of your upkeep, look at the top two cards of your library. You may sacrifice Preferred Selection and pay {2}{G}{G}. If you do, put one of those cards into your hand. If you don't, put one of those cards on the bottom of your library.|
-Quirion Elves|Mirage|132|C|{1}{G}|Creature - Elf Druid|1|1|As Quirion Elves enters the battlefield, choose a color.${tap}: Add {G}.${tap}: Add one mana of the chosen color to your mana pool.|
+Quirion Elves|Mirage|132|C|{1}{G}|Creature - Elf Druid|1|1|As Quirion Elves enters the battlefield, choose a color.${tap}: Add {G}.${tap}: Add one mana of the chosen color.|
Rampant Growth|Mirage|133|C|{1}{G}|Sorcery|||Search your library for a basic land card and put that card onto the battlefield tapped. Then shuffle your library.|
Regeneration|Mirage|134|C|{1}{G}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)${G}: Regenerate enchanted creature. (The next time that creature would be destroyed this turn, it isn't. Instead tap it, remove all damage from it, and remove it from combat.)|
Roots of Life|Mirage|135|U|{1}{G}{G}|Enchantment|||As Roots of Life enters the battlefield, choose Island or Swamp.$Whenever a land of the chosen type an opponent controls becomes tapped, you gain 1 life.|
@@ -15831,7 +15831,7 @@ Tropical Storm|Mirage|144|U|{X}{G}|Sorcery|||Tropical Storm deals X damage to ea
Uktabi Faerie|Mirage|145|C|{1}{G}|Creature - Faerie|1|1|Flying${3}{G}, Sacrifice Uktabi Faerie: Destroy target artifact.|
Uktabi Wildcats|Mirage|146|R|{4}{G}|Creature - Cat|*|*|Uktabi Wildcats's power and toughness are each equal to the number of Forests you control.${G}, Sacrifice a Forest: Regenerate Uktabi Wildcats.|
Unseen Walker|Mirage|147|U|{1}{G}|Creature - Dryad|1|1|Forestwalk$${1}{G}{G}: Target creature gains forestwalk until end of turn.|
-Unyaro Bee Sting|Mirage|148|U|{3}{G}|Sorcery|||Unyaro Bee Sting deals 2 damage to target creature or player.|
+Unyaro Bee Sting|Mirage|148|U|{3}{G}|Sorcery|||Unyaro Bee Sting deals 2 damage to any target.|
Village Elder|Mirage|149|C|{G}|Creature - Human Druid|1|1|{G}, {tap}, Sacrifice a Forest: Regenerate target creature.|
Dirtwater Wraith|Mirage|15|C|{3}{B}|Creature - Wraith|1|3|Swampwalk$${B}: Dirtwater Wraith gets +1/+0 until end of turn.|
Waiting in the Weeds|Mirage|150|R|{1}{G}{G}|Sorcery|||Each player puts a 1/1 green Cat creature token onto the battlefield for each untapped Forest he or she controls.|
@@ -15844,7 +15844,7 @@ Armorer Guildmage|Mirage|156|C|{R}|Creature - Human Wizard|1|1|{B}, {tap}: Targe
Barreling Attack|Mirage|157|R|{2}{R}{R}|Instant|||Target creature gains trample until end of turn. When that creature becomes blocked this turn, it gets +1/+1 until end of turn for each creature blocking it.|
Blind Fury|Mirage|158|U|{2}{R}{R}|Instant|||Cast Blind Fury only before the combat damage step.$All creatures lose trample until end of turn. If a creature would deal combat damage to a creature this turn, it deals double that damage to that creature instead.|
Blistering Barrier|Mirage|159|C|{2}{R}|Creature - Wall|5|2|Defender (This creature can't attack.)|
-Drain Life|Mirage|16|C|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Drain Life deals X damage to target creature or player. You gain life equal to the damage dealt, but not more life than the player's life total before Drain Life dealt damage or the creature's toughness.|
+Drain Life|Mirage|16|C|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Drain Life deals X damage to any target. You gain life equal to the damage dealt, but not more life than the player's life total before Drain Life dealt damage or the creature's toughness.|
Builder's Bane|Mirage|160|C|{X}{X}{R}|Sorcery|||Destroy X target artifacts. Builder's Bane deals damage to each player equal to the number of artifacts he or she controlled put into a graveyard this way.|
Burning Palm Efreet|Mirage|161|U|{2}{R}{R}|Creature - Efreet|2|2|{1}{R}{R}: Burning Palm Efreet deals 2 damage to target creature with flying and that creature loses flying until end of turn.|
Burning Shield Askari|Mirage|162|C|{2}{R}|Creature - Human Knight|2|2|Flanking (Whenever a creature without flanking blocks this creature, the blocking creature gets -1/-1 until end of turn.)${R}{R}: Burning Shield Askari gains first strike until end of turn.|
@@ -15861,21 +15861,21 @@ Emberwilde Djinn|Mirage|172|R|{2}{R}{R}|Creature - Djinn|5|4|Flying$$At the begi
Final Fortune|Mirage|173|R|{R}{R}|Instant|||Take an extra turn after this one. At the beginning of that turn's end step, you lose the game.|
Firebreathing|Mirage|174|C|{R}|Enchantment - Aura|||Enchant creature${R}: Enchanted creature gets +1/+0 until end of turn.|
Flame Elemental|Mirage|175|U|{2}{R}{R}|Creature - Elemental|3|2|{R}, {tap}, Sacrifice Flame Elemental: Flame Elemental deals damage equal to its power to target creature.|
-Flare|Mirage|176|C|{2}{R}|Instant|||Flare deals 1 damage to target creature or player.$$Draw a card at the beginning of the next turn's upkeep.|
+Flare|Mirage|176|C|{2}{R}|Instant|||Flare deals 1 damage to any target.$$Draw a card at the beginning of the next turn's upkeep.|
Goblin Elite Infantry|Mirage|177|C|{1}{R}|Creature - Goblin Warrior|2|2|Whenever Goblin Elite Infantry blocks or becomes blocked, it gets -1/-1 until end of turn.|
Goblin Scouts|Mirage|178|U|{3}{R}{R}|Sorcery|||Put three 1/1 red Goblin Scout creature tokens with mountainwalk onto the battlefield.|
Goblin Soothsayer|Mirage|179|U|{R}|Creature - Goblin Shaman|1|1|{R}, {tap}, Sacrifice a Goblin: Red creatures get +1/+1 until end of turn.|
Ebony Charm|Mirage|18|C|{B}|Instant|||Choose one - Target opponent loses 1 life and you gain 1 life; or exile up to three target cards from a single graveyard; or target creature gains fear until end of turn. (It can't be blocked except by artifact creatures and/or black creatures.)|
Goblin Tinkerer|Mirage|180|C|{1}{R}|Creature - Goblin Artificer|1|2|{R}, {tap}: Destroy target artifact. That artifact deals damage equal to its converted mana cost to Goblin Tinkerer.|
-Hammer of Bogardan|Mirage|181|R|{1}{R}{R}|Sorcery|||Hammer of Bogardan deals 3 damage to target creature or player.${2}{R}{R}{R}: Return Hammer of Bogardan from your graveyard to your hand. Activate this ability only during your upkeep.|
+Hammer of Bogardan|Mirage|181|R|{1}{R}{R}|Sorcery|||Hammer of Bogardan deals 3 damage to any target.${2}{R}{R}{R}: Return Hammer of Bogardan from your graveyard to your hand. Activate this ability only during your upkeep.|
Hivis of the Scale|Mirage|182|R|{3}{R}{R}|Legendary Creature - Viashino Shaman|3|4|You may choose not to untap Hivis of the Scale during your untap step.${tap}: Gain control of target Dragon for as long as you control Hivis and Hivis remains tapped.|
Illicit Auction|Mirage|183|R|{3}{R}{R}|Sorcery|||Each player may bid life for control of target creature. You start the bidding with a bid of 0. In turn order, each player may top the high bid. The bidding ends if the high bid stands. The high bidder loses life equal to the high bid and gains control of the creature. (This effect lasts indefinitely.)|
-Incinerate|Mirage|184|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.|
-Kaervek's Torch|Mirage|185|C|{X}{R}|Sorcery|||As long as Kaervek's Torch is on the stack, spells that target it cost {2} more to cast.$Kaervek's Torch deals X damage to target creature or player.|
+Incinerate|Mirage|184|C|{1}{R}|Instant|||Incinerate deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.|
+Kaervek's Torch|Mirage|185|C|{X}{R}|Sorcery|||As long as Kaervek's Torch is on the stack, spells that target it cost {2} more to cast.$Kaervek's Torch deals X damage to any target.|
Lightning Reflexes|Mirage|186|C|{1}{R}|Enchantment - Aura|||You may cast Lightning Reflexes as though it had flash. If you cast it any time a sorcery couldn't have been cast, the controller of the permanent it becomes sacrifices it at the beginning of the next cleanup step.$Enchant creature$Enchanted creature gets +1/+0 and has first strike.|
Pyric Salamander|Mirage|187|C|{1}{R}|Creature - Salamander|1|1|{R}: Pyric Salamander gets +1/+0 until end of turn. Sacrifice Pyric Salamander at the beginning of the next end step.|
Raging Spirit|Mirage|188|C|{3}{R}|Creature - Spirit|3|3|{2}: Raging Spirit becomes colorless until end of turn.|
-Reckless Embermage|Mirage|189|R|{3}{R}|Creature - Human Wizard|2|2|{1}{R}: Reckless Embermage deals 1 damage to target creature or player and 1 damage to itself.|
+Reckless Embermage|Mirage|189|R|{3}{R}|Creature - Human Wizard|2|2|{1}{R}: Reckless Embermage deals 1 damage to any target and 1 damage to itself.|
Enfeeblement|Mirage|19|C|{B}{B}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Enchanted creature gets -2/-2.|
Reign of Chaos|Mirage|190|U|{2}{R}{R}|Sorcery|||Choose one - Destroy target Plains and target white creature; or destroy target Island and target blue creature.|
Searing Spear Askari|Mirage|191|C|{2}{R}|Creature - Human Knight|2|2|Flanking (Whenever a creature without flanking blocks this creature, the blocking creature gets -1/-1 until end of turn.)${1}{R}: Searing Spear Askari can't be blocked except by two or more creatures this turn.|
@@ -15892,7 +15892,7 @@ Ashen Powder|Mirage|2|R|{2}{B}{B}|Sorcery|||Put target creature card from an opp
Feral Shadow|Mirage|20|C|{2}{B}|Creature - Nightstalker|2|1|Flying|
Viashino Warrior|Mirage|200|C|{3}{R}|Creature - Viashino Warrior|4|2||
Volcanic Dragon|Mirage|201|R|{4}{R}{R}|Creature - Dragon|4|4|Flying$Haste (This creature can attack and {tap} as soon as it comes under your control.)|
-Volcanic Geyser|Mirage|202|U|{X}{R}{R}|Instant|||Volcanic Geyser deals X damage to target creature or player.|
+Volcanic Geyser|Mirage|202|U|{X}{R}{R}|Instant|||Volcanic Geyser deals X damage to any target.|
Wildfire Emissary|Mirage|203|U|{3}{R}|Creature - Efreet|2|4|Protection from white${1}{R}: Wildfire Emissary gets +1/+0 until end of turn.|
Zirilan of the Claw|Mirage|204|R|{3}{R}{R}|Legendary Creature - Viashino Shaman|3|4|{1}{R}{R}, {tap}: Search your library for a Dragon permanent card and put that card onto the battlefield. Then shuffle your library. That Dragon gains haste until end of turn. Exile it at the beginning of the next end step.|
Afterlife|Mirage|205|U|{2}{W}|Instant|||Destroy target creature. It can't be regenerated. Its controller puts a 1/1 white Spirit creature token with flying onto the battlefield.|
@@ -15913,13 +15913,13 @@ Enlightened Tutor|Mirage|218|U|{W}|Instant|||Search your library for an artifact
Ethereal Champion|Mirage|219|R|{2}{W}{W}{W}|Creature - Avatar|3|4|Pay 1 life: Prevent the next 1 damage that would be dealt to Ethereal Champion this turn.|
Forbidden Crypt|Mirage|22|R|{3}{B}{B}|Enchantment|||If you would draw a card, return a card from your graveyard to your hand instead. If you can't, you lose the game.$If a card would be put into your graveyard from anywhere, exile that card instead.|
Favorable Destiny|Mirage|220|U|{1}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+2 as long as it's white.$Enchanted creature has shroud as long as its controller controls another creature. (It can't be the target of spells or abilities.)|
-Femeref Healer|Mirage|221|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Femeref Healer|Mirage|221|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.|
Femeref Knight|Mirage|222|C|{2}{W}|Creature - Human Knight|2|2|Flanking (Whenever a creature without flanking blocks this creature, the blocking creature gets -1/-1 until end of turn.)${W}: Femeref Knight gains vigilance until end of turn.|
Femeref Scouts|Mirage|223|C|{2}{W}|Creature - Human Scout|1|4||
-Healing Salve|Mirage|224|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to target creature or player this turn.|
+Healing Salve|Mirage|224|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to any target this turn.|
Illumination|Mirage|225|U|{W}{W}|Instant|||Counter target artifact or enchantment spell. Its controller gains life equal to its converted mana cost.|
Iron Tusk Elephant|Mirage|226|U|{4}{W}|Creature - Elephant|3|3|Trample|
-Ivory Charm|Mirage|227|C|{W}|Instant|||Choose one - All creatures get -2/-0 until end of turn; or tap target creature; or prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Ivory Charm|Mirage|227|C|{W}|Instant|||Choose one - All creatures get -2/-0 until end of turn; or tap target creature; or prevent the next 1 damage that would be dealt to any target this turn.|
Jabari's Influence|Mirage|228|R|{3}{W}{W}|Instant|||Cast Jabari's Influence only after combat.$Gain control of target nonartifact, nonblack creature that attacked you this turn and put a -1/-0 counter on it.|
Mangara's Blessing|Mirage|229|U|{2}{W}|Instant|||You gain 5 life.$When a spell or ability an opponent controls causes you to discard Mangara's Blessing, you gain 2 life, and you return Mangara's Blessing from your graveyard to your hand at the beginning of the next end step.|
Forsaken Wastes|Mirage|23|R|{2}{B}|World Enchantment|||Players can't gain life.$At the beginning of each player's upkeep, that player loses 1 life.$Whenever Forsaken Wastes becomes the target of a spell, that spell's controller loses 5 life.|
@@ -15969,8 +15969,8 @@ Horrible Hordes|Mirage|269|U|{3}|Artifact Creature - Spirit|2|2|Rampage 1 (Wh
Infernal Contract|Mirage|27|R|{B}{B}{B}|Sorcery|||Draw four cards. You lose half your life, rounded up.|
Igneous Golem|Mirage|270|U|{5}|Artifact Creature - Golem|3|4|{2}: Igneous Golem gains trample until end of turn.|
Lead Golem|Mirage|271|U|{5}|Artifact Creature - Golem|3|5|Whenever Lead Golem attacks, it doesn't untap during its controller's next untap step.|
-Lion's Eye Diamond|Mirage|272|R|{0}|Artifact|||Sacrifice Lion's Eye Diamond, Discard your hand: Add three mana of any one color to your mana pool. Activate this ability only any time you could cast an instant.|
-Mana Prism|Mirage|273|U|{3}|Artifact|||{tap}: Add {C}.$${1}, {tap}: Add one mana of any color to your mana pool.|
+Lion's Eye Diamond|Mirage|272|R|{0}|Artifact|||Sacrifice Lion's Eye Diamond, Discard your hand: Add three mana of any one color. Activate this ability only any time you could cast an instant.|
+Mana Prism|Mirage|273|U|{3}|Artifact|||{tap}: Add {C}.$${1}, {tap}: Add one mana of any color.|
Mangara's Tome|Mirage|274|R|{5}|Artifact|||When Mangara's Tome enters the battlefield, search your library for five cards, exile them in a face-down pile, and shuffle that pile. Then shuffle your library.${2}: The next time you would draw a card this turn, instead put the top card of the exiled pile into its owner's hand.|
Marble Diamond|Mirage|275|U|{2}|Artifact|||Marble Diamond enters the battlefield tapped.${tap}: Add {W}.|
Misers' Cage|Mirage|276|R|{3}|Artifact|||At the beginning of each opponent's upkeep, if that player has five or more cards in hand, Misers' Cage deals 2 damage to him or her.|
@@ -16022,7 +16022,7 @@ Teferi's Isle|Mirage|315|R||Legendary Land|||Phasing (This phases in or out b
Asmira, Holy Avenger|Mirage|316|R|{2}{G}{W}|Legendary Creature - Human Cleric|2|3|Flying$At the beginning of each end step, put a +1/+1 counter on Asmira, Holy Avenger for each creature put into your graveyard from the battlefield this turn.|
Benthic Djinn|Mirage|317|R|{2}{U}{B}|Creature - Djinn|5|3|Islandwalk$$At the beginning of your upkeep, you lose 2 life.|
Cadaverous Bloom|Mirage|318|R|{3}{B}{G}|Enchantment|||Exile a card from your hand: Add {B}{B} or {G}{G}.|
-Circle of Despair|Mirage|319|R|{1}{W}{B}|Enchantment|||{1}, Sacrifice a creature: The next time a source of your choice would deal damage to target creature or player this turn, prevent that damage.|
+Circle of Despair|Mirage|319|R|{1}{W}{B}|Enchantment|||{1}, Sacrifice a creature: The next time a source of your choice would deal damage to any target this turn, prevent that damage.|
Phyrexian Tribute|Mirage|32|R|{2}{B}|Sorcery|||As an additional cost to cast Phyrexian Tribute, sacrifice two creatures.$Destroy target artifact.|
Delirium|Mirage|320|U|{1}{B}{R}|Instant|||Cast Delirium only during an opponent's turn.$Tap target creature that player controls. That creature deals damage equal to its power to the player. Prevent all combat damage that would be dealt to and dealt by the creature this turn.|
Discordant Spirit|Mirage|321|R|{2}{B}{R}|Creature - Spirit|2|2|At the beginning of each end step, if it's an opponent's turn, put a +1/+1 counter on Discordant Spirit for each 1 damage dealt to you this turn.$At the beginning of your end step, remove all +1/+1 counters from Discordant Spirit.|
@@ -16059,7 +16059,7 @@ Reign of Terror|Mirage|35|U|{3}{B}{B}|Sorcery|||Destroy all green creatures or a
Zebra Unicorn|Mirage|350|U|{2}{G}{W}|Creature - Unicorn|2|2|Whenever Zebra Unicorn deals damage, you gain that much life.|
Restless Dead|Mirage|36|C|{1}{B}|Creature - Skeleton|1|1|{B}: Regenerate Restless Dead.|
Sewer Rats|Mirage|37|C|{B}|Creature - Rat|1|1|{B}, Pay 1 life: Sewer Rats gets +1/+0 until end of turn. Activate this ability no more than three times each turn.|
-Shadow Guildmage|Mirage|38|C|{B}|Creature - Human Wizard|1|1|{U}, {tap}: Put target creature you control on top of its owner's library.${R}, {tap}: Shadow Guildmage deals 1 damage to target creature or player and 1 damage to you.|
+Shadow Guildmage|Mirage|38|C|{B}|Creature - Human Wizard|1|1|{U}, {tap}: Put target creature you control on top of its owner's library.${R}, {tap}: Shadow Guildmage deals 1 damage to any target and 1 damage to you.|
Shallow Grave|Mirage|39|R|{1}{B}|Instant|||Return the top creature card of your graveyard to the battlefield. That creature gains haste until end of turn. Exile it at the beginning of the next end step.|
Binding Agony|Mirage|4|C|{1}{B}|Enchantment - Aura|||Enchant creature$Whenever enchanted creature is dealt damage, Binding Agony deals that much damage to that creature's controller.|
Shauku, Endbringer|Mirage|40|R|{5}{B}{B}|Legendary Creature - Vampire|5|5|Flying$Shauku, Endbringer can't attack if there's another creature on the battlefield.$At the beginning of your upkeep, you lose 3 life.${tap}: Exile target creature and put a +1/+1 counter on Shauku.|
@@ -16120,7 +16120,7 @@ Carrion|Mirage|9|R|{1}{B}{B}|Instant|||As an additional cost to cast Carrion, sa
Sea Scryer|Mirage|90|C|{1}{U}|Creature - Merfolk Wizard|1|1|{tap}: Add {C}.${1}, {tap}: Add {U}.|
Shaper Guildmage|Mirage|91|C|{U}|Creature - Human Wizard|1|1|{W}, {tap}: Target creature gains first strike until end of turn.${B}, {tap}: Target creature gets +1/+0 until end of turn.|
Soar|Mirage|93|C|{1}{U}|Enchantment - Aura|||You may cast Soar as though it had flash. If you cast it any time a sorcery couldn't have been cast, the controller of the permanent it becomes sacrifices it at the beginning of the next cleanup step.$Enchant creature$Enchanted creature gets +0/+1 and has flying.|
-Suq'Ata Firewalker|Mirage|94|U|{1}{U}{U}|Creature - Human Wizard|0|1|Suq'Ata Firewalker can't be the target of red spells or abilities from red sources.${tap}: Suq'Ata Firewalker deals 1 damage to target creature or player.|
+Suq'Ata Firewalker|Mirage|94|U|{1}{U}{U}|Creature - Human Wizard|0|1|Suq'Ata Firewalker can't be the target of red spells or abilities from red sources.${tap}: Suq'Ata Firewalker deals 1 damage to any target.|
Taniwha|Mirage|95|R|{3}{U}{U}|Legendary Creature - Serpent|7|7|Trample$Phasing (This phases in or out before you untap during each of your untap steps. While it's phased out, it's treated as though it doesn't exist.)$At the beginning of your upkeep, all lands you control phase out. (They phase in before you untap during your next untap step.)|
Teferi's Curse|Mirage|96|C|{1}{U}|Enchantment - Aura|||Enchant artifact or creature$Enchanted permanent has phasing. (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.)|
Teferi's Drake|Mirage|97|C|{2}{U}|Creature - Drake|3|2|Flying$Phasing (This phases in or out before you untap during each of your untap steps. While it's phased out, it's treated as though it doesn't exist.)|
@@ -16133,9 +16133,9 @@ Ogre Leadfoot|Mirrodin|102|C|{4}{R}|Creature - Ogre|3|3|Whenever Ogre Leadfoot b
Rustmouth Ogre|Mirrodin|103|U|{4}{R}{R}|Creature - Ogre|5|4|Whenever Rustmouth Ogre deals combat damage to a player, you may destroy target artifact that player controls.|
Seething Song|Mirrodin|104|C|{2}{R}|Instant|||Add {R}{R}{R}{R}{R}.|
Shatter|Mirrodin|105|C|{1}{R}|Instant|||Destroy target artifact.|
-Shrapnel Blast|Mirrodin|106|U|{1}{R}|Instant|||As an additional cost to cast Shrapnel Blast, sacrifice an artifact.$Shrapnel Blast deals 5 damage to target creature or player.|
+Shrapnel Blast|Mirrodin|106|U|{1}{R}|Instant|||As an additional cost to cast Shrapnel Blast, sacrifice an artifact.$Shrapnel Blast deals 5 damage to any target.|
Slith Firewalker|Mirrodin|107|U|{R}{R}|Creature - Slith|1|1|Haste$Whenever Slith Firewalker deals combat damage to a player, put a +1/+1 counter on it.|
-Spikeshot Goblin|Mirrodin|108|C|{2}{R}|Creature - Goblin Shaman|1|2|{R}, {tap}: Spikeshot Goblin deals damage equal to its power to target creature or player.|
+Spikeshot Goblin|Mirrodin|108|C|{2}{R}|Creature - Goblin Shaman|1|2|{R}, {tap}: Spikeshot Goblin deals damage equal to its power to any target.|
Trash for Treasure|Mirrodin|109|R|{2}{R}|Sorcery|||As an additional cost to cast Trash for Treasure, sacrifice an artifact.$Return target artifact card from your graveyard to the battlefield.|
Leonin Skyhunter|Mirrodin|11|U|{W}{W}|Creature - Cat Knight|2|2|Flying|
Vulshok Battlemaster|Mirrodin|110|R|{4}{R}|Creature - Human Warrior|2|2|Haste$When Vulshok Battlemaster enters the battlefield, attach all Equipment on the battlefield to it. (Control of the Equipment doesn't change.)|
@@ -16168,7 +16168,7 @@ Tooth and Nail|Mirrodin|134|R|{5}{G}{G}|Sorcery|||Choose one - Search your libra
Troll Ascetic|Mirrodin|135|R|{1}{G}{G}|Creature - Troll Shaman|3|2|Hexproof (This creature can't be the target of spells or abilities your opponents control.)${1}{G}: Regenerate Troll Ascetic.|
Trolls of Tel-Jilad|Mirrodin|136|U|{5}{G}{G}|Creature - Troll Shaman|5|6|{1}{G}: Regenerate target green creature.|
Turn to Dust|Mirrodin|137|C|{G}|Instant|||Destroy target Equipment. Add {G}.|
-Viridian Joiner|Mirrodin|138|C|{2}{G}|Creature - Elf Druid|1|2|{tap}: Add to your mana pool an amount of {G} equal to Viridian Joiner's power.|
+Viridian Joiner|Mirrodin|138|C|{2}{G}|Creature - Elf Druid|1|2|{tap}: Add an amount of {G} equal to Viridian Joiner's power.|
Viridian Shaman|Mirrodin|139|U|{2}{G}|Creature - Elf Shaman|2|2|When Viridian Shaman enters the battlefield, destroy target artifact.|
Loxodon Punisher|Mirrodin|14|R|{3}{W}|Creature - Elephant Soldier|2|2|Loxodon Punisher gets +2/+2 for each Equipment attached to it.|
Wurmskin Forger|Mirrodin|140|C|{5}{G}{G}|Creature - Elf Warrior|2|2|When Wurmskin Forger enters the battlefield, distribute three +1/+1 counters among one, two, or three target creatures.|
@@ -16178,13 +16178,13 @@ Altar of Shadows|Mirrodin|143|R|{7}|Artifact|||At the beginning of your precomba
Banshee's Blade|Mirrodin|144|U|{2}|Artifact - Equipment|||Equipped creature gets +1/+1 for each charge counter on Banshee's Blade.$Whenever equipped creature deals combat damage, put a charge counter on Banshee's Blade.$Equip {2} ({2}: Attach to target creature you control. Equip only as a sorcery. This card enters the battlefield unattached and stays on the battlefield if the creature leaves.)|
Blinkmoth Urn|Mirrodin|145|R|{5}|Artifact|||At the beginning of each player's precombat main phase, if Blinkmoth Urn is untapped, that player adds {1} to his or her mana pool for each artifact he or she controls.|
Bonesplitter|Mirrodin|146|C|{1}|Artifact - Equipment|||Equipped creature gets +2/+0.$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery. This card enters the battlefield unattached and stays on the battlefield if the creature leaves.)|
-Bosh, Iron Golem|Mirrodin|147|R|{8}|Legendary Artifact Creature - Golem|6|7|Trample${3}{R}, Sacrifice an artifact: Bosh, Iron Golem deals damage equal to the sacrificed artifact's converted mana cost to target creature or player.|
+Bosh, Iron Golem|Mirrodin|147|R|{8}|Legendary Artifact Creature - Golem|6|7|Trample${3}{R}, Sacrifice an artifact: Bosh, Iron Golem deals damage equal to the sacrificed artifact's converted mana cost to any target.|
Bottle Gnomes|Mirrodin|148|U|{3}|Artifact Creature - Gnome|1|3|Sacrifice Bottle Gnomes: You gain 3 life.|
Cathodion|Mirrodin|149|U|{3}|Artifact Creature - Construct|3|3|When Cathodion dies, add {C}{C}{C}.|
Luminous Angel|Mirrodin|15|R|{4}{W}{W}{W}|Creature - Angel|4|4|Flying$At the beginning of your upkeep, you may put a 1/1 white Spirit creature token with flying onto the battlefield.|
Chalice of the Void|Mirrodin|150|R|{X}{X}|Artifact|||Chalice of the Void enters the battlefield with X charge counters on it.$Whenever a player casts a spell with converted mana cost equal to the number of charge counters on Chalice of the Void, counter that spell.|
-Chromatic Sphere|Mirrodin|151|C|{1}|Artifact|||{1}, {tap}, Sacrifice Chromatic Sphere: Add one mana of any color to your mana pool. Draw a card.|
-Chrome Mox|Mirrodin|152|R|{0}|Artifact|||Imprint - When Chrome Mox enters the battlefield, you may exile a nonartifact, nonland card from your hand.${tap}: Add one mana of any of the exiled card's colors to your mana pool.|
+Chromatic Sphere|Mirrodin|151|C|{1}|Artifact|||{1}, {tap}, Sacrifice Chromatic Sphere: Add one mana of any color. Draw a card.|
+Chrome Mox|Mirrodin|152|R|{0}|Artifact|||Imprint - When Chrome Mox enters the battlefield, you may exile a nonartifact, nonland card from your hand.${tap}: Add one mana of any of the exiled card's colors.|
Clockwork Beetle|Mirrodin|153|C|{1}|Artifact Creature - Insect|0|0|Clockwork Beetle enters the battlefield with two +1/+1 counters on it.$Whenever Clockwork Beetle attacks or blocks, remove a +1/+1 counter from it at end of combat.|
Clockwork Condor|Mirrodin|154|C|{4}|Artifact Creature - Bird|0|0|Flying$Clockwork Condor enters the battlefield with three +1/+1 counters on it.$Whenever Clockwork Condor attacks or blocks, remove a +1/+1 counter from it at end of combat.|
Clockwork Dragon|Mirrodin|155|R|{7}|Artifact Creature - Dragon|0|0|Flying$Clockwork Dragon enters the battlefield with six +1/+1 counters on it.$Whenever Clockwork Dragon attacks or blocks, remove a +1/+1 counter from it at end of combat.${3}: Put a +1/+1 counter on Clockwork Dragon.|
@@ -16209,15 +16209,15 @@ Fireshrieker|Mirrodin|171|U|{3}|Artifact - Equipment|||Equipped creature has dou
Frogmite|Mirrodin|172|C|{4}|Artifact Creature - Frog|2|2|Affinity for artifacts (This spell costs {1} less to cast for each artifact you control.)|
Galvanic Key|Mirrodin|173|C|{2}|Artifact|||Flash${3}, {tap}: Untap target artifact.|
Gate to the AEther|Mirrodin|174|R|{6}|Artifact|||At the beginning of each player's upkeep, that player reveals the top card of his or her library. If it's an artifact, creature, enchantment, or land card, the player may put it onto the battlefield.|
-Gilded Lotus|Mirrodin|175|R|{5}|Artifact|||{tap}: Add three mana of any one color to your mana pool.|
-Goblin Charbelcher|Mirrodin|176|R|{4}|Artifact|||{3}, {tap}: Reveal cards from the top of your library until you reveal a land card. Goblin Charbelcher deals damage equal to the number of nonland cards revealed this way to target creature or player. If the revealed land card was a Mountain, Goblin Charbelcher deals double that damage instead. Put the revealed cards on the bottom of your library in any order.|
+Gilded Lotus|Mirrodin|175|R|{5}|Artifact|||{tap}: Add three mana of any one color.|
+Goblin Charbelcher|Mirrodin|176|R|{4}|Artifact|||{3}, {tap}: Reveal cards from the top of your library until you reveal a land card. Goblin Charbelcher deals damage equal to the number of nonland cards revealed this way to any target. If the revealed land card was a Mountain, Goblin Charbelcher deals double that damage instead. Put the revealed cards on the bottom of your library in any order.|
Goblin Dirigible|Mirrodin|177|U|{6}|Artifact Creature - Construct|4|4|Flying$Goblin Dirigible doesn't untap during your untap step.$At the beginning of your upkeep, you may pay {4}. If you do, untap Goblin Dirigible.|
Goblin Replica|Mirrodin|178|C|{3}|Artifact Creature - Goblin|2|2|{3}{R}, Sacrifice Goblin Replica: Destroy target artifact.|
Goblin War Wagon|Mirrodin|179|C|{4}|Artifact Creature - Juggernaut|3|3|Goblin War Wagon doesn't untap during your untap step.$At the beginning of your upkeep, you may pay {2}. If you do, untap Goblin War Wagon.|
Roar of the Kha|Mirrodin|18|U|{1}{W}|Instant|||Choose one - Creatures you control get +1/+1 until end of turn; or untap all creatures you control.$Entwine {1}{W} (Choose both if you pay the entwine cost.)|
Gold Myr|Mirrodin|180|C|{2}|Artifact Creature - Myr|1|1|{tap}: Add {W}.|
Golem-Skin Gauntlets|Mirrodin|181|U|{1}|Artifact - Equipment|||Equipped creature gets +1/+0 for each Equipment attached to it.$Equip {2} ({2}: Attach to target creature you control. Equip only as a sorcery. This card enters the battlefield unattached and stays on the battlefield if the creature leaves.)|
-Granite Shard|Mirrodin|182|U|{3}|Artifact|||{3}, {tap} or {R}, {tap}: Granite Shard deals 1 damage to target creature or player.|
+Granite Shard|Mirrodin|182|U|{3}|Artifact|||{3}, {tap} or {R}, {tap}: Granite Shard deals 1 damage to any target.|
Grid Monitor|Mirrodin|183|R|{4}|Artifact Creature - Construct|4|6|You can't cast creature spells.|
Heartwood Shard|Mirrodin|184|U|{3}|Artifact|||{3}, {tap} or {G}, {tap}: Target creature gains trample until end of turn.|
Hematite Golem|Mirrodin|185|C|{4}|Artifact Creature - Golem|1|4|{1}{R}: Hematite Golem gets +2/+0 until end of turn.|
@@ -16265,7 +16265,7 @@ Nuisance Engine|Mirrodin|221|U|{3}|Artifact|||{2}, {tap}: Put a 0/1 colorless Pe
Oblivion Stone|Mirrodin|222|R|{3}|Artifact|||{4}, {tap}: Put a fate counter on target permanent.${5}, {tap}, Sacrifice Oblivion Stone: Destroy each nonland permanent without a fate counter on it, then remove all fate counters from all permanents.|
Omega Myr|Mirrodin|223|C|{2}|Artifact Creature - Myr|1|2||
Ornithopter|Mirrodin|224|U|{0}|Artifact Creature - Thopter|0|2|Flying|
-Pearl Shard|Mirrodin|225|U|{3}|Artifact|||{3}, {tap} or {W}, {tap}: Prevent the next 2 damage that would be dealt to target creature or player this turn.|
+Pearl Shard|Mirrodin|225|U|{3}|Artifact|||{3}, {tap} or {W}, {tap}: Prevent the next 2 damage that would be dealt to any target this turn.|
Pentavus|Mirrodin|226|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.|
Pewter Golem|Mirrodin|227|C|{5}|Artifact Creature - Golem|4|2|{1}{B}: Regenerate Pewter Golem.|
Platinum Angel|Mirrodin|228|R|{7}|Artifact Creature - Angel|4|4|Flying$You can't lose the game and your opponents can't win the game.|
@@ -16273,7 +16273,7 @@ Power Conduit|Mirrodin|229|U|{2}|Artifact|||{tap}, Remove a counter from a perma
Slith Ascendant|Mirrodin|23|U|{1}{W}{W}|Creature - Slith|1|1|Flying$Whenever Slith Ascendant deals combat damage to a player, put a +1/+1 counter on it.|
Proteus Staff|Mirrodin|230|R|{3}|Artifact|||{2}{U}, {tap}: Put target creature on the bottom of its owner's library. That creature's controller reveals cards from the top of his or her library until he or she reveals a creature card. The player puts that card onto the battlefield and the rest on the bottom of his or her library in any order. Activate this ability only any time you could cast a sorcery.|
Psychogenic Probe|Mirrodin|231|R|{2}|Artifact|||Whenever a spell or ability causes a player to shuffle his or her library, Psychogenic Probe deals 2 damage to him or her.|
-Pyrite Spellbomb|Mirrodin|232|C|{1}|Artifact|||{R}, Sacrifice Pyrite Spellbomb: Pyrite Spellbomb deals 2 damage to target creature or player.${1}, Sacrifice Pyrite Spellbomb: Draw a card.|
+Pyrite Spellbomb|Mirrodin|232|C|{1}|Artifact|||{R}, Sacrifice Pyrite Spellbomb: Pyrite Spellbomb deals 2 damage to any target.${1}, Sacrifice Pyrite Spellbomb: Draw a card.|
Quicksilver Fountain|Mirrodin|233|R|{3}|Artifact|||At the beginning of each player's upkeep, that player puts a flood counter on target non-Island land he or she controls of his or her choice. That land is an Island for as long as it has a flood counter on it.$At the beginning of each end step, if all lands on the battlefield are Islands, remove all flood counters from them.|
Rust Elemental|Mirrodin|234|U|{4}|Artifact Creature - Elemental|4|4|Flying$At the beginning of your upkeep, sacrifice an artifact other than Rust Elemental. If you can't, tap Rust Elemental and you lose 4 life.|
Rustspore Ram|Mirrodin|235|U|{4}|Artifact Creature - Sheep|1|3|When Rustspore Ram enters the battlefield, destroy target Equipment.|
@@ -16313,9 +16313,9 @@ Tower of Champions|Mirrodin|265|R|{4}|Artifact|||{8}, {tap}: Target creature get
Tower of Eons|Mirrodin|266|R|{4}|Artifact|||{8}, {tap}: You gain 10 life.|
Tower of Fortunes|Mirrodin|267|R|{4}|Artifact|||{8}, {tap}: Draw four cards.|
Tower of Murmurs|Mirrodin|268|R|{4}|Artifact|||{8}, {tap}: Target player puts the top eight cards of his or her library into his or her graveyard.|
-Triskelion|Mirrodin|269|R|{6}|Artifact Creature - Construct|1|1|Triskelion enters the battlefield with three +1/+1 counters on it.$Remove a +1/+1 counter from Triskelion: Triskelion deals 1 damage to target creature or player.|
+Triskelion|Mirrodin|269|R|{6}|Artifact Creature - Construct|1|1|Triskelion enters the battlefield with three +1/+1 counters on it.$Remove a +1/+1 counter from Triskelion: Triskelion deals 1 damage to any target.|
Taj-Nar Swordsmith|Mirrodin|27|U|{3}{W}|Creature - Cat Soldier|2|3|When Taj-Nar Swordsmith enters the battlefield, you may pay {X}. If you do, search your library for an Equipment card with converted mana cost X or less and put that card onto the battlefield. Then shuffle your library.|
-Viridian Longbow|Mirrodin|270|C|{1}|Artifact - Equipment|||Equipped creature has "{tap}: This creature deals 1 damage to target creature or player."$Equip {3} ({3}: Attach to target creature you control. Equip only as a sorcery. This card enters the battlefield unattached and stays on the battlefield if the creature leaves.)|
+Viridian Longbow|Mirrodin|270|C|{1}|Artifact - Equipment|||Equipped creature has "{tap}: This creature deals 1 damage to any target."$Equip {3} ({3}: Attach to target creature you control. Equip only as a sorcery. This card enters the battlefield unattached and stays on the battlefield if the creature leaves.)|
Vorrac Battlehorns|Mirrodin|271|C|{2}|Artifact - Equipment|||Equipped creature has trample and can't be blocked by more than one creature.$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery. This card enters the battlefield unattached and stays on the battlefield if the creature leaves.)|
Vulshok Battlegear|Mirrodin|272|U|{3}|Artifact - Equipment|||Equipped creature gets +3/+3.$Equip {3} ({3}: Attach to target creature you control. Equip only as a sorcery. This card enters the battlefield unattached and stays on the battlefield if the creature leaves.)|
Vulshok Gauntlets|Mirrodin|273|C|{2}|Artifact - Equipment|||Equipped creature gets +4/+2 and doesn't untap during its controller's untap step.$Equip {3} ({3}: Attach to target creature you control. Equip only as a sorcery. This card enters the battlefield unattached and stays on the battlefield if the creature leaves.)|
@@ -16327,7 +16327,7 @@ Ancient Den|Mirrodin|278|C||Artifact Land|||(Ancient Den isn't a spell.)$
Blinkmoth Well|Mirrodin|279|U||Land|||{tap}: Add {C}.${2}, {tap}: Tap target noncreature artifact.|
Tempest of Light|Mirrodin|28|U|{2}{W}|Instant|||Destroy all enchantments.|
Cloudpost|Mirrodin|280|C||Land - Locus|||Cloudpost enters the battlefield tapped.${tap}: Add {C} for each Locus on the battlefield.|
-Glimmervoid|Mirrodin|281|R||Land|||At the beginning of the end step, if you control no artifacts, sacrifice Glimmervoid.${tap}: Add one mana of any color to your mana pool.|
+Glimmervoid|Mirrodin|281|R||Land|||At the beginning of the end step, if you control no artifacts, sacrifice Glimmervoid.${tap}: Add one mana of any color.|
Great Furnace|Mirrodin|282|C||Artifact Land|||(Great Furnace isn't a spell.)${tap}: Add {R}.|
Seat of the Synod|Mirrodin|283|C||Artifact Land|||(Seat of the Synod isn't a spell.)${tap}: Add {U}.|
Stalking Stones|Mirrodin|284|U||Land|||{tap}: Add {C}.${6}: Stalking Stones becomes a 3/3 Elemental artifact creature that's still a land. (This effect lasts indefinitely.)|
@@ -16388,7 +16388,7 @@ Barter in Blood|Mirrodin|57|U|{2}{B}{B}|Sorcery|||Each player sacrifices two cre
Betrayal of Flesh|Mirrodin|58|U|{5}{B}|Instant|||Choose one - Destroy target creature; or return target creature card from your graveyard to the battlefield.$Entwine-Sacrifice three lands. (Choose both if you pay the entwine cost.)|
Chimney Imp|Mirrodin|59|C|{4}{B}|Creature - Imp|1|2|Flying$When Chimney Imp dies, target opponent puts a card from his or her hand on top of his or her library.|
Awe Strike|Mirrodin|6|C|{W}|Instant|||The next time target creature would deal damage this turn, prevent that damage. You gain life equal to the damage prevented this way.|
-Consume Spirit|Mirrodin|60|C|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Consume Spirit deals X damage to target creature or player and you gain X life.|
+Consume Spirit|Mirrodin|60|C|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Consume Spirit deals X damage to any target and you gain X life.|
Contaminated Bond|Mirrodin|61|C|{1}{B}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Whenever enchanted creature attacks or blocks, its controller loses 3 life.|
Disciple of the Vault|Mirrodin|62|C|{B}|Creature - Human Cleric|1|1|Whenever an artifact is put into a graveyard from the battlefield, you may have target opponent lose 1 life.|
Dross Harvester|Mirrodin|63|R|{1}{B}{B}|Creature - Horror|4|4|Protection from white$At the beginning of your end step, you lose 4 life.$Whenever a creature dies, you gain 2 life.|
@@ -16415,7 +16415,7 @@ Wail of the Nim|Mirrodin|81|C|{2}{B}|Instant|||Choose one - Regenerate each crea
Wall of Blood|Mirrodin|82|U|{2}{B}|Creature - Wall|0|2|Defender (This creature can't attack.)$Pay 1 life: Wall of Blood gets +1/+1 until end of turn.|
Woebearer|Mirrodin|83|U|{4}{B}|Creature - Zombie|2|3|Fear (This creature can't be blocked except by artifact creatures and/or black creatures.)$Whenever Woebearer deals combat damage to a player, you may return target creature card from your graveyard to your hand.|
Wrench Mind|Mirrodin|84|C|{B}{B}|Sorcery|||Target player discards two cards unless he or she discards an artifact card.|
-Arc-Slogger|Mirrodin|85|R|{3}{R}{R}|Creature - Beast|4|5|{R}, Exile the top ten cards of your library: Arc-Slogger deals 2 damage to target creature or player.|
+Arc-Slogger|Mirrodin|85|R|{3}{R}{R}|Creature - Beast|4|5|{R}, Exile the top ten cards of your library: Arc-Slogger deals 2 damage to any target.|
Atog|Mirrodin|86|U|{1}{R}|Creature - Atog|1|2|Sacrifice an artifact: Atog gets +2/+2 until end of turn.|
Confusion in the Ranks|Mirrodin|87|R|{3}{R}{R}|Enchantment|||Whenever an artifact, creature, or enchantment enters the battlefield, its controller chooses target permanent another player controls that shares a card type with it. Exchange control of those permanents.|
Detonate|Mirrodin|88|U|{X}{R}|Sorcery|||Destroy target artifact with converted mana cost X. It can't be regenerated. Detonate deals X damage to that artifact's controller.|
@@ -16426,7 +16426,7 @@ Fists of the Anvil|Mirrodin|91|C|{1}{R}|Instant|||Target creature gets +4/+0 unt
Forge Armor|Mirrodin|92|U|{4}{R}|Instant|||As an additional cost to cast Forge Armor, sacrifice an artifact.$Put X +1/+1 counters on target creature, where X is the sacrificed artifact's converted mana cost.|
Fractured Loyalty|Mirrodin|93|U|{1}{R}|Enchantment - Aura|||Enchant creature$Whenever enchanted creature becomes the target of a spell or ability, that spell or ability's controller gains control of that creature. (This effect lasts indefinitely.)|
Goblin Striker|Mirrodin|94|C|{1}{R}|Creature - Goblin Berserker|1|1|First strike, haste|
-Grab the Reins|Mirrodin|95|U|{3}{R}|Instant|||Choose one - Until end of turn, you gain control of target creature and it gains haste; or sacrifice a creature, then Grab the Reins deals damage equal to that creature's power to target creature or player.$Entwine {2}{R} (Choose both if you pay the entwine cost.)|
+Grab the Reins|Mirrodin|95|U|{3}{R}|Instant|||Choose one - Until end of turn, you gain control of target creature and it gains haste; or sacrifice a creature, then Grab the Reins deals damage equal to that creature's power to any target.$Entwine {2}{R} (Choose both if you pay the entwine cost.)|
Incite War|Mirrodin|96|C|{2}{R}|Instant|||Choose one - Creatures target player controls attack this turn if able; or creatures you control gain first strike until end of turn.$Entwine {2} (Choose both if you pay the entwine cost.)|
Krark-Clan Grunt|Mirrodin|97|C|{2}{R}|Creature - Goblin Warrior|2|2|Sacrifice an artifact: Krark-Clan Grunt gets +1/+0 and gains first strike until end of turn.|
Krark-Clan Shaman|Mirrodin|98|C|{R}|Creature - Goblin Shaman|1|1|Sacrifice an artifact: Krark-Clan Shaman deals 1 damage to each creature without flying.|
@@ -16449,7 +16449,7 @@ Knowledge Pool|Mirrodin Besieged|111|R|{6}|Artifact|||Imprint - When Knowledge P
Lumengrid Gargoyle|Mirrodin Besieged|112|U|{6}|Artifact Creature - Gargoyle|4|4|Flying|
Magnetic Mine|Mirrodin Besieged|113|R|{4}|Artifact|||Whenever another artifact is put into a graveyard from the battlefield, Magnetic Mine deals 2 damage to that artifact's controller.|
Mirrorworks|Mirrodin Besieged|114|R|{5}|Artifact|||Whenever another nontoken artifact enters the battlefield under your control, you may pay {2}. If you do, put a token that's a copy of that artifact onto the battlefield.|
-Mortarpod|Mirrodin Besieged|115|U|{2}|Artifact - Equipment|||Living weapon (When this Equipment enters the battlefield, put a 0/0 black Germ creature token onto the battlefield, then attach this to it.)$Equipped creature gets +0/+1 and has "Sacrifice this creature: This creature deals 1 damage to target creature or player."$Equip {2}|
+Mortarpod|Mirrodin Besieged|115|U|{2}|Artifact - Equipment|||Living weapon (When this Equipment enters the battlefield, put a 0/0 black Germ creature token onto the battlefield, then attach this to it.)$Equipped creature gets +0/+1 and has "Sacrifice this creature: This creature deals 1 damage to any target."$Equip {2}|
Myr Sire|Mirrodin Besieged|116|C|{2}|Artifact Creature - Myr|1|1|When Myr Sire dies, put a 1/1 colorless Myr artifact creature token onto the battlefield.|
Myr Turbine|Mirrodin Besieged|117|R|{5}|Artifact|||{tap}: Put a 1/1 colorless Myr artifact creature token onto the battlefield.${tap}, Tap five untapped Myr you control: Search your library for a Myr creature card, put it onto the battlefield, then shuffle your library.|
Myr Welder|Mirrodin Besieged|118|R|{3}|Artifact Creature - Myr|1|4|Imprint - {tap}: Exile target artifact card from a graveyard.$Myr Welder has all activated abilities of all cards exiled with it.|
@@ -16470,7 +16470,7 @@ Shriekhorn|Mirrodin Besieged|130|C|{1}|Artifact|||Shriekhorn enters the battlefi
Signal Pest|Mirrodin Besieged|131|U|{1}|Artifact Creature - Pest|0|1|Battle cry (Whenever this creature attacks, each other attacking creature gets +1/+0 until end of turn.)$Signal Pest can't be blocked except by creatures with flying or reach.|
Silverskin Armor|Mirrodin Besieged|132|U|{2}|Artifact - Equipment|||Equipped creature gets +1/+1 and is an artifact in addition to its other types.$Equip {2}|
Skinwing|Mirrodin Besieged|133|U|{4}|Artifact - Equipment|||Living weapon (When this Equipment enters the battlefield, put a 0/0 black Germ creature token onto the battlefield, then attach this to it.)$Equipped creature gets +2/+2 and has flying.$Equip {6}|
-Sphere of the Suns|Mirrodin Besieged|134|U|{2}|Artifact|||Sphere of the Suns enters the battlefield tapped and with three charge counters on it.${tap}, Remove a charge counter from Sphere of the Suns: Add one mana of any color to your mana pool.|
+Sphere of the Suns|Mirrodin Besieged|134|U|{2}|Artifact|||Sphere of the Suns enters the battlefield tapped and with three charge counters on it.${tap}, Remove a charge counter from Sphere of the Suns: Add one mana of any color.|
Spin Engine|Mirrodin Besieged|135|C|{3}|Artifact Creature - Construct|3|1|{R}: Target creature can't block Spin Engine this turn.|
Spine of Ish Sah|Mirrodin Besieged|136|R|{7}|Artifact|||When Spine of Ish Sah enters the battlefield, destroy target permanent.$When Spine of Ish Sah is put into a graveyard from the battlefield, return Spine of Ish Sah to its owner's hand.|
Strandwalker|Mirrodin Besieged|137|U|{5}|Artifact - Equipment|||Living weapon (When this Equipment enters the battlefield, put a 0/0 black Germ creature token onto the battlefield, then attach this to it.)$Equipped creature gets +2/+4 and has reach.$Equip {4}|
@@ -16540,7 +16540,7 @@ Scourge Servant|Mirrodin Besieged|54|C|{4}{B}|Creature - Zombie|3|3|Infect (T
Septic Rats|Mirrodin Besieged|55|U|{1}{B}{B}|Creature - Rat|2|2|Infect (This creature deals damage to creatures in the form of -1/-1 counters and to players in the form of poison counters.)$Whenever Septic Rats attacks, if defending player is poisoned, it gets +1/+1 until end of turn.|
Spread the Sickness|Mirrodin Besieged|56|C|{4}{B}|Sorcery|||Destroy target creature, 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.)|
Virulent Wound|Mirrodin Besieged|57|C|{B}|Instant|||Put a -1/-1 counter on target creature. When that creature dies this turn, its controller gets a poison counter.|
-Blisterstick Shaman|Mirrodin Besieged|58|C|{2}{R}|Creature - Goblin Shaman|2|1|When Blisterstick Shaman enters the battlefield, it deals 1 damage to target creature or player.|
+Blisterstick Shaman|Mirrodin Besieged|58|C|{2}{R}|Creature - Goblin Shaman|2|1|When Blisterstick Shaman enters the battlefield, it deals 1 damage to any target.|
Burn the Impure|Mirrodin Besieged|59|C|{1}{R}|Instant|||Burn the Impure deals 3 damage to target creature. If that creature has infect, Burn the Impure deals 3 damage to that creature's controller.|
Frantic Salvage|Mirrodin Besieged|6|C|{3}{W}|Instant|||Put any number of target artifact cards from your graveyard on top of your library.$Draw a card.|
Concussive Bolt|Mirrodin Besieged|60|C|{3}{R}{R}|Sorcery|||Concussive Bolt deals 4 damage to target player.$Metalcraft - If you control three or more artifacts, creatures that player controls can't block this turn.|
@@ -16558,7 +16558,7 @@ Kuldotha Ringleader|Mirrodin Besieged|70|C|{4}{R}|Creature - Giant Berserker|4|4
Metallic Mastery|Mirrodin Besieged|71|U|{2}{R}|Sorcery|||Gain control of target artifact until end of turn. Untap that artifact. It gains haste until end of turn.|
Ogre Resister|Mirrodin Besieged|72|C|{2}{R}{R}|Creature - Ogre|4|3||
Rally the Forces|Mirrodin Besieged|73|C|{2}{R}|Instant|||Attacking creatures get +1/+0 and gain first strike until end of turn.|
-Red Sun's Zenith|Mirrodin Besieged|74|R|{X}{R}|Sorcery|||Red Sun's Zenith deals X damage to target creature or player. If a creature dealt damage this way would die this turn, exile it instead. Shuffle Red Sun's Zenith into its owner's library.|
+Red Sun's Zenith|Mirrodin Besieged|74|R|{X}{R}|Sorcery|||Red Sun's Zenith deals X damage to any target. If a creature dealt damage this way would die this turn, exile it instead. Shuffle Red Sun's Zenith into its owner's library.|
Slagstorm|Mirrodin Besieged|75|R|{1}{R}{R}|Sorcery|||Choose one - Slagstorm deals 3 damage to each creature; or Slagstorm deals 3 damage to each player.|
Spiraling Duelist|Mirrodin Besieged|76|U|{2}{R}{R}|Creature - Human Berserker|3|1|Metalcraft - Spiraling Duelist has double strike as long as you control three or more artifacts.|
Blightwidow|Mirrodin Besieged|77|C|{3}{G}|Creature - Spider|2|4|Reach (This creature can block creatures with flying.)$Infect (This creature deals damage to creatures in the form of -1/-1 counters and to players in the form of poison counters.)|
@@ -16604,8 +16604,8 @@ Dragonstorm|Modern Masters|111|R|{8}{R}|Sorcery|||Search your library for a Drag
Empty the Warrens|Modern Masters|112|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.)|
Fiery Fall|Modern Masters|113|C|{5}{R}|Instant|||Fiery Fall deals 5 damage to target creature.$Basic landcycling {1}{R} ({1}{R}, Discard this card: Search your library for a basic land card, reveal it, and put it into your hand. Then shuffle your library.)|
Fury Charm|Modern Masters|114|C|{1}{R}|Instant|||Choose one - Destroy target artifact; or target creature gets +1/+1 and gains trample until end of turn; or remove two time counters from target permanent or suspended card.|
-Glacial Ray|Modern Masters|115|C|{1}{R}|Instant - Arcane|||Glacial Ray deals 2 damage to target creature or player.$Splice onto Arcane {1}{R} (As you cast an Arcane spell, you may reveal this card from your hand and pay its splice cost. If you do, add this card's effects to that spell.)|
-Grapeshot|Modern Masters|116|C|{1}{R}|Sorcery|||Grapeshot deals 1 damage to target creature or player.$Storm (When you cast this spell, copy it for each spell cast before it this turn. You may choose new targets for the copies.)|
+Glacial Ray|Modern Masters|115|C|{1}{R}|Instant - Arcane|||Glacial Ray deals 2 damage to any target.$Splice onto Arcane {1}{R} (As you cast an Arcane spell, you may reveal this card from your hand and pay its splice cost. If you do, add this card's effects to that spell.)|
+Grapeshot|Modern Masters|116|C|{1}{R}|Sorcery|||Grapeshot deals 1 damage to any target.$Storm (When you cast this spell, copy it for each spell cast before it this turn. You may choose new targets for the copies.)|
Greater Gargadon|Modern Masters|117|R|{9}{R}|Creature - Beast|9|7|Suspend 10-{R} (Rather than cast this card from your hand, you may pay {R} and exile it with ten 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.)$Sacrifice an artifact, creature, or land: Remove a time counter from Greater Gargadon. Activate this ability only if Greater Gargadon is suspended.|
Grinning Ignus|Modern Masters|118|U|{2}{R}|Creature - Elemental|2|2|{R}, Return Grinning Ignus to its owner's hand: Add {C}{C}{R}. Activate this ability only any time you could cast a sorcery.|
Hammerheim Deadeye|Modern Masters|119|C|{3}{R}|Creature - Giant Warrior|3|3|Echo {5}{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 Hammerheim Deadeye enters the battlefield, destroy target creature with flying.|
@@ -16616,20 +16616,20 @@ Mogg War Marshal|Modern Masters|122|C|{1}{R}|Creature - Goblin Warrior|1|1|Echo
Molten Disaster|Modern Masters|123|R|{X}{R}{R}|Sorcery|||Kicker {R} (You may pay an additional {R} as you cast this spell.)$If Molten Disaster was kicked, it has split second. (As long as this spell is on the stack, players can't cast spells or activate abilities that aren't mana abilities.)$Molten Disaster deals X damage to each creature without flying and each player.|
Pardic Dragon|Modern Masters|124|U|{4}{R}{R}|Creature - Dragon|4|4|Flying${R}: Pardic Dragon gets +1/+0 until end of turn.$Suspend 2-{R}{R} (Rather than cast this card from your hand, you may pay {R}{R} and exile it with two 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 Pardic Dragon is suspended, that player may put a time counter on Pardic Dragon.|
Pyromancer's Swath|Modern Masters|125|R|{2}{R}|Enchantment|||If an instant or sorcery source you control would deal damage to a creature or player, it deals that much damage plus 2 to that creature or player instead.$At the beginning of each end step, discard your hand.|
-Rift Bolt|Modern Masters|126|C|{2}{R}|Sorcery|||Rift Bolt deals 3 damage to target creature or player.$Suspend 1-{R} (Rather than cast this card from your hand, you may pay {R} and exile it with a time counter on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)|
+Rift Bolt|Modern Masters|126|C|{2}{R}|Sorcery|||Rift Bolt deals 3 damage to any target.$Suspend 1-{R} (Rather than cast this card from your hand, you may pay {R} and exile it with a time counter on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)|
Rift Elemental|Modern Masters|127|C|{R}|Creature - Elemental|1|1|{1}{R}, Remove a time counter from a permanent you control or suspended card you own: Rift Elemental gets +2/+0 until end of turn.|
Ryusei, the Falling Star|Modern Masters|128|M|{5}{R}|Legendary Creature - Dragon Spirit|5|5|Flying$When Ryusei, the Falling Star dies, it deals 5 damage to each creature without flying.|
-Shrapnel Blast|Modern Masters|129|U|{1}{R}|Instant|||As an additional cost to cast Shrapnel Blast, sacrifice an artifact.$Shrapnel Blast deals 5 damage to target creature or player.|
+Shrapnel Blast|Modern Masters|129|U|{1}{R}|Instant|||As an additional cost to cast Shrapnel Blast, sacrifice an artifact.$Shrapnel Blast deals 5 damage to any target.|
Elspeth, Knight-Errant|Modern Masters|13|M|{2}{W}{W}|Legendary Planeswalker - Elspeth|||+1: Put a 1/1 white Soldier creature token onto the battlefield.$+1: Target creature gets +3/+3 and gains flying until end of turn.$-8: You get an emblem with "Artifacts, creatures, enchantments, and lands you control are indestructible."|
Squee, Goblin Nabob|Modern Masters|130|R|{2}{R}|Legendary Creature - Goblin|1|1|At the beginning of your upkeep, you may return Squee, Goblin Nabob from your graveyard to your hand.|
Stingscourger|Modern Masters|131|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.|
Stinkdrinker Daredevil|Modern Masters|132|C|{2}{R}|Creature - Goblin Rogue|1|3|Giant spells you cast cost {2} less to cast.|
-Sudden Shock|Modern Masters|133|U|{1}{R}|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.)$Sudden Shock deals 2 damage to target creature or player.|
-Tar Pitcher|Modern Masters|134|U|{3}{R}|Creature - Goblin Shaman|2|2|{tap}, Sacrifice a Goblin: Tar Pitcher deals 2 damage to target creature or player.|
+Sudden Shock|Modern Masters|133|U|{1}{R}|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.)$Sudden Shock deals 2 damage to any target.|
+Tar Pitcher|Modern Masters|134|U|{3}{R}|Creature - Goblin Shaman|2|2|{tap}, Sacrifice a Goblin: Tar Pitcher deals 2 damage to any target.|
Thundercloud Shaman|Modern Masters|135|U|{3}{R}{R}|Creature - Giant Shaman|4|4|When Thundercloud Shaman enters the battlefield, it deals damage equal to the number of Giants you control to each non-Giant creature.|
Thundering Giant|Modern Masters|136|C|{3}{R}{R}|Creature - Giant|4|3|Haste (This creature can attack and {tap} as soon as it comes under your control.)|
Torrent of Stone|Modern Masters|137|C|{3}{R}|Instant - Arcane|||Torrent of Stone deals 4 damage to target creature.$Splice onto Arcane-Sacrifice two Mountains. (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.)|
-Tribal Flames|Modern Masters|138|U|{1}{R}|Sorcery|||Domain - Tribal Flames deals X damage to target creature or player, where X is the number of basic land types among lands you control.|
+Tribal Flames|Modern Masters|138|U|{1}{R}|Sorcery|||Domain - Tribal Flames deals X damage to any target, where X is the number of basic land types among lands you control.|
War-Spike Changeling|Modern Masters|139|C|{3}{R}|Creature - Shapeshifter|3|3|Changeling (This card is every creature type at all times.)${R}: War-Spike Changeling gains first strike until end of turn.|
Ethersworn Canonist|Modern Masters|14|R|{1}{W}|Artifact Creature - Human Cleric|2|2|Each player who has cast a nonartifact spell this turn can't cast additional nonartifact spells.|
Citanul Woodreaders|Modern Masters|140|C|{2}{G}|Creature - Human Druid|1|4|Kicker {2}{G} (You may pay an additional {2}{G} as you cast this spell.)$When Citanul Woodreaders enters the battlefield, if it was kicked, draw two cards.|
@@ -16674,7 +16674,7 @@ Electrolyze|Modern Masters|175|U|{1}{U}{R}|Instant|||Electrolyze deals 2 damage
Grand Arbiter Augustin IV|Modern Masters|176|R|{2}{W}{U}|Legendary Creature - Human Advisor|2|3|White spells you cast cost {1} less to cast.$Blue spells you cast cost {1} less to cast.$Spells your opponents cast cost {1} more to cast.|
Jhoira of the Ghitu|Modern Masters|177|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.)|
Knight of the Reliquary|Modern Masters|178|R|{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.|
-Lightning Helix|Modern Masters|179|U|{R}{W}|Instant|||Lightning Helix deals 3 damage to target creature or player and you gain 3 life.|
+Lightning Helix|Modern Masters|179|U|{R}{W}|Instant|||Lightning Helix deals 3 damage to any target and you gain 3 life.|
Hillcomber Giant|Modern Masters|18|C|{2}{W}{W}|Creature - Giant Scout|3|3|Mountainwalk|
Maelstrom Pulse|Modern Masters|180|R|{1}{B}{G}|Sorcery|||Destroy target nonland permanent and all other permanents with the same name as that permanent.|
Mind Funeral|Modern Masters|181|U|{1}{U}{B}|Sorcery|||Target opponent reveals cards from the top of his or her library until four land cards are revealed. That player puts all cards revealed this way into his or her graveyard.|
@@ -16688,8 +16688,8 @@ Divinity of Pride|Modern Masters|188|R|{WB}{WB}{WB}{WB}{WB}|Creature - Spirit Av
Figure of Destiny|Modern Masters|189|R|{RW}|Creature - Kithkin|1|1|{RW}: Figure of Destiny becomes a 2/2 Kithkin Spirit.${RW}{RW}{RW}: If Figure of Destiny is a Spirit, it becomes a 4/4 Kithkin Spirit Warrior.${RW}{RW}{RW}{RW}{RW}{RW}: If Figure of Destiny is a Warrior, it becomes an 8/8 Kithkin Spirit Warrior Avatar with flying and first strike.|
Ivory Giant|Modern Masters|19|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.)|
Kitchen Finks|Modern Masters|190|U|{1}{GW}{GW}|Creature - Ouphe|3|2|When Kitchen Finks enters the battlefield, you gain 2 life.$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.)|
-Manamorphose|Modern Masters|191|U|{1}{RG}|Instant|||Add two mana in any combination of colors to your mana pool.$Draw a card.|
-Murderous Redcap|Modern Masters|192|U|{2}{BR}{BR}|Creature - Goblin Assassin|2|2|When Murderous Redcap enters the battlefield, it deals damage equal to its power to target creature or player.$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.)|
+Manamorphose|Modern Masters|191|U|{1}{RG}|Instant|||Add two mana in any combination of colors.$Draw a card.|
+Murderous Redcap|Modern Masters|192|U|{2}{BR}{BR}|Creature - Goblin Assassin|2|2|When Murderous Redcap enters the battlefield, it deals damage equal to its power to any target.$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.)|
Oona, Queen of the Fae|Modern Masters|193|R|{3}{UB}{UB}{UB}|Legendary Creature - Faerie Wizard|5|5|Flying${X}{UB}: Choose a color. Target opponent exiles the top X cards of his or her library. For each card of the chosen color exiled this way, put a 1/1 blue and black Faerie Rogue creature token with flying onto the battlefield.|
Plumeveil|Modern Masters|194|U|{WU}{WU}{WU}|Creature - Elemental|4|4|Flash (You may cast this spell any time you could cast an instant.)$Defender, flying|
Worm Harvest|Modern Masters|195|U|{2}{BG}{BG}{BG}|Sorcery|||Put a 1/1 black and green Worm creature token onto the battlefield for each land card in your graveyard.$Retrace (You may cast this card from your graveyard by discarding a land card in addition to paying its other costs.)|
@@ -16707,30 +16707,30 @@ Engineered Explosives|Modern Masters|204|R|{X}|Artifact|||Sunburst (This ente
Epochrasite|Modern Masters|205|U|{2}|Artifact Creature - Construct|1|1|Epochrasite enters the battlefield with three +1/+1 counters on it if you didn't cast it from your hand.$When Epochrasite dies, exile it with three time counters on it and it gains suspend. (At the beginning of your upkeep, remove a time counter. When the last is removed, cast this card without paying its mana cost. It has haste.)|
Etched Oracle|Modern Masters|206|U|{4}|Artifact Creature - Wizard|0|0|Sunburst (This enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.)${1}, Remove four +1/+1 counters from Etched Oracle: Target player draws three cards.|
Frogmite|Modern Masters|207|C|{4}|Artifact Creature - Frog|2|2|Affinity for artifacts (This spell costs {1} less to cast for each artifact you control.)|
-Lotus Bloom|Modern Masters|208|R||Artifact|||Suspend 3-{0} (Rather than cast this card from your hand, pay {0} 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.)${tap}, Sacrifice Lotus Bloom: Add three mana of any one color to your mana pool.|
+Lotus Bloom|Modern Masters|208|R||Artifact|||Suspend 3-{0} (Rather than cast this card from your hand, pay {0} 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.)${tap}, Sacrifice Lotus Bloom: Add three mana of any one color.|
Myr Enforcer|Modern Masters|209|C|{7}|Artifact Creature - Myr|4|4|Affinity for artifacts (This spell costs {1} less to cast for each artifact you control.)|
Kithkin Greatheart|Modern Masters|21|C|{1}{W}|Creature - Kithkin Soldier|2|1|As long as you control a Giant, Kithkin Greatheart gets +1/+1 and has first strike.|
Myr Retriever|Modern Masters|210|U|{2}|Artifact Creature - Myr|1|1|When Myr Retriever dies, return another target artifact card from your graveyard to your hand.|
-Paradise Mantle|Modern Masters|211|U|{0}|Artifact - Equipment|||Equipped creature has "{tap}: Add one mana of any color to your mana pool."$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)|
-Pyrite Spellbomb|Modern Masters|212|C|{1}|Artifact|||{R}, Sacrifice Pyrite Spellbomb: Pyrite Spellbomb deals 2 damage to target creature or player.${1}, Sacrifice Pyrite Spellbomb: Draw a card.|
+Paradise Mantle|Modern Masters|211|U|{0}|Artifact - Equipment|||Equipped creature has "{tap}: Add one mana of any color."$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)|
+Pyrite Spellbomb|Modern Masters|212|C|{1}|Artifact|||{R}, Sacrifice Pyrite Spellbomb: Pyrite Spellbomb deals 2 damage to any target.${1}, Sacrifice Pyrite Spellbomb: Draw a card.|
Relic of Progenitus|Modern Masters|213|U|{1}|Artifact|||{tap}: Target player exiles a card from his or her graveyard.${1}, Exile Relic of Progenitus: Exile all cards from all graveyards. Draw a card.|
Runed Stalactite|Modern Masters|214|C|{1}|Artifact - Equipment|||Equipped creature gets +1/+1 and is every creature type.$Equip {2}|
Skyreach Manta|Modern Masters|215|C|{5}|Artifact Creature - Fish|0|0|Sunburst (This enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.)$Flying|
-Sword of Fire and Ice|Modern Masters|216|M|{3}|Artifact - Equipment|||Equipped creature gets +2/+2 and has protection from red and from blue.$Whenever equipped creature deals combat damage to a player, Sword of Fire and Ice deals 2 damage to target creature or player and you draw a card.$Equip {2}|
+Sword of Fire and Ice|Modern Masters|216|M|{3}|Artifact - Equipment|||Equipped creature gets +2/+2 and has protection from red and from blue.$Whenever equipped creature deals combat damage to a player, Sword of Fire and Ice deals 2 damage to any target and you draw a card.$Equip {2}|
Sword of Light and Shadow|Modern Masters|217|M|{3}|Artifact - Equipment|||Equipped creature gets +2/+2 and has protection from white and from black.$Whenever equipped creature deals combat damage to a player, you gain 3 life and you may return up to one target creature card from your graveyard to your hand.$Equip {2}|
Vedalken Shackles|Modern Masters|218|M|{3}|Artifact|||You may choose not to untap Vedalken Shackles during your untap step.${2}, {tap}: Gain control of target creature with power less than or equal to the number of Islands you control for as long as Vedalken Shackles remains tapped.|
Academy Ruins|Modern Masters|219|R||Legendary Land|||{tap}: Add {C}.${1}{U}, {tap}: Put target artifact card from your graveyard on top of your library.|
Meadowboon|Modern Masters|22|U|{2}{W}{W}|Creature - Elemental|3|3|When Meadowboon leaves the battlefield, put a +1/+1 counter on each creature target player controls.$Evoke {3}{W} (You may cast this spell for its evoke cost. If you do, it's sacrificed when it enters the battlefield.)|
Blinkmoth Nexus|Modern Masters|220|R||Land|||{tap}: Add {C}.${1}: Blinkmoth Nexus becomes a 1/1 Blinkmoth artifact creature with flying until end of turn. It's still a land.${1}, {tap}: Target Blinkmoth creature gets +1/+1 until end of turn.|
-City of Brass|Modern Masters|221|R||Land|||Whenever City of Brass becomes tapped, it deals 1 damage to you.${tap}: Add one mana of any color to your mana pool.|
+City of Brass|Modern Masters|221|R||Land|||Whenever City of Brass becomes tapped, it deals 1 damage to you.${tap}: Add one mana of any color.|
Dakmor Salvage|Modern Masters|222|U||Land|||Dakmor Salvage enters the battlefield tapped.${tap}: Add {B}.$Dredge 2 (If you would draw a card, instead you may put exactly two cards from the top of your library into your graveyard. If you do, return this card from your graveyard to your hand. Otherwise, draw a card.)|
-Glimmervoid|Modern Masters|223|R||Land|||At the beginning of the end step, if you control no artifacts, sacrifice Glimmervoid.${tap}: Add one mana of any color to your mana pool.|
+Glimmervoid|Modern Masters|223|R||Land|||At the beginning of the end step, if you control no artifacts, sacrifice Glimmervoid.${tap}: Add one mana of any color.|
Terramorphic Expanse|Modern Masters|224|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.|
-Vivid Crag|Modern Masters|225|U||Land|||Vivid Crag enters the battlefield tapped with two charge counters on it.${tap}: Add {R}.${tap}, Remove a charge counter from Vivid Crag: Add one mana of any color to your mana pool.|
-Vivid Creek|Modern Masters|226|U||Land|||Vivid Creek enters the battlefield tapped with two charge counters on it.${tap}: Add {U}.${tap}, Remove a charge counter from Vivid Creek: Add one mana of any color to your mana pool.|
-Vivid Grove|Modern Masters|227|U||Land|||Vivid Grove enters the battlefield tapped with two charge counters on it.${tap}: Add {G}.${tap}, Remove a charge counter from Vivid Grove: Add one mana of any color to your mana pool.|
-Vivid Marsh|Modern Masters|228|U||Land|||Vivid Marsh enters the battlefield tapped with two charge counters on it.${tap}: Add {B}.${tap}, Remove a charge counter from Vivid Marsh: Add one mana of any color to your mana pool.|
-Vivid Meadow|Modern Masters|229|U||Land|||Vivid Meadow enters the battlefield tapped with two charge counters on it.${tap}: Add {W}.${tap}, Remove a charge counter from Vivid Meadow: Add one mana of any color to your mana pool.|
+Vivid Crag|Modern Masters|225|U||Land|||Vivid Crag enters the battlefield tapped with two charge counters on it.${tap}: Add {R}.${tap}, Remove a charge counter from Vivid Crag: Add one mana of any color.|
+Vivid Creek|Modern Masters|226|U||Land|||Vivid Creek enters the battlefield tapped with two charge counters on it.${tap}: Add {U}.${tap}, Remove a charge counter from Vivid Creek: Add one mana of any color.|
+Vivid Grove|Modern Masters|227|U||Land|||Vivid Grove enters the battlefield tapped with two charge counters on it.${tap}: Add {G}.${tap}, Remove a charge counter from Vivid Grove: Add one mana of any color.|
+Vivid Marsh|Modern Masters|228|U||Land|||Vivid Marsh enters the battlefield tapped with two charge counters on it.${tap}: Add {B}.${tap}, Remove a charge counter from Vivid Marsh: Add one mana of any color.|
+Vivid Meadow|Modern Masters|229|U||Land|||Vivid Meadow enters the battlefield tapped with two charge counters on it.${tap}: Add {W}.${tap}, Remove a charge counter from Vivid Meadow: Add one mana of any color.|
Otherworldly Journey|Modern Masters|23|C|{1}{W}|Instant - Arcane|||Exile target creature. At the beginning of the next end step, return that card to the battlefield under its owner's control with a +1/+1 counter on it.|
Pallid Mycoderm|Modern Masters|24|C|{3}{W}|Creature - Fungus|2|4|At the beginning of your upkeep, put a spore counter on Pallid Mycoderm.$Remove three spore counters from Pallid Mycoderm: Put a 1/1 green Saproling creature token onto the battlefield.$Sacrifice a Saproling: Each creature you control that's a Fungus or a Saproling gets +1/+1 until end of turn.|
Path to Exile|Modern Masters|25|U|{W}|Instant|||Exile target creature. Its controller may search his or her library for a basic land card, put that card onto the battlefield tapped, then shuffle his or her library.|
@@ -16821,38 +16821,38 @@ Thief of Hope|Modern Masters 2015 Edition|100|C|{2}{B}|Creature - Spirit|2|2|Whe
Vampire Lacerator|Modern Masters 2015 Edition|101|C|{B}|Creature - Vampire Warrior|2|2|At the beginning of your upkeep, you lose 1 life unless an opponent has 10 or less life.|
Vampire Outcasts|Modern Masters 2015 Edition|102|U|{2}{B}{B}|Creature - Vampire|2|2|Bloodthirst 2 (If an opponent was dealt damage this turn, this creature enters the battlefield with two +1/+1 counters on it.)$Lifelink (Damage dealt by this creature also causes you to gain that much life.)|
Waking Nightmare|Modern Masters 2015 Edition|103|C|{2}{B}|Sorcery - Arcane|||Target player discards two cards.|
-Banefire|Modern Masters 2015 Edition|104|R|{X}{R}|Sorcery|||Banefire deals X damage to target creature or player.$If X is 5 or more, Banefire can't be countered by spells or abilities and the damage can't be prevented.|
+Banefire|Modern Masters 2015 Edition|104|R|{X}{R}|Sorcery|||Banefire deals X damage to any target.$If X is 5 or more, Banefire can't be countered by spells or abilities and the damage can't be prevented.|
Blades of Velis Vel|Modern Masters 2015 Edition|105|C|{1}{R}|Tribal Instant - Shapeshifter|||Changeling (This card is every creature type at all times.)$Up to two target creatures each get +2/+0 and gain all creature types until end of turn.|
Blood Ogre|Modern Masters 2015 Edition|106|C|{2}{R}|Creature - Ogre Warrior|2|2|Bloodthirst 1 (If an opponent was dealt damage this turn, this creature enters the battlefield with a +1/+1 counter on it.)$First strike (This creature deals combat damage before creatures without first strike.)|
Bloodshot Trainee|Modern Masters 2015 Edition|107|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.|
Brute Force|Modern Masters 2015 Edition|108|C|{R}|Instant|||Target creature gets +3/+3 until end of turn.|
-Burst Lightning|Modern Masters 2015 Edition|109|C|{R}|Instant|||Kicker {4} (You may pay an additional {4} as you cast this spell.)$Burst Lightning deals 2 damage to target creature or player. If Burst Lightning was kicked, it deals 4 damage to that creature or player instead.|
+Burst Lightning|Modern Masters 2015 Edition|109|C|{R}|Instant|||Kicker {4} (You may pay an additional {4} as you cast this spell.)$Burst Lightning deals 2 damage to any target. If Burst Lightning was kicked, it deals 4 damage to that creature or player instead.|
Celestial Purge|Modern Masters 2015 Edition|11|U|{1}{W}|Instant|||Exile target black or red permanent.|
Combust|Modern Masters 2015 Edition|110|U|{1}{R}|Instant|||Combust can't be countered by spells or abilities.$Combust deals 5 damage to target white or blue creature. The damage can't be prevented.|
-Comet Storm|Modern Masters 2015 Edition|111|M|{X}{R}{R}|Instant|||Multikicker {1} (You may pay an additional {1} any number of times as you cast this spell.)$Choose target creature or player, then choose another target creature or player for each time Comet Storm was kicked. Comet Storm deals X damage to each of them.|
+Comet Storm|Modern Masters 2015 Edition|111|M|{X}{R}{R}|Instant|||Multikicker {1} (You may pay an additional {1} any number of times as you cast this spell.)$Choose any target, then choose another any target for each time Comet Storm was kicked. Comet Storm deals X damage to each of them.|
Dragonsoul Knight|Modern Masters 2015 Edition|112|C|{2}{R}|Creature - Human Knight|2|2|First strike${W}{U}{B}{R}{G}: Until end of turn, Dragonsoul Knight becomes a Dragon, gets +5/+3, and gains flying and trample.|
Fiery Fall|Modern Masters 2015 Edition|113|C|{5}{R}|Instant|||Fiery Fall deals 5 damage to target creature.$Basic landcycling {1}{R} ({1}{R}, Discard this card: Search your library for a basic land card, reveal it, and put it into your hand. Then shuffle your library.)|
Goblin Fireslinger|Modern Masters 2015 Edition|114|C|{R}|Creature - Goblin Warrior|1|1|{tap}: Goblin Fireslinger deals 1 damage to target player.|
Goblin War Paint|Modern Masters 2015 Edition|115|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2 and has haste. (It can attack and {tap} no matter when it came under its controller's control.)|
Gorehorn Minotaurs|Modern Masters 2015 Edition|116|C|{2}{R}{R}|Creature - Minotaur Warrior|3|3|Bloodthirst 2 (If an opponent was dealt damage this turn, this creature enters the battlefield with two +1/+1 counters on it.)|
-Gut Shot|Modern Masters 2015 Edition|117|C|{RP}|Instant|||({RP} can be paid with either {R} or 2 life.)$Gut Shot deals 1 damage to target creature or player.|
+Gut Shot|Modern Masters 2015 Edition|117|C|{RP}|Instant|||({RP} can be paid with either {R} or 2 life.)$Gut Shot deals 1 damage to any target.|
Hellkite Charger|Modern Masters 2015 Edition|118|R|{4}{R}{R}|Creature - Dragon|5|5|Flying, haste$Whenever Hellkite Charger attacks, you may pay {5}{R}{R}. If you do, untap all attacking creatures and after this phase, there is an additional combat phase.|
Incandescent Soulstoke|Modern Masters 2015 Edition|119|U|{2}{R}|Creature - Elemental Shaman|2|2|Other Elemental creatures you control get +1/+1.${1}{R}, {tap}: You may put an Elemental creature card from your hand onto the battlefield. That creature gains haste until end of turn. Sacrifice it at the beginning of the next end step.|
Conclave Phalanx|Modern Masters 2015 Edition|12|C|{4}{W}|Creature - Human Soldier|2|4|Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.)$When Conclave Phalanx enters the battlefield, you gain 1 life for each creature you control.|
Inner-Flame Igniter|Modern Masters 2015 Edition|120|C|{2}{R}|Creature - Elemental Warrior|2|2|{2}{R}: Creatures you control get +1/+0 until end of turn. If this is the third time this ability has resolved this turn, creatures you control gain first strike until end of turn.|
Kiki-Jiki, Mirror Breaker|Modern Masters 2015 Edition|121|M|{2}{R}{R}{R}|Legendary Creature - Goblin Shaman|2|2|Haste${tap}: Put a token that's a copy of target nonlegendary creature you control onto the battlefield. That token has haste. Sacrifice it at the beginning of the next end step.|
-Lightning Bolt|Modern Masters 2015 Edition|122|U|{R}|Instant|||Lightning Bolt deals 3 damage to target creature or player.|
+Lightning Bolt|Modern Masters 2015 Edition|122|U|{R}|Instant|||Lightning Bolt deals 3 damage to any target.|
Skarrgan Firebird|Modern Masters 2015 Edition|123|U|{4}{R}{R}|Creature - Phoenix|3|3|Bloodthirst 3 (If an opponent was dealt damage this turn, this creature enters the battlefield with three +1/+1 counters on it.)$Flying${R}{R}{R}: Return Skarrgan Firebird from your graveyard to your hand. Activate this ability only if an opponent was dealt damage this turn.|
Smash to Smithereens|Modern Masters 2015 Edition|124|C|{1}{R}|Instant|||Destroy target artifact. Smash to Smithereens deals 3 damage to that artifact's controller.|
-Smokebraider|Modern Masters 2015 Edition|125|C|{1}{R}|Creature - Elemental Shaman|1|1|{tap}: Add two mana in any combination of colors to your mana pool. Spend this mana only to cast Elemental spells or activate abilities of Elementals.|
+Smokebraider|Modern Masters 2015 Edition|125|C|{1}{R}|Creature - Elemental Shaman|1|1|{tap}: Add two mana in any combination of colors. Spend this mana only to cast Elemental spells or activate abilities of Elementals.|
Soulbright Flamekin|Modern Masters 2015 Edition|126|C|{1}{R}|Creature - Elemental Shaman|2|1|{2}: Target creature gains trample until end of turn. If this is the third time this ability has resolved this turn, you may add {R}{R}{R}{R}{R}{R}{R}{R}.|
-Spikeshot Elder|Modern Masters 2015 Edition|127|R|{R}|Creature - Goblin Shaman|1|1|{1}{R}{R}: Spikeshot Elder deals damage equal to its power to target creature or player.|
+Spikeshot Elder|Modern Masters 2015 Edition|127|R|{R}|Creature - Goblin Shaman|1|1|{1}{R}{R}: Spikeshot Elder deals damage equal to its power to any target.|
Spitebellows|Modern Masters 2015 Edition|128|U|{5}{R}|Creature - Elemental|6|1|When Spitebellows leaves the battlefield, it deals 6 damage to target creature.$Evoke {1}{R}{R} (You may cast this spell for its evoke cost. If you do, it's sacrificed when it enters the battlefield.)|
Splinter Twin|Modern Masters 2015 Edition|129|R|{2}{R}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{tap}: Put a token that's a copy of this creature onto the battlefield. That token has haste. Exile it at the beginning of the next end step."|
Court Homunculus|Modern Masters 2015 Edition|13|C|{W}|Artifact Creature - Homunculus|1|1|Court Homunculus gets +1/+1 as long as you control another artifact.|
Stormblood Berserker|Modern Masters 2015 Edition|130|U|{1}{R}|Creature - Human Berserker|1|1|Bloodthirst 2 (If an opponent was dealt damage this turn, this creature enters the battlefield with two +1/+1 counters on it.)$Stormblood Berserker can't be blocked except by two or more creatures.|
Thunderblust|Modern Masters 2015 Edition|131|R|{2}{R}{R}{R}|Creature - Elemental|7|2|Haste$Thunderblust has trample as long as it has a -1/-1 counter on 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.)|
-Tribal Flames|Modern Masters 2015 Edition|132|C|{1}{R}|Sorcery|||Domain - Tribal Flames deals X damage to target creature or player, where X is the number of basic land types among lands you control.|
+Tribal Flames|Modern Masters 2015 Edition|132|C|{1}{R}|Sorcery|||Domain - Tribal Flames deals X damage to any target, where X is the number of basic land types among lands you control.|
Viashino Slaughtermaster|Modern Masters 2015 Edition|133|C|{1}{R}|Creature - Viashino Warrior|1|1|Double strike${B}{G}: Viashino Slaughtermaster gets +1/+1 until end of turn. Activate this ability only once each turn.|
Wildfire|Modern Masters 2015 Edition|134|R|{4}{R}{R}|Sorcery|||Each player sacrifices four lands. Wildfire deals 4 damage to each creature.|
Worldheart Phoenix|Modern Masters 2015 Edition|135|U|{3}{R}|Creature - Phoenix|2|2|Flying$You may cast Worldheart Phoenix from your graveyard by paying {W}{U}{B}{R}{G} rather than paying its mana cost. If you do, it enters the battlefield with two +1/+1 counters on it.|
@@ -16895,7 +16895,7 @@ Vines of Vastwood|Modern Masters 2015 Edition|168|C|{G}|Instant|||Kicker {G}
Wolfbriar Elemental|Modern Masters 2015 Edition|169|R|{2}{G}{G}|Creature - Elemental|4|4|Multikicker {G} (You may pay an additional {G} any number of times as you cast this spell.)$When Wolfbriar Elemental enters the battlefield, put a 2/2 green Wolf creature token onto the battlefield for each time it was kicked.|
Fortify|Modern Masters 2015 Edition|17|C|{2}{W}|Instant|||Choose one -$� Creatures you control get +2/+0 until end of turn.$� Creatures you control get +0/+2 until end of turn.|
Agony Warp|Modern Masters 2015 Edition|170|U|{U}{B}|Instant|||Target creature gets -3/-0 until end of turn.$Target creature gets -0/-3 until end of turn.|
-Apocalypse Hydra|Modern Masters 2015 Edition|171|R|{X}{R}{G}|Creature - Hydra|0|0|Apocalypse Hydra enters the battlefield with X +1/+1 counters on it. If X is 5 or more, it enters the battlefield with an additional X +1/+1 counters on it.${1}{R}, Remove a +1/+1 counter from Apocalypse Hydra: Apocalypse Hydra deals 1 damage to target creature or player.|
+Apocalypse Hydra|Modern Masters 2015 Edition|171|R|{X}{R}{G}|Creature - Hydra|0|0|Apocalypse Hydra enters the battlefield with X +1/+1 counters on it. If X is 5 or more, it enters the battlefield with an additional X +1/+1 counters on it.${1}{R}, Remove a +1/+1 counter from Apocalypse Hydra: Apocalypse Hydra deals 1 damage to any target.|
Boros Swiftblade|Modern Masters 2015 Edition|172|U|{R}{W}|Creature - Human Soldier|1|2|Double strike|
Drooling Groodion|Modern Masters 2015 Edition|173|U|{3}{B}{B}{G}|Creature - Beast|4|3|{2}{B}{G}, Sacrifice a creature: Target creature gets +2/+2 until end of turn. Another target creature gets -2/-2 until end of turn.|
Electrolyze|Modern Masters 2015 Edition|174|U|{1}{U}{R}|Instant|||Electrolyze deals 2 damage divided as you choose among one or two target creatures and/or players.$Draw a card.|
@@ -16907,13 +16907,13 @@ Lorescale Coatl|Modern Masters 2015 Edition|179|U|{1}{G}{U}|Creature - Snake|2|2
Hikari, Twilight Guardian|Modern Masters 2015 Edition|18|U|{3}{W}{W}|Legendary Creature - Spirit|4|4|Flying$Whenever you cast a Spirit or Arcane spell, you may exile Hikari, Twilight Guardian. If you do, return it to the battlefield under its owner's control at the beginning of the next end step.|
Mystic Snake|Modern Masters 2015 Edition|180|R|{1}{G}{U}{U}|Creature - Snake|2|2|Flash (You may cast this spell any time you could cast an instant.)$When Mystic Snake enters the battlefield, counter target spell.|
Necrogenesis|Modern Masters 2015 Edition|181|U|{B}{G}|Enchantment|||{2}: Exile target creature card from a graveyard. Put a 1/1 green Saproling creature token onto the battlefield.|
-Niv-Mizzet, the Firemind|Modern Masters 2015 Edition|182|R|{2}{U}{U}{R}{R}|Legendary Creature - Dragon Wizard|4|4|Flying$Whenever you draw a card, Niv-Mizzet, the Firemind deals 1 damage to target creature or player.${tap}: Draw a card.|
+Niv-Mizzet, the Firemind|Modern Masters 2015 Edition|182|R|{2}{U}{U}{R}{R}|Legendary Creature - Dragon Wizard|4|4|Flying$Whenever you draw a card, Niv-Mizzet, the Firemind deals 1 damage to any target.${tap}: Draw a card.|
Pillory of the Sleepless|Modern Masters 2015 Edition|183|U|{1}{W}{B}|Enchantment - Aura|||Enchant creature$Enchanted creature can't attack or block.$Enchanted creature has "At the beginning of your upkeep, you lose 1 life."|
Plaxcaster Frogling|Modern Masters 2015 Edition|184|U|{1}{G}{U}|Creature - Frog 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.)${2}: Target creature with a +1/+1 counter on it gains shroud until end of turn. (It can't be the target of spells or abilities.)|
Savage Twister|Modern Masters 2015 Edition|185|U|{X}{R}{G}|Sorcery|||Savage Twister deals X damage to each creature.|
Shadowmage Infiltrator|Modern Masters 2015 Edition|186|R|{1}{U}{B}|Creature - Human Wizard|1|3|Fear (This creature can't be blocked except by artifact creatures and/or black creatures.)$Whenever Shadowmage Infiltrator deals combat damage to a player, you may draw a card.|
Sigil Blessing|Modern Masters 2015 Edition|187|U|{G}{W}|Instant|||Until end of turn, target creature you control gets +3/+3 and other creatures you control get +1/+1.|
-Vengeful Rebirth|Modern Masters 2015 Edition|188|U|{4}{R}{G}|Sorcery|||Return target card from your graveyard to your hand. If you return a nonland card to your hand this way, Vengeful Rebirth deals damage equal to that card's converted mana cost to target creature or player.$Exile Vengeful Rebirth.|
+Vengeful Rebirth|Modern Masters 2015 Edition|188|U|{4}{R}{G}|Sorcery|||Return target card from your graveyard to your hand. If you return a nonland card to your hand this way, Vengeful Rebirth deals damage equal to that card's converted mana cost to any target.$Exile Vengeful Rebirth.|
Wrecking Ball|Modern Masters 2015 Edition|189|U|{2}{B}{R}|Instant|||Destroy target creature or land.|
Indomitable Archangel|Modern Masters 2015 Edition|19|R|{2}{W}{W}|Creature - Angel|4|4|Flying$Metalcraft - Artifacts you control have shroud as long as you control three or more artifacts. (An artifact with shroud can't be the target of spells or abilities.)|
Ashenmoor Gouger|Modern Masters 2015 Edition|190|U|{BR}{BR}{BR}|Creature - Elemental Warrior|4|4|Ashenmoor Gouger can't block.|
@@ -16929,7 +16929,7 @@ Swans of Bryn Argoll|Modern Masters 2015 Edition|199|R|{2}{WU}{WU}|Creature - Bi
Artisan of Kozilek|Modern Masters 2015 Edition|2|U|{9}|Creature - Eldrazi|10|9|When you cast Artisan of Kozilek, you may return target creature card from your graveyard to the battlefield.$Annihilator 2 (Whenever this creature attacks, defending player sacrifices two permanents.)|
Iona, Shield of Emeria|Modern Masters 2015 Edition|20|M|{6}{W}{W}{W}|Legendary Creature - Angel|7|7|Flying$As Iona, Shield of Emeria enters the battlefield, choose a color.$Your opponents can't cast spells of the chosen color.|
Wilt-Leaf Liege|Modern Masters 2015 Edition|200|R|{1}{GW}{GW}{GW}|Creature - Elf Knight|4|4|Other green creatures you control get +1/+1.$Other white creatures you control get +1/+1.$If a spell or ability an opponent controls causes you to discard Wilt-Leaf Liege, put it onto the battlefield instead of putting it into your graveyard.|
-Alloy Myr|Modern Masters 2015 Edition|201|C|{3}|Artifact Creature - Myr|2|2|{tap}: Add one mana of any color to your mana pool.|
+Alloy Myr|Modern Masters 2015 Edition|201|C|{3}|Artifact Creature - Myr|2|2|{tap}: Add one mana of any color.|
Blinding Souleater|Modern Masters 2015 Edition|202|C|{3}|Artifact Creature - Cleric|1|3|{WP}, {tap}: Tap target creature. ({WP} can be paid with either {W} or 2 life.)|
Cathodion|Modern Masters 2015 Edition|203|C|{3}|Artifact Creature - Construct|3|3|When Cathodion dies, add {C}{C}{C}.|
Chimeric Mass|Modern Masters 2015 Edition|204|R|{X}|Artifact|||Chimeric Mass enters the battlefield with X charge counters on it.${1}: Until end of turn, Chimeric Mass becomes a Construct artifact creature with "This creature's power and toughness are each equal to the number of charge counters on it."|
@@ -16952,8 +16952,8 @@ Lodestone Golem|Modern Masters 2015 Edition|219|R|{4}|Artifact Creature - Golem|
Kor Duelist|Modern Masters 2015 Edition|22|U|{W}|Creature - Kor Soldier|1|1|As long as Kor Duelist is equipped, it has double strike. (It deals both first-strike and regular combat damage.)|
Lodestone Myr|Modern Masters 2015 Edition|220|R|{4}|Artifact Creature - Myr|2|2|Trample$Tap an untapped artifact you control: Lodestone Myr gets +1/+1 until end of turn.|
Long-Forgotten Gohei|Modern Masters 2015 Edition|221|R|{3}|Artifact|||Arcane spells you cast cost {1} less to cast.$Spirit creatures you control get +1/+1.|
-Mortarpod|Modern Masters 2015 Edition|222|U|{2}|Artifact - Equipment|||Living weapon (When this Equipment enters the battlefield, put a 0/0 black Germ creature token onto the battlefield, then attach this to it.)$Equipped creature gets +0/+1 and has "Sacrifice this creature: This creature deals 1 damage to target creature or player."$Equip {2}|
-Mox Opal|Modern Masters 2015 Edition|223|M|{0}|Legendary Artifact|||Metalcraft - {tap}: Add one mana of any color to your mana pool. Activate this ability only if you control three or more artifacts.|
+Mortarpod|Modern Masters 2015 Edition|222|U|{2}|Artifact - Equipment|||Living weapon (When this Equipment enters the battlefield, put a 0/0 black Germ creature token onto the battlefield, then attach this to it.)$Equipped creature gets +0/+1 and has "Sacrifice this creature: This creature deals 1 damage to any target."$Equip {2}|
+Mox Opal|Modern Masters 2015 Edition|223|M|{0}|Legendary Artifact|||Metalcraft - {tap}: Add one mana of any color. Activate this ability only if you control three or more artifacts.|
Myr Enforcer|Modern Masters 2015 Edition|224|C|{7}|Artifact Creature - Myr|4|4|Affinity for artifacts (This spell costs {1} less to cast for each artifact you control.)|
Precursor Golem|Modern Masters 2015 Edition|225|R|{5}|Artifact Creature - Golem|3|3|When Precursor Golem enters the battlefield, put two 3/3 colorless Golem artifact creature tokens onto the battlefield.$Whenever a player casts an instant or sorcery spell that targets only a single Golem, that player copies that spell for each other Golem that spell could target. Each copy targets a different one of those Golems.|
Runed Servitor|Modern Masters 2015 Edition|226|C|{2}|Artifact Creature - Construct|2|2|When Runed Servitor dies, each player draws a card.|
@@ -16962,7 +16962,7 @@ Sickleslicer|Modern Masters 2015 Edition|228|C|{3}|Artifact - Equipment|||Living
Skyreach Manta|Modern Masters 2015 Edition|229|C|{5}|Artifact Creature - Fish|0|0|Sunburst (This enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.)$Flying|
Leyline of Sanctity|Modern Masters 2015 Edition|23|R|{2}{W}{W}|Enchantment|||If Leyline of Sanctity is in your opening hand, you may begin the game with it on the battlefield.$You have hexproof. (You can't be the target of spells or abilities your opponents control.)|
Spellskite|Modern Masters 2015 Edition|230|R|{2}|Artifact Creature - Horror|0|4|{UP}: Change a target of target spell or ability to Spellskite. ({UP} can be paid with either {U} or 2 life.)|
-Sphere of the Suns|Modern Masters 2015 Edition|231|C|{2}|Artifact|||Sphere of the Suns enters the battlefield tapped and with three charge counters on it.${tap}, Remove a charge counter from Sphere of the Suns: Add one mana of any color to your mana pool.|
+Sphere of the Suns|Modern Masters 2015 Edition|231|C|{2}|Artifact|||Sphere of the Suns enters the battlefield tapped and with three charge counters on it.${tap}, Remove a charge counter from Sphere of the Suns: Add one mana of any color.|
Sunforger|Modern Masters 2015 Edition|232|R|{3}|Artifact - Equipment|||Equipped creature gets +4/+0.${R}{W}, Unattach Sunforger: Search your library for a red or white instant card with converted mana cost 4 or less and cast that card without paying its mana cost. Then shuffle your library.$Equip {3}|
Tumble Magnet|Modern Masters 2015 Edition|233|U|{3}|Artifact|||Tumble Magnet enters the battlefield with three charge counters on it.${tap}, Remove a charge counter from Tumble Magnet: Tap target artifact or creature.|
Wayfarer's Bauble|Modern Masters 2015 Edition|234|C|{1}|Artifact|||{2}, {tap}, Sacrifice Wayfarer's Bauble: Search your library for a basic land card and put that card onto the battlefield tapped. Then shuffle your library.|
@@ -17066,18 +17066,18 @@ Spread the Sickness|Modern Masters 2015 Edition|98|U|{4}{B}|Sorcery|||Destroy ta
Surgical Extraction|Modern Masters 2015 Edition|99|R|{BP}|Instant|||({BP} can be paid with either {B} or 2 life.)$Choose target card in a graveyard other than a basic land card. Search its owner's graveyard, hand, and library for any number of cards with the same name as that card and exile them. Then that player shuffles his or her library.|
Ballyrush Banneret|Morningtide|1|C|{1}{W}|Creature - Kithkin Soldier|2|1|Kithkin spells and Soldier spells you cast cost {1} less to cast.|
Forfend|Morningtide|10|C|{1}{W}|Instant|||Prevent all damage that would be dealt to creatures this turn.|
-Roar of the Crowd|Morningtide|100|C|{3}{R}|Sorcery|||Choose a creature type. Roar of the Crowd deals damage to target creature or player equal to the number of permanents you control of the chosen type.|
+Roar of the Crowd|Morningtide|100|C|{3}{R}|Sorcery|||Choose a creature type. Roar of the Crowd deals damage to any target equal to the number of permanents you control of the chosen type.|
Seething Pathblazer|Morningtide|101|C|{2}{R}|Creature - Elemental Warrior|2|2|Sacrifice an Elemental: Seething Pathblazer gets +2/+0 and gains first strike until end of turn.|
Sensation Gorger|Morningtide|102|R|{1}{R}{R}|Creature - Goblin Shaman|2|2|Kinship - At the beginning of your upkeep, you may look at the top card of your library. If it shares a creature type with Sensation Gorger, you may reveal it. If you do, each player discards his or her hand and draws four cards.|
-Shard Volley|Morningtide|103|C|{R}|Instant|||As an additional cost to cast Shard Volley, sacrifice a land.$Shard Volley deals 3 damage to target creature or player.|
+Shard Volley|Morningtide|103|C|{R}|Instant|||As an additional cost to cast Shard Volley, sacrifice a land.$Shard Volley deals 3 damage to any target.|
Shared Animosity|Morningtide|104|R|{2}{R}|Enchantment|||Whenever a creature you control attacks, it gets +1/+0 until end of turn for each other attacking creature that shares a creature type with it.|
Spitebellows|Morningtide|105|U|{5}{R}|Creature - Elemental|6|1|When Spitebellows leaves the battlefield, it deals 6 damage to target creature.$Evoke {1}{R}{R} (You may cast this spell for its evoke cost. If you do, it's sacrificed when it enters the battlefield.)|
Stingmoggie|Morningtide|106|C|{3}{R}|Creature - Elemental|0|0|Stingmoggie enters the battlefield with two +1/+1 counters on it.${3}{R}, Remove a +1/+1 counter from Stingmoggie: Destroy target artifact or land.|
-Stomping Slabs|Morningtide|107|U|{2}{R}|Sorcery|||Reveal the top seven cards of your library, then put those cards on the bottom of your library in any order. If a card named Stomping Slabs was revealed this way, Stomping Slabs deals 7 damage to target creature or player.|
-Sunflare Shaman|Morningtide|108|C|{1}{R}|Creature - Elemental Shaman|2|1|{1}{R}, {tap}: Sunflare Shaman deals X damage to target creature or player and X damage to itself, where X is the number of Elemental cards in your graveyard.|
+Stomping Slabs|Morningtide|107|U|{2}{R}|Sorcery|||Reveal the top seven cards of your library, then put those cards on the bottom of your library in any order. If a card named Stomping Slabs was revealed this way, Stomping Slabs deals 7 damage to any target.|
+Sunflare Shaman|Morningtide|108|C|{1}{R}|Creature - Elemental Shaman|2|1|{1}{R}, {tap}: Sunflare Shaman deals X damage to any target and X damage to itself, where X is the number of Elemental cards in your graveyard.|
Taurean Mauler|Morningtide|109|R|{2}{R}|Creature - Shapeshifter|2|2|Changeling (This card is every creature type at all times.)$Whenever an opponent casts a spell, you may put a +1/+1 counter on Taurean Mauler.|
Graceful Reprieve|Morningtide|11|U|{1}{W}|Instant|||When target creature dies this turn, return that card to the battlefield under its owner's control.|
-Titan's Revenge|Morningtide|110|R|{X}{R}{R}|Sorcery|||Titan's Revenge deals X damage to target creature or player. Clash with an opponent. If you win, return Titan's Revenge to its owner's hand. (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.)|
+Titan's Revenge|Morningtide|110|R|{X}{R}{R}|Sorcery|||Titan's Revenge deals X damage to any target. Clash with an opponent. If you win, return Titan's Revenge to its owner's hand. (Each clashing player reveals the top card of 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.)|
Vengeful Firebrand|Morningtide|111|R|{3}{R}|Creature - Elemental Warrior|5|2|Vengeful Firebrand has haste as long as a Warrior card is in your graveyard.${R}: Vengeful Firebrand gets +1/+0 until end of turn.|
War-Spike Changeling|Morningtide|112|C|{3}{R}|Creature - Shapeshifter|3|3|Changeling (This card is every creature type at all times.)${R}: War-Spike Changeling gains first strike until end of turn.|
Ambassador Oak|Morningtide|113|C|{3}{G}|Creature - Treefolk Warrior|3|3|When Ambassador Oak enters the battlefield, put a 1/1 green Elf Warrior creature token onto the battlefield.|
@@ -17115,11 +17115,11 @@ Cloak and Dagger|Morningtide|141|U|{2}|Tribal Artifact - Rogue Equipment|||Equip
Diviner's Wand|Morningtide|142|U|{3}|Tribal Artifact - Wizard Equipment|||Equipped creature has "Whenever you draw a card, this creature gets +1/+1 and gains flying until end of turn" and "{4}: Draw a card."$Whenever a Wizard creature enters the battlefield, you may attach Diviner's Wand to it.$Equip {3}|
Door of Destinies|Morningtide|143|R|{4}|Artifact|||As Door of Destinies enters the battlefield, choose a creature type.$Whenever you cast a spell of the chosen type, put a charge counter on Door of Destinies.$Creatures you control of the chosen type get +1/+1 for each charge counter on Door of Destinies.|
Obsidian Battle-Axe|Morningtide|144|U|{3}|Tribal Artifact - Warrior Equipment|||Equipped creature gets +2/+1 and has haste.$Whenever a Warrior creature enters the battlefield, you may attach Obsidian Battle-Axe to it.$Equip {3}|
-Thornbite Staff|Morningtide|145|U|{2}|Tribal Artifact - Shaman Equipment|||Equipped creature has "{2}, {tap}: This creature deals 1 damage to target creature or player" and "Whenever a creature dies, untap this creature."$Whenever a Shaman creature enters the battlefield, you may attach Thornbite Staff to it.$Equip {4}|
+Thornbite Staff|Morningtide|145|U|{2}|Tribal Artifact - Shaman Equipment|||Equipped creature has "{2}, {tap}: This creature deals 1 damage to any target" and "Whenever a creature dies, untap this creature."$Whenever a Shaman creature enters the battlefield, you may attach Thornbite Staff to it.$Equip {4}|
Veteran's Armaments|Morningtide|146|U|{2}|Tribal Artifact - Soldier Equipment|||Equipped creature has "Whenever this creature attacks or blocks, it gets +1/+1 until end of turn for each attacking creature."$Whenever a Soldier creature enters the battlefield, you may attach Veteran's Armaments to it.$Equip {2}|
Murmuring Bosk|Morningtide|147|R||Land - Forest|||({tap}: Add {G}.)$As Murmuring Bosk enters the battlefield, you may reveal a Treefolk card from your hand. If you don't, Murmuring Bosk enters the battlefield tapped.${tap}: Add {W} or {B}. Murmuring Bosk deals 1 damage to you.|
Mutavault|Morningtide|148|R||Land|||{tap}: Add {C}.${1}: Mutavault becomes a 2/2 creature with all creature types until end of turn. It's still a land.|
-Primal Beyond|Morningtide|149|R||Land|||As Primal Beyond enters the battlefield, you may reveal an Elemental card from your hand. If you don't, Primal Beyond enters the battlefield tapped.${tap}: Add {C}.${tap}: Add one mana of any color to your mana pool. Spend this mana only to cast an Elemental spell or activate an ability of an Elemental.|
+Primal Beyond|Morningtide|149|R||Land|||As Primal Beyond enters the battlefield, you may reveal an Elemental card from your hand. If you don't, Primal Beyond enters the battlefield tapped.${tap}: Add {C}.${tap}: Add one mana of any color. Spend this mana only to cast an Elemental spell or activate an ability of an Elemental.|
Kinsbaile Cavalier|Morningtide|15|R|{3}{W}|Creature - Kithkin Knight|2|2|Knight creatures you control have double strike.|
Rustic Clachan|Morningtide|150|R||Land|||As Rustic Clachan enters the battlefield, you may reveal a Kithkin card from your hand. If you don't, Rustic Clachan enters the battlefield tapped.${tap}: Add {W}.$Reinforce 1-{1}{W} ({1}{W}, Discard this card: Put a +1/+1 counter on target creature.)|
Kithkin Zephyrnaut|Morningtide|16|C|{2}{W}|Creature - Kithkin Soldier|2|2|Kinship - At the beginning of your upkeep, you may look at the top card of your library. If it shares a creature type with Kithkin Zephyrnaut, you may reveal it. If you do, Kithkin Zephyrnaut gets +2/+2 and gains flying and vigilance until end of turn.|
@@ -17207,12 +17207,12 @@ Feudkiller's Verdict|Morningtide|9|R|{4}{W}{W}|Tribal Sorcery - Giant|||You gain
Fire Juggler|Morningtide|90|C|{2}{R}|Creature - Goblin Shaman|2|2|Whenever Fire Juggler becomes blocked, clash with an opponent. If you win, Fire Juggler deals 4 damage to each creature blocking it. (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.)|
Hostile Realm|Morningtide|91|C|{2}{R}|Enchantment - Aura|||Enchant land$Enchanted land has "{tap}: Target creature can't block this turn."|
Kindled Fury|Morningtide|92|C|{R}|Instant|||Target creature gets +1/+0 and gains first strike until end of turn. (It deals combat damage before creatures without first strike.)|
-Lightning Crafter|Morningtide|93|R|{3}{R}|Creature - Goblin Shaman|3|3|Champion a Goblin or Shaman (When this enters the battlefield, sacrifice it unless you exile another Goblin or Shaman you control. When this leaves the battlefield, that card returns to the battlefield.)${tap}: Lightning Crafter deals 3 damage to target creature or player.|
+Lightning Crafter|Morningtide|93|R|{3}{R}|Creature - Goblin Shaman|3|3|Champion a Goblin or Shaman (When this enters the battlefield, sacrifice it unless you exile another Goblin or Shaman you control. When this leaves the battlefield, that card returns to the battlefield.)${tap}: Lightning Crafter deals 3 damage to any target.|
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.|
Mudbutton Clanger|Morningtide|95|C|{R}|Creature - Goblin Warrior|1|1|Kinship - At the beginning of your upkeep, you may look at the top card of your library. If it shares a creature type with Mudbutton Clanger, you may reveal it. If you do, Mudbutton Clanger gets +1/+1 until end of turn.|
Pyroclast Consul|Morningtide|96|U|{3}{R}{R}|Creature - Elemental Shaman|3|3|Kinship - At the beginning of your upkeep, you may look at the top card of your library. If it shares a creature type with Pyroclast Consul, you may reveal it. If you do, Pyroclast Consul deals 2 damage to each creature.|
Rage Forger|Morningtide|97|U|{2}{R}|Creature - Elemental Shaman|2|2|When Rage Forger enters the battlefield, put a +1/+1 counter on each other Shaman creature you control.$Whenever a creature you control with a +1/+1 counter on it attacks, you may have that creature deal 1 damage to target player.|
-Release the Ants|Morningtide|98|U|{1}{R}|Instant|||Release the Ants deals 1 damage to target creature or player. Clash with an opponent. If you win, return Release the Ants to its owner's hand. (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.)|
+Release the Ants|Morningtide|98|U|{1}{R}|Instant|||Release the Ants deals 1 damage to any target. Clash with an opponent. If you win, return Release the Ants to its owner's hand. (Each clashing player reveals the top card of 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.)|
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.)|
Angelic Favor|Nemesis|1|U|{3}{W}|Instant|||If you control a Plains, you may tap an untapped creature you control rather than pay Angelic Favor's mana cost.$Cast Angelic Favor only during combat.$Put a 4/4 white Angel creature token with flying onto the battlefield. Exile it at the beginning of the next end step.|
Lawbringer|Nemesis|10|C|{2}{W}|Creature - Kor Rebel|2|2|{tap}, Sacrifice Lawbringer: Exile target red creature.|
@@ -17224,7 +17224,7 @@ Fog Patch|Nemesis|104|C|{1}{G}|Instant|||Cast Fog Patch only during the declare
Harvest Mage|Nemesis|105|C|{G}|Creature - Human Spellshaper|1|1|{G}, {tap}, Discard a card: Until end of turn, if you tap a land for mana, it produces one mana of a color of your choice instead of any other type and amount.|
Mossdog|Nemesis|106|C|{G}|Creature - Plant Hound|1|1|Whenever Mossdog becomes the target of a spell or ability an opponent controls, put a +1/+1 counter on Mossdog.|
Nesting Wurm|Nemesis|107|U|{4}{G}{G}|Creature - Wurm|4|3|Trample$When Nesting Wurm enters the battlefield, you may search your library for up to three cards named Nesting Wurm, reveal them, and put them into your hand. If you do, shuffle your library.|
-Overlaid Terrain|Nemesis|108|R|{2}{G}{G}|Enchantment|||As Overlaid Terrain enters the battlefield, sacrifice all lands you control.$Lands you control have "{tap}: Add two mana of any one color to your mana pool."|
+Overlaid Terrain|Nemesis|108|R|{2}{G}{G}|Enchantment|||As Overlaid Terrain enters the battlefield, sacrifice all lands you control.$Lands you control have "{tap}: Add two mana of any one color."|
Pack Hunt|Nemesis|109|R|{3}{G}|Sorcery|||Search your library for up to three cards with the same name as target creature, reveal them, and put them into your hand. Then shuffle your library.|
Lightbringer|Nemesis|11|C|{2}{W}|Creature - Kor Rebel|2|2|{tap}, Sacrifice Lightbringer: Exile target black creature.|
Refreshing Rain|Nemesis|110|U|{3}{G}|Instant|||If an opponent controls a Swamp and you control a Forest, you may cast Refreshing Rain without paying its mana cost.$Target player gains 6 life.|
@@ -17262,7 +17262,7 @@ Tangle Wire|Nemesis|139|R|{3}|Artifact|||Fading 4 (This artifact enters the b
Noble Stand|Nemesis|14|U|{4}{W}|Enchantment|||Whenever a creature you control blocks, you gain 2 life.|
Viseling|Nemesis|140|U|{4}|Artifact Creature - Construct|2|2|At the beginning of each opponent's upkeep, Viseling deals X damage to that player, where X is the number of cards in his or her hand minus 4.|
Kor Haven|Nemesis|141|R||Legendary Land|||{tap}: Add {C}.$${1}{W}, {tap}: Prevent all combat damage that would be dealt by target attacking creature this turn.|
-Rath's Edge|Nemesis|142|R||Legendary Land|||{tap}: Add {C}.$${4}, {tap}, Sacrifice a land: Rath's Edge deals 1 damage to target creature or player.|
+Rath's Edge|Nemesis|142|R||Legendary Land|||{tap}: Add {C}.$${4}, {tap}, Sacrifice a land: Rath's Edge deals 1 damage to any target.|
Terrain Generator|Nemesis|143|U||Land|||{tap}: Add {C}.${2}, {tap}: You may put a basic land card from your hand onto the battlefield tapped.|
Off Balance|Nemesis|15|C|{W}|Instant|||Target creature can't attack or block this turn.|
Oracle's Attendants|Nemesis|16|R|{3}{W}|Creature - Human Soldier|1|5|{tap}: All damage that would be dealt to target creature this turn by a source of your choice is dealt to Oracle's Attendants instead.|
@@ -17302,7 +17302,7 @@ Stronghold Machinist|Nemesis|46|U|{2}{U}|Creature - Human Spellshaper|1|1|{U}{U}
Stronghold Zeppelin|Nemesis|47|U|{2}{U}{U}|Creature - Human|3|3|Flying$Stronghold Zeppelin can block only creatures with flying.|
Submerge|Nemesis|48|U|{4}{U}|Instant|||If an opponent controls a Forest and you control an Island, you may cast Submerge without paying its mana cost.$Put target creature on top of its owner's library.|
Trickster Mage|Nemesis|49|C|{U}|Creature - Human Spellshaper|1|1|{U}, {tap}, Discard a card: You may tap or untap target artifact, creature, or land.|
-Defender en-Vec|Nemesis|5|C|{3}{W}|Creature - Human Cleric|2|4|Fading 4 (This creature enters the battlefield with four fade counters on it. At the beginning of your upkeep, remove a fade counter from it. If you can't, sacrifice it.)$Remove a fade counter from Defender en-Vec: Prevent the next 2 damage that would be dealt to target creature or player this turn.|
+Defender en-Vec|Nemesis|5|C|{3}{W}|Creature - Human Cleric|2|4|Fading 4 (This creature enters the battlefield with four fade counters on it. At the beginning of your upkeep, remove a fade counter from it. If you can't, sacrifice it.)$Remove a fade counter from Defender en-Vec: Prevent the next 2 damage that would be dealt to any target this turn.|
Wandering Eye|Nemesis|50|C|{2}{U}|Creature - Illusion|1|3|Flying$Players play with their hands revealed.|
Ascendant Evincar|Nemesis|51|R|{4}{B}{B}|Legendary Creature - Vampire|3|3|Flying (This creature can't be blocked except by creatures with flying or reach.)$Other black creatures get +1/+1.$Nonblack creatures get -1/-1.|
Battlefield Percher|Nemesis|52|U|{3}{B}{B}|Creature - Bird|2|2|Flying$Battlefield Percher can block only creatures with flying.${1}{B}: Battlefield Percher gets +1/+1 until end of turn.|
@@ -17331,7 +17331,7 @@ Spiteful Bully|Nemesis|72|C|{1}{B}|Creature - Zombie Mercenary|3|3|At the beginn
Stronghold Discipline|Nemesis|73|C|{2}{B}{B}|Sorcery|||Each player loses 1 life for each creature he or she controls.|
Vicious Hunger|Nemesis|74|C|{B}{B}|Sorcery|||Vicious Hunger deals 2 damage to target creature and you gain 2 life.|
Volrath the Fallen|Nemesis|75|R|{3}{B}{B}{B}|Legendary Creature - Shapeshifter|6|4|{1}{B}, Discard a creature card: Volrath the Fallen gets +X/+X until end of turn, where X is the discarded card's converted mana cost.|
-Ancient Hydra|Nemesis|76|U|{4}{R}|Creature - Hydra|5|1|Fading 5 (This creature enters the battlefield with five fade counters on it. At the beginning of your upkeep, remove a fade counter from it. If you can't, sacrifice it.)${1}, Remove a fade counter from Ancient Hydra: Ancient Hydra deals 1 damage to target creature or player.|
+Ancient Hydra|Nemesis|76|U|{4}{R}|Creature - Hydra|5|1|Fading 5 (This creature enters the battlefield with five fade counters on it. At the beginning of your upkeep, remove a fade counter from it. If you can't, sacrifice it.)${1}, Remove a fade counter from Ancient Hydra: Ancient Hydra deals 1 damage to any target.|
Arc Mage|Nemesis|77|U|{2}{R}|Creature - Human Spellshaper|2|2|{2}{R}, {tap}, Discard a card: Arc Mage deals 2 damage divided as you choose among one or two target creatures and/or players.|
Bola Warrior|Nemesis|78|C|{1}{R}|Creature - Human Spellshaper Warrior|1|1|{R}, {tap}, Discard a card: Target creature can't block this turn.|
Downhill Charge|Nemesis|79|C|{2}{R}|Instant|||You may sacrifice a Mountain rather than pay Downhill Charge's mana cost.$$Target creature gets +X/+0 until end of turn, where X is the number of Mountains you control.|
@@ -17355,11 +17355,11 @@ Mogg Salvage|Nemesis|94|U|{2}{R}|Instant|||If an opponent controls an Island and
Mogg Toady|Nemesis|95|C|{1}{R}|Creature - Goblin|2|2|Mogg Toady can't attack unless you control more creatures than defending player.$Mogg Toady can't block unless you control more creatures than attacking player.|
Moggcatcher|Nemesis|96|R|{2}{R}{R}|Creature - Human Mercenary|2|2|{3}, {tap}: Search your library for a Goblin permanent card and put it onto the battlefield. Then shuffle your library.|
Rupture|Nemesis|97|U|{2}{R}|Sorcery|||Sacrifice a creature. Rupture deals damage equal to that creature's power to each creature without flying and each player.|
-Seal of Fire|Nemesis|98|C|{R}|Enchantment|||Sacrifice Seal of Fire: Seal of Fire deals 2 damage to target creature or player.|
+Seal of Fire|Nemesis|98|C|{R}|Enchantment|||Sacrifice Seal of Fire: Seal of Fire deals 2 damage to any target.|
Shrieking Mogg|Nemesis|99|R|{1}{R}|Creature - Goblin|1|1|Haste$When Shrieking Mogg enters the battlefield, tap all other creatures.|
Karn Liberated|New Phyrexia|1|M|{7}|Legendary Planeswalker - Karn|||+4: Target player exiles a card from his or her hand.$-3: Exile target permanent.$-14: Restart the game, leaving in exile all non-Aura permanent cards exiled with Karn Liberated. Then put those cards onto the battlefield under your control.|
Exclusion Ritual|New Phyrexia|10|U|{4}{W}{W}|Enchantment|||Imprint - When Exclusion Ritual enters the battlefield, exile target nonland permanent.$Players can't cast spells with the same name as the exiled card.|
-Volt Charge|New Phyrexia|100|C|{2}{R}|Instant|||Volt Charge deals 3 damage to target creature or player. Proliferate. (You choose any number of permanents and/or players with counters on them, then give each another counter of a kind already there.)|
+Volt Charge|New Phyrexia|100|C|{2}{R}|Instant|||Volt Charge deals 3 damage to any target. Proliferate. (You choose any number of permanents and/or players with counters on them, then give each another counter of a kind already there.)|
Vulshok Refugee|New Phyrexia|101|U|{1}{R}{R}|Creature - Human Warrior|3|2|Protection from red|
Whipflare|New Phyrexia|102|U|{1}{R}|Sorcery|||Whipflare deals 2 damage to each nonartifact creature.|
Beast Within|New Phyrexia|103|U|{2}{G}|Instant|||Destroy target permanent. Its controller puts a 3/3 green Beast creature token onto the battlefield.|
@@ -17388,13 +17388,13 @@ Triumph of the Hordes|New Phyrexia|123|U|{2}{G}{G}|Sorcery|||Until end of turn,
Viridian Betrayers|New Phyrexia|124|C|{1}{G}{G}|Creature - Elf Warrior|3|1|Viridian Betrayers has infect as long as an opponent is poisoned. (It deals damage to creatures in the form of -1/-1 counters and to players in the form of poison counters.)|
Viridian Harvest|New Phyrexia|125|C|{G}|Enchantment - Aura|||Enchant artifact$When enchanted artifact is put into a graveyard, you gain 6 life.|
Vital Splicer|New Phyrexia|126|U|{3}{G}|Creature - Human Artificer|1|1|When Vital Splicer enters the battlefield, put a 3/3 colorless Golem artifact creature token onto the battlefield.${1}: Regenerate target Golem you control.|
-Vorinclex, Voice of Hunger|New Phyrexia|127|M|{6}{G}{G}|Legendary Creature - Praetor|7|6|Trample$Whenever you tap a land for mana, add one mana to your mana pool of any type that land produced.$Whenever an opponent taps a land for mana, that land doesn't untap during its controller's next untap step.|
+Vorinclex, Voice of Hunger|New Phyrexia|127|M|{6}{G}{G}|Legendary Creature - Praetor|7|6|Trample$Whenever you tap a land for mana, add one mana of any type that land produced.$Whenever an opponent taps a land for mana, that land doesn't untap during its controller's next untap step.|
Jor Kadeen, the Prevailer|New Phyrexia|128|R|{3}{R}{W}|Legendary Creature - Human Warrior|5|4|First strike$Metalcraft - Creatures you control get +3/+0 as long as you control three or more artifacts.|
-Alloy Myr|New Phyrexia|129|U|{3}|Artifact Creature - Myr|2|2|{tap}: Add one mana of any color to your mana pool.|
+Alloy Myr|New Phyrexia|129|U|{3}|Artifact Creature - Myr|2|2|{tap}: Add one mana of any color.|
Lost Leonin|New Phyrexia|13|C|{1}{W}|Creature - Cat Soldier|2|1|Infect (This creature deals damage to creatures in the form of -1/-1 counters and to players in the form of poison counters.)|
Batterskull|New Phyrexia|130|M|{5}|Artifact - Equipment|||Living weapon (When this Equipment enters the battlefield, put a 0/0 black Germ creature token onto the battlefield, then attach this to it.)$Equipped creature gets +4/+4 and has vigilance and lifelink.${3}: Return Batterskull to its owner's hand.$Equip {5}|
Blinding Souleater|New Phyrexia|131|C|{3}|Artifact Creature - Cleric|1|3|{WP}, {tap}: Tap target creature. ({WP} can be paid with either {W} or 2 life.)|
-Caged Sun|New Phyrexia|132|R|{6}|Artifact|||As Caged Sun enters the battlefield, choose a color.$Creatures you control of the chosen color get +1/+1.$Whenever a land's ability adds one or more mana of the chosen color to your mana pool, add one additional mana of that color to your mana pool.|
+Caged Sun|New Phyrexia|132|R|{6}|Artifact|||As Caged Sun enters the battlefield, choose a color.$Creatures you control of the chosen color get +1/+1.$Whenever a land's ability adds one or more mana of the chosen color, add one additional mana of that color.|
Conversion Chamber|New Phyrexia|133|U|{3}|Artifact|||{2}, {tap}: Exile target artifact card from a graveyard. Put a charge counter on Conversion Chamber.${2}, {tap}, Remove a charge counter from Conversion Chamber: Put a 3/3 colorless Golem artifact creature token onto the battlefield.|
Darksteel Relic|New Phyrexia|134|U|{0}|Artifact|||Darksteel Relic is indestructible. (Effects that say "destroy" don't destroy it.)|
Etched Monstrosity|New Phyrexia|135|M|{5}|Artifact Creature - Golem|10|10|Etched Monstrosity enters the battlefield with five -1/-1 counters on it.${W}{U}{B}{R}{G}, Remove five -1/-1 counters from Etched Monstrosity: Target player draws three cards.|
@@ -17417,7 +17417,7 @@ Marrow Shards|New Phyrexia|15|U|{WP}|Instant|||({WP} can be paid with either
Phyrexian Hulk|New Phyrexia|150|C|{6}|Artifact Creature - Golem|5|4||
Pristine Talisman|New Phyrexia|151|C|{3}|Artifact|||{tap}: Add {C}. You gain 1 life.|
Shrine of Boundless Growth|New Phyrexia|152|U|{3}|Artifact|||At the beginning of your upkeep or whenever you cast a green spell, put a charge counter on Shrine of Boundless Growth.${tap}, Sacrifice Shrine of Boundless Growth: Add {C} for each charge counter on Shrine of Boundless Growth.|
-Shrine of Burning Rage|New Phyrexia|153|U|{2}|Artifact|||At the beginning of your upkeep or whenever you cast a red spell, put a charge counter on Shrine of Burning Rage.${3}, {tap}, Sacrifice Shrine of Burning Rage: Shrine of Burning Rage deals damage equal to the number of charge counters on it to target creature or player.|
+Shrine of Burning Rage|New Phyrexia|153|U|{2}|Artifact|||At the beginning of your upkeep or whenever you cast a red spell, put a charge counter on Shrine of Burning Rage.${3}, {tap}, Sacrifice Shrine of Burning Rage: Shrine of Burning Rage deals damage equal to the number of charge counters on it to any target.|
Shrine of Limitless Power|New Phyrexia|154|U|{3}|Artifact|||At the beginning of your upkeep or whenever you cast a black spell, put a charge counter on Shrine of Limitless Power.${4}, {tap}, Sacrifice Shrine of Limitless Power: Target player discards a card for each charge counter on Shrine of Limitless Power.|
Shrine of Loyal Legions|New Phyrexia|155|U|{2}|Artifact|||At the beginning of your upkeep or whenever you cast a white spell, put a charge counter on Shrine of Loyal Legions.${3}, {tap}, Sacrifice Shrine of Loyal Legions: Put a 1/1 colorless Myr artifact creature token onto the battlefield for each charge counter on Shrine of Loyal Legions.|
Shrine of Piercing Vision|New Phyrexia|156|U|{2}|Artifact|||At the beginning of your upkeep or whenever you cast a blue spell, put a charge counter on Shrine of Piercing Vision.${tap}, Sacrifice Shrine of Piercing Vision: Look at the top X cards of your library, where X is the number of charge counters on Shrine of Piercing Vision. Put one of those cards into your hand and the rest on the bottom of your library in any order.|
@@ -17509,21 +17509,21 @@ Toxic Nim|New Phyrexia|75|C|{4}{B}{B}|Creature - Zombie|4|1|Infect (This crea
Vault Skirge|New Phyrexia|76|C|{1}{BP}|Artifact Creature - Imp|1|1|({BP} can be paid with either {B} or 2 life.)$Flying$Lifelink (Damage dealt by this creature also causes you to gain that much life.)|
Whispering Specter|New Phyrexia|77|U|{1}{B}{B}|Creature - Specter|1|1|Flying$Infect (This creature deals damage to creatures in the form of -1/-1 counters and to players in the form of poison counters.)$Whenever Whispering Specter deals combat damage to a player, you may sacrifice it. If you do, that player discards a card for each poison counter he or she has.|
Act of Aggression|New Phyrexia|78|U|{3}{RP}{RP}|Instant|||({RP} can be paid with either {R} or 2 life.)$Gain control of target creature an opponent controls until end of turn. Untap that creature. It gains haste until end of turn.|
-Artillerize|New Phyrexia|79|C|{3}{R}|Instant|||As an additional cost to cast Artillerize, sacrifice an artifact or creature.$Artillerize deals 5 damage to target creature or player.|
+Artillerize|New Phyrexia|79|C|{3}{R}|Instant|||As an additional cost to cast Artillerize, sacrifice an artifact or creature.$Artillerize deals 5 damage to any target.|
Due Respect|New Phyrexia|8|U|{1}{W}|Instant|||Permanents enter the battlefield tapped this turn.$Draw a card.|
Bludgeon Brawl|New Phyrexia|80|R|{2}{R}|Enchantment|||Each noncreature, non-Equipment artifact is an Equipment with equip {X} and "Equipped creature gets +X/+0," where X is that artifact's converted mana cost.|
Chancellor of the Forge|New Phyrexia|81|R|{4}{R}{R}{R}|Creature - Giant|5|5|You may reveal this card from your opening hand. If you do, at the beginning of the first upkeep, put a 1/1 red Goblin creature token with haste onto the battlefield.$When Chancellor of the Forge enters the battlefield, put X 1/1 red Goblin creature tokens with haste onto the battlefield, where X is the number of creatures you control.|
-Fallen Ferromancer|New Phyrexia|82|U|{3}{R}|Creature - Human Shaman|1|1|Infect (This creature deals damage to creatures in the form of -1/-1 counters and to players in the form of poison counters.)${1}{R}, {tap}: Fallen Ferromancer deals 1 damage to target creature or player.|
+Fallen Ferromancer|New Phyrexia|82|U|{3}{R}|Creature - Human Shaman|1|1|Infect (This creature deals damage to creatures in the form of -1/-1 counters and to players in the form of poison counters.)${1}{R}, {tap}: Fallen Ferromancer deals 1 damage to any target.|
Flameborn Viron|New Phyrexia|83|C|{4}{R}{R}|Creature - Insect|6|4||
Furnace Scamp|New Phyrexia|84|C|{R}|Creature - Beast|1|1|Whenever Furnace Scamp deals combat damage to a player, you may sacrifice it. If you do, Furnace Scamp deals 3 damage to that player.|
Geosurge|New Phyrexia|85|U|{R}{R}{R}{R}|Sorcery|||Add {R}{R}{R}{R}{R}{R}{R}. Spend this mana only to cast artifact or creature spells.|
-Gut Shot|New Phyrexia|86|U|{RP}|Instant|||({RP} can be paid with either {R} or 2 life.)$Gut Shot deals 1 damage to target creature or player.|
+Gut Shot|New Phyrexia|86|U|{RP}|Instant|||({RP} can be paid with either {R} or 2 life.)$Gut Shot deals 1 damage to any target.|
Invader Parasite|New Phyrexia|87|R|{3}{R}{R}|Creature - Insect|3|2|Imprint - When Invader Parasite enters the battlefield, exile target land.$Whenever a land with the same name as the exiled card enters the battlefield under an opponent's control, Invader Parasite deals 2 damage to that player.|
Moltensteel Dragon|New Phyrexia|88|R|{4}{RP}{RP}|Artifact Creature - Dragon|4|4|({RP} can be paid with either {R} or 2 life.)$Flying${RP}: Moltensteel Dragon gets +1/+0 until end of turn.|
Ogre Menial|New Phyrexia|89|C|{3}{R}|Creature - Ogre|0|4|Infect (This creature deals damage to creatures in the form of -1/-1 counters and to players in the form of poison counters.)${R}: Ogre Menial gets +1/+0 until end of turn.|
Elesh Norn, Grand Cenobite|New Phyrexia|9|M|{5}{W}{W}|Legendary Creature - Praetor|4|7|Vigilance$Other creatures you control get +2/+2.$Creatures your opponents control get -2/-2.|
Priest of Urabrask|New Phyrexia|90|U|{2}{R}|Creature - Human Cleric|2|1|When Priest of Urabrask enters the battlefield, add {R}{R}{R}.|
-Rage Extractor|New Phyrexia|91|U|{4}{RP}|Artifact|||({RP} can be paid with either {R} or 2 life.)$Whenever you cast a spell with {p} in its mana cost, Rage Extractor deals damage equal to that spell's converted mana cost to target creature or player.|
+Rage Extractor|New Phyrexia|91|U|{4}{RP}|Artifact|||({RP} can be paid with either {R} or 2 life.)$Whenever you cast a spell with {p} in its mana cost, Rage Extractor deals damage equal to that spell's converted mana cost to any target.|
Razor Swine|New Phyrexia|92|C|{2}{R}|Creature - Boar|2|1|First strike$Infect (This creature deals damage to creatures in the form of -1/-1 counters and to players in the form of poison counters.)|
Ruthless Invasion|New Phyrexia|93|C|{3}{RP}|Sorcery|||({RP} can be paid with either {R} or 2 life.)$Nonartifact creatures can't block this turn.|
Scrapyard Salvo|New Phyrexia|94|C|{1}{R}{R}|Sorcery|||Scrapyard Salvo deals damage to target player equal to the number of artifact cards in your graveyard.|
@@ -17556,7 +17556,7 @@ Blackmail|Ninth Edition|115|U|{B}|Sorcery|||Target player reveals three cards fr
Bog Imp|Ninth Edition|116|C|{1}{B}|Creature - Imp|1|1|Flying (This creature can't be blocked except by creatures with flying or reach.)|
Bog Wraith|Ninth Edition|117|U|{3}{B}|Creature - Wraith|3|3|Swampwalk (This creature is unblockable as long as defending player controls a Swamp.)|
Coercion|Ninth Edition|118|C|{2}{B}|Sorcery|||Target opponent reveals his or her hand. You choose a card from it. That player discards that card.|
-Consume Spirit|Ninth Edition|119|U|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Consume Spirit deals X damage to target creature or player and you gain X life.|
+Consume Spirit|Ninth Edition|119|U|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Consume Spirit deals X damage to any target and you gain X life.|
Crossbow Infantry|Ninth Edition|12|C|{1}{W}|Creature - Human Soldier Archer|1|1|{tap}: Crossbow Infantry deals 1 damage to target attacking or blocking creature.|
Contaminated Bond|Ninth Edition|120|C|{1}{B}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Whenever enchanted creature attacks or blocks, its controller loses 3 life.|
Cruel Edict|Ninth Edition|121|U|{1}{B}|Sorcery|||Target opponent sacrifices a creature.|
@@ -17615,10 +17615,10 @@ Will-o'-the-Wisp|Ninth Edition|169|R|{B}|Creature - Spirit|0|1|Flying (This c
Glory Seeker|Ninth Edition|17|C|{1}{W}|Creature - Human Soldier|2|2||
Yawgmoth Demon|Ninth Edition|170|R|{4}{B}{B}|Creature - Demon|6|6|Flying (This creature can't be blocked except by creatures with flying or reach.)$First strike (This creature deals combat damage before creatures without first strike.)$At the beginning of your upkeep, you may sacrifice an artifact. If you don't, tap Yawgmoth Demon and it deals 2 damage to you.|
Zombify|Ninth Edition|171|U|{3}{B}|Sorcery|||Return target creature card from your graveyard to the battlefield.|
-Anaba Shaman|Ninth Edition|172|C|{3}{R}|Creature - Minotaur Shaman|2|2|{R}, {tap}: Anaba Shaman deals 1 damage to target creature or player.|
+Anaba Shaman|Ninth Edition|172|C|{3}{R}|Creature - Minotaur Shaman|2|2|{R}, {tap}: Anaba Shaman deals 1 damage to any target.|
Anarchist|Ninth Edition|173|U|{4}{R}|Creature - Human Wizard|2|2|When Anarchist enters the battlefield, you may return target sorcery card from your graveyard to your hand.|
Balduvian Barbarians|Ninth Edition|174|C|{1}{R}{R}|Creature - Human Barbarian|3|2||
-Blaze|Ninth Edition|175|U|{X}{R}|Sorcery|||Blaze deals X damage to target creature or player.|
+Blaze|Ninth Edition|175|U|{X}{R}|Sorcery|||Blaze deals X damage to any target.|
Blood Moon|Ninth Edition|176|R|{2}{R}|Enchantment|||Nonbasic lands are Mountains.|
Bloodfire Colossus|Ninth Edition|177|R|{6}{R}{R}|Creature - Giant|6|6|{R}, Sacrifice Bloodfire Colossus: Bloodfire Colossus deals 6 damage to each creature and each player.|
Boiling Seas|Ninth Edition|178|U|{3}{R}|Sorcery|||Destroy all Islands.|
@@ -17631,7 +17631,7 @@ Flashfires|Ninth Edition|183|U|{3}{R}|Sorcery|||Destroy all Plains.|
Flowstone Crusher|Ninth Edition|184|U|{3}{R}{R}|Creature - Beast|4|4|{R}: Flowstone Crusher gets +1/-1 until end of turn.|
Flowstone Shambler|Ninth Edition|185|C|{2}{R}|Creature - Beast|2|2|{R}: Flowstone Shambler gets +1/-1 until end of turn.|
Flowstone Slide|Ninth Edition|186|R|{X}{2}{R}{R}|Sorcery|||All creatures get +X/-X until end of turn.|
-Form of the Dragon|Ninth Edition|187|R|{4}{R}{R}{R}|Enchantment|||At the beginning of your upkeep, Form of the Dragon deals 5 damage to target creature or player.$At the beginning of each end step, your life total becomes 5.$Creatures without flying can't attack you.|
+Form of the Dragon|Ninth Edition|187|R|{4}{R}{R}{R}|Enchantment|||At the beginning of your upkeep, Form of the Dragon deals 5 damage to any target.$At the beginning of each end step, your life total becomes 5.$Creatures without flying can't attack you.|
Furnace of Rath|Ninth Edition|188|R|{1}{R}{R}{R}|Enchantment|||If a source would deal damage to a creature or player, it deals double that damage to that creature or player instead.|
Goblin Balloon Brigade|Ninth Edition|189|U|{R}|Creature - Goblin Warrior|1|1|{R}: Goblin Balloon Brigade gains flying until end of turn.|
Holy Strength|Ninth Edition|19|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+2.|
@@ -17641,7 +17641,7 @@ Goblin King|Ninth Edition|192|R|{1}{R}{R}|Creature - Goblin|2|2|Other Goblin cre
Goblin Mountaineer|Ninth Edition|193|C|{R}|Creature - Goblin Scout|1|1|Mountainwalk|
Goblin Piker|Ninth Edition|194|C|{1}{R}|Creature - Goblin Warrior|2|1||
Goblin Sky Raider|Ninth Edition|195|C|{2}{R}|Creature - Goblin Warrior|1|2|Flying (This creature can't be blocked except by creatures with flying or reach.)|
-Guerrilla Tactics|Ninth Edition|196|U|{1}{R}|Instant|||Guerrilla Tactics deals 2 damage to target creature or player.$When a spell or ability an opponent controls causes you to discard Guerrilla Tactics, Guerrilla Tactics deals 4 damage to target creature or player.|
+Guerrilla Tactics|Ninth Edition|196|U|{1}{R}|Instant|||Guerrilla Tactics deals 2 damage to any target.$When a spell or ability an opponent controls causes you to discard Guerrilla Tactics, Guerrilla Tactics deals 4 damage to any target.|
Hill Giant|Ninth Edition|197|C|{3}{R}|Creature - Giant|3|3||
Karplusan Yeti|Ninth Edition|198|R|{3}{R}{R}|Creature - Yeti|3|3|{tap}: Karplusan Yeti deals damage equal to its power to target creature. That creature deals damage equal to its power to Karplusan Yeti.|
Kird Ape|Ninth Edition|199|U|{R}|Creature - Ape|1|1|Kird Ape gets +1/+2 as long as you control a Forest.|
@@ -17654,7 +17654,7 @@ Magnivore|Ninth Edition|202|R|{2}{R}{R}|Creature - Lhurgoyf|*|*|Haste (This c
Mana Clash|Ninth Edition|203|R|{R}|Sorcery|||You and target opponent each flip a coin. Mana Clash deals 1 damage to each player whose coin comes up tails. Repeat this process until both players' coins come up heads on the same flip.|
Mogg Sentry|Ninth Edition|204|R|{R}|Creature - Goblin Warrior|1|1|Whenever an opponent casts a spell, Mogg Sentry gets +2/+2 until end of turn.|
Ogre Taskmaster|Ninth Edition|205|U|{3}{R}|Creature - Ogre|4|3|Ogre Taskmaster can't block.|
-Orcish Artillery|Ninth Edition|206|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Artillery deals 2 damage to target creature or player and 3 damage to you.|
+Orcish Artillery|Ninth Edition|206|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Artillery deals 2 damage to any target and 3 damage to you.|
Panic Attack|Ninth Edition|207|C|{2}{R}|Sorcery|||Up to three target creatures can't block this turn.|
Pyroclasm|Ninth Edition|208|U|{1}{R}|Sorcery|||Pyroclasm deals 2 damage to each creature.|
Raging Goblin|Ninth Edition|209|C|{R}|Creature - Goblin Berserker|1|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)|
@@ -17670,13 +17670,13 @@ Shard Phoenix|Ninth Edition|217|R|{4}{R}|Creature - Phoenix|2|2|Flying (This
Shatter|Ninth Edition|218|C|{1}{R}|Instant|||Destroy target artifact.|
Shivan Dragon|Ninth Edition|219|R|{4}{R}{R}|Creature - Dragon|5|5|Flying${R}: Shivan Dragon gets +1/+0 until end of turn.|
Inspirit|Ninth Edition|22|U|{2}{W}|Instant|||Untap target creature. It gets +2/+4 until end of turn.|
-Shock|Ninth Edition|220|C|{R}|Instant|||Shock deals 2 damage to target creature or player.|
+Shock|Ninth Edition|220|C|{R}|Instant|||Shock deals 2 damage to any target.|
Stone Rain|Ninth Edition|221|C|{2}{R}|Sorcery|||Destroy target land.|
Sudden Impact|Ninth Edition|222|U|{3}{R}|Instant|||Sudden Impact deals damage to target player equal to the number of cards in that player's hand.|
Threaten|Ninth Edition|223|U|{2}{R}|Sorcery|||Untap target creature and gain control of it until end of turn. That creature gains haste until end of turn. (It can attack and {tap} this turn.)|
Thundermare|Ninth Edition|224|R|{5}{R}|Creature - Elemental Horse|5|5|Haste (This creature can attack the turn it comes under your control.)$When Thundermare enters the battlefield, tap all other creatures.|
Viashino Sandstalker|Ninth Edition|225|U|{1}{R}{R}|Creature - Viashino Warrior|4|2|Haste (This creature can attack the turn it comes under your control.)$At the beginning of the end step, return Viashino Sandstalker to its owner's hand. (Return it only if it's on the battlefield.)|
-Volcanic Hammer|Ninth Edition|226|C|{1}{R}|Sorcery|||Volcanic Hammer deals 3 damage to target creature or player.|
+Volcanic Hammer|Ninth Edition|226|C|{1}{R}|Sorcery|||Volcanic Hammer deals 3 damage to any target.|
Whip Sergeant|Ninth Edition|227|U|{2}{R}|Creature - Human Soldier|2|1|{R}: Target creature gains haste until end of turn. (It can attack this turn.)|
Wildfire|Ninth Edition|228|R|{4}{R}{R}|Sorcery|||Each player sacrifices four lands. Wildfire deals 4 damage to each creature.|
Anaconda|Ninth Edition|229|U|{3}{G}|Creature - Snake|3|3|Swampwalk (This creature is unblockable as long as defending player controls a Swamp.)|
@@ -17732,21 +17732,21 @@ Summer Bloom|Ninth Edition|273|U|{1}{G}|Sorcery|||You may play up to three addit
Trained Armodon|Ninth Edition|274|C|{1}{G}{G}|Creature - Elephant|3|3||
Tree Monkey|Ninth Edition|275|C|{G}|Creature - Ape|1|1|Reach (This creature can block creatures with flying.)|
Treetop Bracers|Ninth Edition|276|C|{1}{G}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Enchanted creature gets +1/+1 and can't be blocked except by creatures with flying.|
-Utopia Tree|Ninth Edition|277|R|{1}{G}|Creature - Plant|0|2|{tap}: Add one mana of any color to your mana pool.|
+Utopia Tree|Ninth Edition|277|R|{1}{G}|Creature - Plant|0|2|{tap}: Add one mana of any color.|
Verdant Force|Ninth Edition|278|R|{5}{G}{G}{G}|Creature - Elemental|7|7|At the beginning of each upkeep, put a 1/1 green Saproling creature token onto the battlefield.|
Verduran Enchantress|Ninth Edition|279|R|{1}{G}{G}|Creature - Human Druid|0|2|Whenever you cast an enchantment spell, you may draw a card.|
-Master Healer|Ninth Edition|28|R|{4}{W}|Creature - Human Cleric|1|4|{tap}: Prevent the next 4 damage that would be dealt to target creature or player this turn.|
+Master Healer|Ninth Edition|28|R|{4}{W}|Creature - Human Cleric|1|4|{tap}: Prevent the next 4 damage that would be dealt to any target this turn.|
Viridian Shaman|Ninth Edition|280|U|{2}{G}|Creature - Elf Shaman|2|2|When Viridian Shaman enters the battlefield, destroy target artifact.|
Web|Ninth Edition|281|U|{G}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Enchanted creature gets +0/+2 and has reach. (It can block creatures with flying.)|
Weird Harvest|Ninth Edition|282|R|{X}{G}{G}|Sorcery|||Each player may search his or her library for up to X creature cards, reveal those cards, and put them into his or her hand. Then each player who searched his or her library this way shuffles it.|
Wood Elves|Ninth Edition|283|C|{2}{G}|Creature - Elf Scout|1|1|When Wood Elves enters the battlefield, search your library for a Forest card and put that card onto the battlefield. Then shuffle your library.|
Yavimaya Enchantress|Ninth Edition|284|U|{2}{G}|Creature - Human Druid|2|2|Yavimaya Enchantress gets +1/+1 for each enchantment on the battlefield.|
Zodiac Monkey|Ninth Edition|285|C|{1}{G}|Creature - Ape|2|1|Forestwalk (This creature is unblockable as long as defending player controls a Forest.)|
-Aladdin's Ring|Ninth Edition|286|R|{8}|Artifact|||{8}, {tap}: Aladdin's Ring deals 4 damage to target creature or player.|
+Aladdin's Ring|Ninth Edition|286|R|{8}|Artifact|||{8}, {tap}: Aladdin's Ring deals 4 damage to any target.|
Angel's Feather|Ninth Edition|287|U|{2}|Artifact|||Whenever a player casts a white spell, you may gain 1 life.|
Beast of Burden|Ninth Edition|288|R|{6}|Artifact Creature - Golem|*|*|Beast of Burden's power and toughness are each equal to the number of creatures on the battlefield.|
Booby Trap|Ninth Edition|289|R|{6}|Artifact|||As Booby Trap enters the battlefield, name a card other than a basic land card and choose an opponent.$The chosen player reveals each card he or she draws.$When the chosen player draws the named card, sacrifice Booby Trap. If you do, Booby Trap deals 10 damage to that player.|
-Mending Hands|Ninth Edition|29|C|{W}|Instant|||Prevent the next 4 damage that would be dealt to target creature or player this turn.|
+Mending Hands|Ninth Edition|29|C|{W}|Instant|||Prevent the next 4 damage that would be dealt to any target this turn.|
Bottle Gnomes|Ninth Edition|290|U|{3}|Artifact Creature - Gnome|1|3|Sacrifice Bottle Gnomes: You gain 3 life.|
Coat of Arms|Ninth Edition|291|R|{5}|Artifact|||Each creature gets +1/+1 for each other creature on the battlefield that shares at least one creature type with it. (For example, if two Goblin Warriors and a Goblin Shaman are on the battlefield, each gets +2/+2.)|
Dancing Scimitar|Ninth Edition|292|U|{4}|Artifact Creature - Spirit|1|5|Flying (This creature can't be blocked except by creatures with flying or reach.)|
@@ -17754,7 +17754,7 @@ Defense Grid|Ninth Edition|293|R|{2}|Artifact|||Each spell costs {3} more to cas
Demon's Horn|Ninth Edition|294|U|{2}|Artifact|||Whenever a player casts a black spell, you may gain 1 life.|
Disrupting Scepter|Ninth Edition|295|R|{3}|Artifact|||{3}, {tap}: Target player discards a card. Activate this ability only during your turn.|
Dragon's Claw|Ninth Edition|296|U|{2}|Artifact|||Whenever a player casts a red spell, you may gain 1 life.|
-Fellwar Stone|Ninth Edition|297|U|{2}|Artifact|||{tap}: Add to your mana pool one mana of any color that a land an opponent controls could produce.|
+Fellwar Stone|Ninth Edition|297|U|{2}|Artifact|||{tap}: Add one mana of any color that a land an opponent controls could produce.|
Howling Mine|Ninth Edition|298|R|{2}|Artifact|||At the beginning of each player's draw step, if Howling Mine is untapped, that player draws an additional card.|
Icy Manipulator|Ninth Edition|299|U|{4}|Artifact|||{1}, {tap}: Tap target artifact, creature, or land.|
Coral Eel|Ninth Edition|3|C|{1}{U}|Creature - Fish|2|1||
@@ -17767,7 +17767,7 @@ Loxodon Warhammer|Ninth Edition|303|R|{3}|Artifact - Equipment|||Equipped creatu
Millstone|Ninth Edition|304|R|{2}|Artifact|||{2}, {tap}: Target player puts the top two cards of his or her library into his or her graveyard.|
Ornithopter|Ninth Edition|305|U|{0}|Artifact Creature - Thopter|0|2|Flying|
Phyrexian Hulk|Ninth Edition|306|U|{6}|Artifact Creature - Golem|5|4||
-Rod of Ruin|Ninth Edition|307|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to target creature or player.|
+Rod of Ruin|Ninth Edition|307|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to any target.|
Slate of Ancestry|Ninth Edition|308|R|{4}|Artifact|||{4}, {tap}, Discard your hand: Draw a card for each creature you control.|
Spellbook|Ninth Edition|309|U|{0}|Artifact|||You have no maximum hand size.|
Pacifism|Ninth Edition|31|C|{1}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature can't attack or block.|
@@ -17819,10 +17819,10 @@ Forest|Ninth Edition|350|L||Basic Land - Forest|||G|
Righteousness|Ninth Edition|36|R|{W}|Instant|||Target blocking creature gets +7/+7 until end of turn.|
Sacred Ground|Ninth Edition|37|R|{1}{W}|Enchantment|||Whenever a spell or ability an opponent controls causes a land to be put into your graveyard from the battlefield, return that card to the battlefield.|
Sacred Nectar|Ninth Edition|38|C|{1}{W}|Sorcery|||You gain 4 life.|
-Samite Healer|Ninth Edition|39|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Samite Healer|Ninth Edition|39|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.|
Aven Flock|Ninth Edition|4|C|{4}{W}|Creature - Bird Soldier|2|3|Flying (This creature can't be blocked except by creatures with flying or reach.)${W}: Aven Flock gets +0/+1 until end of turn.|
Giant Octopus|Ninth Edition|4|C|{3}{U}|Creature - Octopus|3|3||
-Sanctum Guardian|Ninth Edition|40|U|{1}{W}{W}|Creature - Human Cleric|1|4|Sacrifice Sanctum Guardian: The next time a source of your choice would deal damage to target creature or player this turn, prevent that damage.|
+Sanctum Guardian|Ninth Edition|40|U|{1}{W}{W}|Creature - Human Cleric|1|4|Sacrifice Sanctum Guardian: The next time a source of your choice would deal damage to any target this turn, prevent that damage.|
Savannah Lions|Ninth Edition|41|R|{W}|Creature - Cat|2|1||
Seasoned Marshal|Ninth Edition|42|U|{2}{W}{W}|Creature - Human Soldier|2|2|Whenever Seasoned Marshal attacks, you may tap target creature.|
Serra Angel|Ninth Edition|43|R|{3}{W}{W}|Creature - Angel|4|4|Flying$Vigilance (Attacking doesn't cause this creature to tap.)|
@@ -17948,7 +17948,7 @@ Malevolent Awakening|Odyssey|147|U|{1}{B}{B}|Enchantment|||{1}{B}{B}, Sacrifice
Mind Burst|Odyssey|148|C|{1}{B}|Sorcery|||Target player discards X cards, where X is one plus the number of cards named Mind Burst in all graveyards.|
Mindslicer|Odyssey|149|R|{2}{B}{B}|Creature - Horror|4|3|When Mindslicer dies, each player discards his or her hand.|
Confessor|Odyssey|15|C|{W}|Creature - Human Cleric|1|1|Whenever a player discards a card, you may gain 1 life.|
-Morbid Hunger|Odyssey|150|C|{4}{B}{B}|Sorcery|||Morbid Hunger deals 3 damage to target creature or player. You gain 3 life.$Flashback {7}{B}{B} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
+Morbid Hunger|Odyssey|150|C|{4}{B}{B}|Sorcery|||Morbid Hunger deals 3 damage to any target. You gain 3 life.$Flashback {7}{B}{B} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Morgue Theft|Odyssey|151|C|{1}{B}|Sorcery|||Return target creature card from your graveyard to your hand.$Flashback {4}{B} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Mortivore|Odyssey|152|R|{2}{B}{B}|Creature - Lhurgoyf|*|*|Mortivore's power and toughness are each equal to the number of creature cards in all graveyards.${B}: Regenerate Mortivore.|
Nefarious Lich|Odyssey|153|R|{B}{B}{B}{B}|Enchantment|||If damage would be dealt to you, exile that many cards from your graveyard instead. If you can't, you lose the game.$If you would gain life, draw that many cards instead.$When Nefarious Lich leaves the battlefield, you lose the game.|
@@ -17982,7 +17982,7 @@ Blazing Salvo|Odyssey|178|C|{R}|Instant|||Blazing Salvo deals 3 damage to target
Bomb Squad|Odyssey|179|R|{3}{R}|Creature - Dwarf|1|1|{tap}: Put a fuse counter on target creature.$At the beginning of your upkeep, put a fuse counter on each creature with a fuse counter on it.$Whenever a creature has four or more fuse counters on it, remove all fuse counters from it and destroy it. That creature deals 4 damage to its controller.|
Devoted Caretaker|Odyssey|18|R|{W}|Creature - Human Cleric|1|2|{W}, {tap}: Target permanent you control gains protection from instant spells and from sorcery spells until end of turn.|
Burning Sands|Odyssey|180|R|{3}{R}{R}|Enchantment|||Whenever a creature dies, that creature's controller sacrifices a land.|
-Chainflinger|Odyssey|181|C|{3}{R}|Creature - Beast|2|2|{1}{R}, {tap}: Chainflinger deals 1 damage to target creature or player.$Threshold - {2}{R}, {tap}: Chainflinger deals 2 damage to target creature or player. Activate this ability only if seven or more cards are in your graveyard.|
+Chainflinger|Odyssey|181|C|{3}{R}|Creature - Beast|2|2|{1}{R}, {tap}: Chainflinger deals 1 damage to any target.$Threshold - {2}{R}, {tap}: Chainflinger deals 2 damage to any target. Activate this ability only if seven or more cards are in your graveyard.|
Chance Encounter|Odyssey|182|R|{2}{R}{R}|Enchantment|||Whenever you win a coin flip, put a luck counter on Chance Encounter.$$At the beginning of your upkeep, if Chance Encounter has ten or more luck counters on it, you win the game.|
Demolish|Odyssey|183|U|{3}{R}|Sorcery|||Destroy target artifact or land.|
Demoralize|Odyssey|184|C|{2}{R}|Instant|||Each creature can't be blocked this turn except by two or more creatures.$Threshold - If seven or more cards are in your graveyard, creatures can't block this turn.|
@@ -17995,12 +17995,12 @@ Divine Sacrament|Odyssey|19|R|{1}{W}{W}|Enchantment|||White creatures get +1/+1.
Ember Beast|Odyssey|190|C|{2}{R}|Creature - Beast|3|4|Ember Beast can't attack or block alone.|
Engulfing Flames|Odyssey|191|U|{R}|Instant|||Engulfing Flames deals 1 damage to target creature. It can't be regenerated this turn.$Flashback {3}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Epicenter|Odyssey|192|R|{4}{R}|Sorcery|||Target player sacrifices a land.$Threshold - Each player sacrifices all lands he or she controls instead if seven or more cards are in your graveyard.|
-Firebolt|Odyssey|193|C|{R}|Sorcery|||Firebolt deals 2 damage to target creature or player.$Flashback {4}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
-Flame Burst|Odyssey|194|C|{1}{R}|Instant|||Flame Burst deals X damage to target creature or player, where X is 2 plus the number of cards named Flame Burst in all graveyards.|
+Firebolt|Odyssey|193|C|{R}|Sorcery|||Firebolt deals 2 damage to any target.$Flashback {4}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
+Flame Burst|Odyssey|194|C|{1}{R}|Instant|||Flame Burst deals X damage to any target, where X is 2 plus the number of cards named Flame Burst in all graveyards.|
Frenetic Ogre|Odyssey|195|U|{4}{R}|Creature - Ogre|2|3|{R}, Discard a card at random: Frenetic Ogre gets +3/+0 until end of turn.|
Halberdier|Odyssey|196|C|{3}{R}|Creature - Human Barbarian|3|1|First strike|
Impulsive Maneuvers|Odyssey|197|R|{2}{R}{R}|Enchantment|||Whenever a creature attacks, flip a coin. If you win the flip, the next time that creature would deal combat damage this turn, it deals double that damage instead. If you lose the flip, the next time that creature would deal combat damage this turn, prevent that damage.|
-Kamahl, Pit Fighter|Odyssey|198|R|{4}{R}{R}|Legendary Creature - Human Barbarian|6|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)${tap}: Kamahl, Pit Fighter deals 3 damage to target creature or player.|
+Kamahl, Pit Fighter|Odyssey|198|R|{4}{R}{R}|Legendary Creature - Human Barbarian|6|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)${tap}: Kamahl, Pit Fighter deals 3 damage to any target.|
Kamahl's Desire|Odyssey|199|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has first strike.$Threshold - Enchanted creature gets +3/+0 as long as seven or more cards are in your graveyard.|
Ancestral Tribute|Odyssey|2|R|{5}{W}{W}|Sorcery|||You gain 2 life for each card in your graveyard.$Flashback {9}{W}{W}{W} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Dogged Hunter|Odyssey|20|R|{2}{W}|Creature - Human Nomad|1|1|{tap}: Destroy target creature token.|
@@ -18058,7 +18058,7 @@ Krosan Archer|Odyssey|246|C|{3}{G}|Creature - Centaur Archer|2|3|Reach (This
Krosan Avenger|Odyssey|247|C|{2}{G}|Creature - Human Druid|3|1|Trample$Threshold - {1}{G}: Regenerate Krosan Avenger. Activate this ability only if seven or more cards are in your graveyard.|
Krosan Beast|Odyssey|248|R|{3}{G}|Creature - Squirrel Beast|1|1|Threshold - Krosan Beast gets +7/+7 as long as seven or more cards are in your graveyard.|
Leaf Dancer|Odyssey|249|C|{1}{G}{G}|Creature - Centaur|2|2|Forestwalk|
-Hallowed Healer|Odyssey|25|C|{2}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 2 damage that would be dealt to target creature or player this turn.$Threshold - {tap}: Prevent the next 4 damage that would be dealt to target creature or player this turn. Activate this ability only if seven or more cards are in your graveyard.|
+Hallowed Healer|Odyssey|25|C|{2}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 2 damage that would be dealt to any target this turn.$Threshold - {tap}: Prevent the next 4 damage that would be dealt to any target this turn. Activate this ability only if seven or more cards are in your graveyard.|
Metamorphic Wurm|Odyssey|250|U|{3}{G}{G}|Creature - Elephant Wurm|3|3|Threshold - Metamorphic Wurm gets +4/+4 as long as seven or more cards are in your graveyard.|
Moment's Peace|Odyssey|251|C|{1}{G}|Instant|||Prevent all combat damage that would be dealt this turn.$Flashback {2}{G} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Muscle Burst|Odyssey|252|C|{1}{G}|Instant|||Target creature gets +X/+X until end of turn, where X is 3 plus the number of cards named Muscle Burst in all graveyards.|
@@ -18111,7 +18111,7 @@ Shadowmage Infiltrator|Odyssey|294|R|{1}{U}{B}|Creature - Human Wizard|1|3|Fear
Thaumatog|Odyssey|295|U|{1}{G}{W}|Creature - Atog|1|2|Sacrifice a land: Thaumatog gets +1/+1 until end of turn.$Sacrifice an enchantment: Thaumatog gets +1/+1 until end of turn.|
Vampiric Dragon|Odyssey|296|R|{6}{B}{R}|Creature - Vampire Dragon|5|5|Flying$Whenever a creature dealt damage by Vampiric Dragon this turn dies, put a +1/+1 counter on Vampiric Dragon.${1}{R}: Vampiric Dragon deals 1 damage to target creature.|
Catalyst Stone|Odyssey|297|R|{2}|Artifact|||Flashback costs you pay cost up to {2} less.$Flashback costs your opponents pay cost {2} more.|
-Charmed Pendant|Odyssey|298|R|{4}|Artifact|||{tap}, Put the top card of your library into your graveyard: For each colored mana symbol in that card's mana cost, add one mana of that color to your mana pool. Activate this ability only any time you could cast an instant. (For example, if the card's mana cost is {3}{U}{U}{B}, you add {U}{U}{B}.)|
+Charmed Pendant|Odyssey|298|R|{4}|Artifact|||{tap}, Put the top card of your library into your graveyard: For each colored mana symbol in that card's mana cost, add one mana of that color. Activate this ability only any time you could cast an instant. (For example, if the card's mana cost is {3}{U}{U}{B}, you add {U}{U}{B}.)|
Darkwater Egg|Odyssey|299|U|{1}|Artifact|||{2}, {tap}, Sacrifice Darkwater Egg: Add {U}{B}. Draw a card.|
Angelic Wall|Odyssey|3|C|{1}{W}|Creature - Wall|0|4|Defender, flying|
Life Burst|Odyssey|30|C|{1}{W}|Instant|||Target player gains 4 life, then gains 4 life for each card named Life Burst in each graveyard.|
@@ -18128,27 +18128,27 @@ Skycloud Egg|Odyssey|309|U|{1}|Artifact|||{2}, {tap}, Sacrifice Skycloud Egg: Ad
Luminous Guardian|Odyssey|31|U|{3}{W}|Creature - Human Nomad|1|4|{W}: Luminous Guardian gets +0/+1 until end of turn.${2}: Luminous Guardian can block an additional creature this turn.|
Steamclaw|Odyssey|310|U|{2}|Artifact|||{3}, {tap}: Exile target card from a graveyard.${1}, Sacrifice Steamclaw: Exile target card from a graveyard.|
Sungrass Egg|Odyssey|311|U|{1}|Artifact|||{2}, {tap}, Sacrifice Sungrass Egg: Add {G}{W}. Draw a card.|
-Abandoned Outpost|Odyssey|312|C||Land|||Abandoned Outpost enters the battlefield tapped.${tap}: Add {W}.${tap}, Sacrifice Abandoned Outpost: Add one mana of any color to your mana pool.|
-Barbarian Ring|Odyssey|313|U||Land|||{tap}: Add {R}. Barbarian Ring deals 1 damage to you.$Threshold - {R}, {tap}, Sacrifice Barbarian Ring: Barbarian Ring deals 2 damage to target creature or player. Activate this ability only if seven or more cards are in your graveyard.|
-Bog Wreckage|Odyssey|314|C||Land|||Bog Wreckage enters the battlefield tapped.${tap}: Add {B}.${tap}, Sacrifice Bog Wreckage: Add one mana of any color to your mana pool.|
+Abandoned Outpost|Odyssey|312|C||Land|||Abandoned Outpost enters the battlefield tapped.${tap}: Add {W}.${tap}, Sacrifice Abandoned Outpost: Add one mana of any color.|
+Barbarian Ring|Odyssey|313|U||Land|||{tap}: Add {R}. Barbarian Ring deals 1 damage to you.$Threshold - {R}, {tap}, Sacrifice Barbarian Ring: Barbarian Ring deals 2 damage to any target. Activate this ability only if seven or more cards are in your graveyard.|
+Bog Wreckage|Odyssey|314|C||Land|||Bog Wreckage enters the battlefield tapped.${tap}: Add {B}.${tap}, Sacrifice Bog Wreckage: Add one mana of any color.|
Cabal Pit|Odyssey|315|U||Land|||{tap}: Add {B}. Cabal Pit deals 1 damage to you.$Threshold - {B}, {tap}, Sacrifice Cabal Pit: Target creature gets -2/-2 until end of turn. Activate this ability only if seven or more cards are in your graveyard.|
Centaur Garden|Odyssey|316|U||Land|||{tap}: Add {G}. Centaur Garden deals 1 damage to you.$Threshold - {G}, {tap}, Sacrifice Centaur Garden: Target creature gets +3/+3 until end of turn. Activate this ability only if seven or more cards are in your graveyard.|
Cephalid Coliseum|Odyssey|317|U||Land|||{tap}: Add {U}. Cephalid Coliseum deals 1 damage to you.$Threshold - {U}, {tap}, Sacrifice Cephalid Coliseum: Target player draws three cards, then discards three cards. Activate this ability only if seven or more cards are in your graveyard.|
Crystal Quarry|Odyssey|318|R||Land|||{tap}: Add {C}.$${5}, {tap}: Add {W}{U}{B}{R}{G}.|
Darkwater Catacombs|Odyssey|319|R||Land|||{1}, {tap}: Add {U}{B}.|
-Master Apothecary|Odyssey|32|R|{W}{W}{W}|Creature - Human Cleric|2|2|Tap an untapped Cleric you control: Prevent the next 2 damage that would be dealt to target creature or player this turn.|
+Master Apothecary|Odyssey|32|R|{W}{W}{W}|Creature - Human Cleric|2|2|Tap an untapped Cleric you control: Prevent the next 2 damage that would be dealt to any target this turn.|
Deserted Temple|Odyssey|320|R||Land|||{tap}: Add {C}.$${1}, {tap}: Untap target land.|
Mossfire Valley|Odyssey|321|R||Land|||{1}, {tap}: Add {R}{G}.|
Nomad Stadium|Odyssey|322|U||Land|||{tap}: Add {W}. Nomad Stadium deals 1 damage to you.$Threshold - {W}, {tap}, Sacrifice Nomad Stadium: You gain 4 life. Activate this ability only if seven or more cards are in your graveyard.|
Petrified Field|Odyssey|323|R||Land|||{tap}: Add {C}.$${tap}, Sacrifice Petrified Field: Return target land card from your graveyard to your hand.|
-Ravaged Highlands|Odyssey|324|C||Land|||Ravaged Highlands enters the battlefield tapped.${tap}: Add {R}.${tap}, Sacrifice Ravaged Highlands: Add one mana of any color to your mana pool.|
-Seafloor Debris|Odyssey|325|C||Land|||Seafloor Debris enters the battlefield tapped.${tap}: Add {U}.${tap}, Sacrifice Seafloor Debris: Add one mana of any color to your mana pool.|
+Ravaged Highlands|Odyssey|324|C||Land|||Ravaged Highlands enters the battlefield tapped.${tap}: Add {R}.${tap}, Sacrifice Ravaged Highlands: Add one mana of any color.|
+Seafloor Debris|Odyssey|325|C||Land|||Seafloor Debris enters the battlefield tapped.${tap}: Add {U}.${tap}, Sacrifice Seafloor Debris: Add one mana of any color.|
Shadowblood Ridge|Odyssey|326|R||Land|||{1}, {tap}: Add {B}{R}.|
Skycloud Expanse|Odyssey|327|R||Land|||{1}, {tap}: Add {W}{U}.|
Sungrass Prairie|Odyssey|328|R||Land|||{1}, {tap}: Add {G}{W}.|
-Tarnished Citadel|Odyssey|329|R||Land|||{tap}: Add {C}.$${tap}: Add one mana of any color to your mana pool. Tarnished Citadel deals 3 damage to you.|
+Tarnished Citadel|Odyssey|329|R||Land|||{tap}: Add {C}.$${tap}: Add one mana of any color. Tarnished Citadel deals 3 damage to you.|
Mystic Crusader|Odyssey|33|R|{1}{W}{W}|Creature - Human Nomad Mystic|2|1|Protection from black and from red$Threshold - As long as seven or more cards are in your graveyard, Mystic Crusader gets +1/+1 and has flying.|
-Timberland Ruins|Odyssey|330|C||Land|||Timberland Ruins enters the battlefield tapped.${tap}: Add {G}.${tap}, Sacrifice Timberland Ruins: Add one mana of any color to your mana pool.|
+Timberland Ruins|Odyssey|330|C||Land|||Timberland Ruins enters the battlefield tapped.${tap}: Add {G}.${tap}, Sacrifice Timberland Ruins: Add one mana of any color.|
Plains|Odyssey|331|L||Basic Land - Plains|||W|
Plains|Odyssey|332|L||Basic Land - Plains|||W|
Plains|Odyssey|333|L||Basic Land - Plains|||W|
@@ -18236,7 +18236,7 @@ Peek|Odyssey|91|C|{U}|Instant|||Look at target player's hand.$Draw a card.|
Persuasion|Odyssey|92|R|{3}{U}{U}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$You control enchanted creature.|
Phantom Whelp|Odyssey|93|C|{1}{U}|Creature - Illusion Hound|2|2|When Phantom Whelp attacks or blocks, return it to its owner's hand at end of combat. (Return it only if it's on the battlefield.)|
Predict|Odyssey|94|U|{1}{U}|Instant|||Name a card, then target player puts the top card of his or her library into his or her graveyard. If that card is the named card, you draw two cards. Otherwise, you draw a card.|
-Psionic Gift|Odyssey|95|C|{1}{U}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{tap}: This creature deals 1 damage to target creature or player."|
+Psionic Gift|Odyssey|95|C|{1}{U}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{tap}: This creature deals 1 damage to any target."|
Pulsating Illusion|Odyssey|96|U|{4}{U}|Creature - Illusion|0|1|Flying$Discard a card: Pulsating Illusion gets +4/+4 until end of turn. Activate this ability only once each turn.|
Puppeteer|Odyssey|97|U|{2}{U}|Creature - Human Wizard|1|2|{U}, {tap}: You may tap or untap target creature.|
Repel|Odyssey|98|C|{3}{U}|Instant|||Put target creature on top of its owner's library.|
@@ -18311,7 +18311,7 @@ Nantuko Husk|Onslaught|159|C|{2}{B}|Creature - Zombie Insect|2|2|Sacrifice a cre
Crown of Awe|Onslaught|16|C|{1}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature has protection from black and from red.$Sacrifice Crown of Awe: Enchanted creature and other creatures that share a creature type with it gain protection from black and from red until end of turn.|
Oversold Cemetery|Onslaught|160|R|{1}{B}|Enchantment|||At the beginning of your upkeep, if you have four or more creature cards in your graveyard, you may return target creature card from your graveyard to your hand.|
Patriarch's Bidding|Onslaught|161|R|{3}{B}{B}|Sorcery|||Each player chooses a creature type. Each player returns all creature cards of a type chosen this way from his or her graveyard to the battlefield.|
-Profane Prayers|Onslaught|162|C|{2}{B}{B}|Sorcery|||Profane Prayers deals X damage to target creature or player and you gain X life, where X is the number of Clerics on the battlefield.|
+Profane Prayers|Onslaught|162|C|{2}{B}{B}|Sorcery|||Profane Prayers deals X damage to any target and you gain X life, where X is the number of Clerics on the battlefield.|
Prowling Pangolin|Onslaught|163|U|{3}{B}{B}|Creature - Beast|6|5|When Prowling Pangolin enters the battlefield, any player may sacrifice two creatures. If a player does, sacrifice Prowling Pangolin.|
Rotlung Reanimator|Onslaught|164|R|{2}{B}|Creature - Zombie Cleric|2|2|Whenever Rotlung Reanimator or another Cleric dies, put a 2/2 black Zombie creature token onto the battlefield.|
Screeching Buzzard|Onslaught|165|C|{3}{B}|Creature - Bird|2|2|Flying$When Screeching Buzzard dies, each opponent discards a card.|
@@ -18337,15 +18337,15 @@ Words of Waste|Onslaught|182|R|{2}{B}|Enchantment|||{1}: The next time you would
Wretched Anurid|Onslaught|183|C|{1}{B}|Creature - Zombie Frog Beast|3|3|Whenever another creature enters the battlefield, you lose 1 life.|
AEther Charge|Onslaught|184|U|{4}{R}|Enchantment|||Whenever a Beast enters the battlefield under your control, you may have it deal 4 damage to target opponent.|
Aggravated Assault|Onslaught|185|R|{2}{R}|Enchantment|||{3}{R}{R}: Untap all creatures you control. After this main phase, there is an additional combat phase followed by an additional main phase. Activate this ability only any time you could cast a sorcery.|
-Airdrop Condor|Onslaught|186|U|{4}{R}|Creature - Bird|2|2|Flying${1}{R}, Sacrifice a Goblin creature: Airdrop Condor deals damage equal to the sacrificed creature's power to target creature or player.|
+Airdrop Condor|Onslaught|186|U|{4}{R}|Creature - Bird|2|2|Flying${1}{R}, Sacrifice a Goblin creature: Airdrop Condor deals damage equal to the sacrificed creature's power to any target.|
Avarax|Onslaught|187|U|{3}{R}{R}|Creature - Beast|3|3|Haste$When Avarax enters the battlefield, you may search your library for a card named Avarax, reveal it, and put it into your hand. If you do, shuffle your library.${1}{R}: Avarax gets +1/+0 until end of turn.|
Battering Craghorn|Onslaught|188|C|{2}{R}{R}|Creature - Goat Beast|3|1|First strike$Morph {1}{R}{R} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
Blistering Firecat|Onslaught|189|R|{1}{R}{R}{R}|Creature - Elemental Cat|7|1|Trample, haste$At the beginning of the end step, sacrifice Blistering Firecat.$Morph {R}{R} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
-Daru Healer|Onslaught|19|C|{2}{W}|Creature - Human Cleric|1|2|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.$Morph {W} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
+Daru Healer|Onslaught|19|C|{2}{W}|Creature - Human Cleric|1|2|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.$Morph {W} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
Break Open|Onslaught|190|C|{1}{R}|Instant|||Turn target face-down creature an opponent controls face up.|
Brightstone Ritual|Onslaught|191|C|{R}|Instant|||Add {R} for each Goblin on the battlefield.|
Butcher Orgg|Onslaught|192|R|{4}{R}{R}{R}|Creature - Orgg|6|6|You may assign Butcher Orgg's combat damage divided as you choose among defending player and/or any number of creatures he or she controls.|
-Chain of Plasma|Onslaught|193|U|{1}{R}|Instant|||Chain of Plasma deals 3 damage to target creature or player. Then that player or that creature's controller may discard a card. If the player does, he or she may copy this spell and may choose a new target for that copy.|
+Chain of Plasma|Onslaught|193|U|{1}{R}|Instant|||Chain of Plasma deals 3 damage to any target. Then that player or that creature's controller may discard a card. If the player does, he or she may copy this spell and may choose a new target for that copy.|
Charging Slateback|Onslaught|194|C|{4}{R}|Creature - Beast|4|3|Charging Slateback can't block.$Morph {4}{R} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
Commando Raid|Onslaught|195|U|{2}{R}|Instant|||Until end of turn, target creature you control gains "When this creature deals combat damage to a player, you may have it deal damage equal to its power to target creature that player controls."|
Crown of Fury|Onslaught|196|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+0 and has first strike.$Sacrifice Crown of Fury: Enchanted creature and other creatures that share a creature type with it get +1/+0 and gain first strike until end of turn.|
@@ -18354,14 +18354,14 @@ Dragon Roost|Onslaught|198|R|{4}{R}{R}|Enchantment|||{5}{R}{R}: Put a 5/5 red Dr
Dwarven Blastminer|Onslaught|199|U|{1}{R}|Creature - Dwarf|1|1|{2}{R}, {tap}: Destroy target nonbasic land.$Morph {R} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
Akroma's Vengeance|Onslaught|2|R|{4}{W}{W}|Sorcery|||Destroy all artifacts, creatures, and enchantments.$Cycling {3} ({3}, Discard this card: Draw a card.)|
Daru Lancer|Onslaught|20|C|{4}{W}{W}|Creature - Human Soldier|3|4|First strike$Morph {2}{W}{W} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
-Embermage Goblin|Onslaught|200|U|{3}{R}|Creature - Goblin Wizard|1|1|When Embermage Goblin enters the battlefield, you may search your library for a card named Embermage Goblin, reveal it, and put it into your hand. If you do, shuffle your library.${tap}: Embermage Goblin deals 1 damage to target creature or player.|
-Erratic Explosion|Onslaught|201|C|{2}{R}|Sorcery|||Choose target creature or player. Reveal cards from the top of your library until you reveal a nonland card. Erratic Explosion deals damage equal to that card's converted mana cost to that creature or player. Put the revealed cards on the bottom of your library in any order.|
+Embermage Goblin|Onslaught|200|U|{3}{R}|Creature - Goblin Wizard|1|1|When Embermage Goblin enters the battlefield, you may search your library for a card named Embermage Goblin, reveal it, and put it into your hand. If you do, shuffle your library.${tap}: Embermage Goblin deals 1 damage to any target.|
+Erratic Explosion|Onslaught|201|C|{2}{R}|Sorcery|||Choose any target. Reveal cards from the top of your library until you reveal a nonland card. Erratic Explosion deals damage equal to that card's converted mana cost to that creature or player. Put the revealed cards on the bottom of your library in any order.|
Fever Charm|Onslaught|202|C|{R}|Instant|||Choose one - Target creature gains haste until end of turn; or target creature gets +2/+0 until end of turn; or Fever Charm deals 3 damage to target Wizard creature.|
Flamestick Courier|Onslaught|203|U|{2}{R}|Creature - Goblin|2|1|You may choose not to untap Flamestick Courier during your untap step.${2}{R}, {tap}: Target Goblin creature gets +2/+2 and has haste for as long as Flamestick Courier remains tapped.|
Goblin Machinist|Onslaught|204|U|{4}{R}|Creature - Goblin|0|5|{2}{R}: Reveal cards from the top of your library until you reveal a nonland card. Goblin Machinist gets +X/+0 until end of turn, where X is that card's converted mana cost. Put the revealed cards on the bottom of your library in any order.|
Goblin Piledriver|Onslaught|205|R|{1}{R}|Creature - Goblin Warrior|1|2|Protection from blue$Whenever Goblin Piledriver attacks, it gets +2/+0 until end of turn for each other attacking Goblin.|
Goblin Pyromancer|Onslaught|206|R|{3}{R}|Creature - Goblin Wizard|2|2|When Goblin Pyromancer enters the battlefield, Goblin creatures get +3/+0 until end of turn.$At the beginning of the end step, destroy all Goblins.|
-Goblin Sharpshooter|Onslaught|207|R|{2}{R}|Creature - Goblin|1|1|Goblin Sharpshooter doesn't untap during your untap step.$Whenever a creature dies, untap Goblin Sharpshooter.${tap}: Goblin Sharpshooter deals 1 damage to target creature or player.|
+Goblin Sharpshooter|Onslaught|207|R|{2}{R}|Creature - Goblin|1|1|Goblin Sharpshooter doesn't untap during your untap step.$Whenever a creature dies, untap Goblin Sharpshooter.${tap}: Goblin Sharpshooter deals 1 damage to any target.|
Goblin Sky Raider|Onslaught|208|C|{2}{R}|Creature - Goblin Warrior|1|2|Flying (This creature can't be blocked except by creatures with flying or reach.)|
Goblin Sledder|Onslaught|209|C|{R}|Creature - Goblin|1|1|Sacrifice a Goblin: Target creature gets +1/+1 until end of turn.|
Daunting Defender|Onslaught|21|C|{4}{W}|Creature - Human Cleric|3|3|If a source would deal damage to a Cleric creature you control, prevent 1 of that damage.|
@@ -18372,7 +18372,7 @@ Insurrection|Onslaught|213|R|{5}{R}{R}{R}|Sorcery|||Untap all creatures and gain
Kaboom!|Onslaught|214|R|{4}{R}|Sorcery|||Choose any number of target players. For each of those players, reveal cards from the top of your library until you reveal a nonland card. Kaboom deals damage equal to that card's converted mana cost to that player, then you put the revealed cards on the bottom of your library in any order.|
Lavamancer's Skill|Onslaught|215|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{tap}: This creature deals 1 damage to target creature."$As long as enchanted creature is a Wizard, it has "{tap}: This creature deals 2 damage to target creature."|
Lay Waste|Onslaught|216|C|{3}{R}|Sorcery|||Destroy target land.$Cycling {2} ({2}, Discard this card: Draw a card.)|
-Lightning Rift|Onslaught|217|U|{1}{R}|Enchantment|||Whenever a player cycles a card, you may pay {1}. If you do, Lightning Rift deals 2 damage to target creature or player.|
+Lightning Rift|Onslaught|217|U|{1}{R}|Enchantment|||Whenever a player cycles a card, you may pay {1}. If you do, Lightning Rift deals 2 damage to any target.|
Mana Echoes|Onslaught|218|R|{2}{R}{R}|Enchantment|||Whenever a creature enters the battlefield, you may add X mana of {C}, where X is the number of creatures you control that share a creature type with it.|
Menacing Ogre|Onslaught|219|R|{3}{R}{R}|Creature - Ogre|3|3|Trample, haste$When Menacing Ogre enters the battlefield, each player secretly chooses a number. Then those numbers are revealed. Each player with the highest number loses that much life. If you are one of those players, put two +1/+1 counters on Menacing Ogre.|
Dawning Purist|Onslaught|22|U|{2}{W}|Creature - Human Cleric|2|2|Whenever Dawning Purist deals combat damage to a player, you may destroy target enchantment that player controls.$Morph {1}{W} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
@@ -18383,7 +18383,7 @@ Risky Move|Onslaught|223|R|{3}{R}{R}{R}|Enchantment|||At the beginning of each p
Rorix Bladewing|Onslaught|224|R|{3}{R}{R}{R}|Legendary Creature - Dragon|6|5|Flying, haste|
Searing Flesh|Onslaught|225|U|{6}{R}|Sorcery|||Searing Flesh deals 7 damage to target opponent.|
Shaleskin Bruiser|Onslaught|226|U|{6}{R}|Creature - Beast|4|4|Trample$Whenever Shaleskin Bruiser attacks, it gets +3/+0 until end of turn for each other attacking Beast.|
-Shock|Onslaught|227|C|{R}|Instant|||Shock deals 2 damage to target creature or player.|
+Shock|Onslaught|227|C|{R}|Instant|||Shock deals 2 damage to any target.|
Skirk Commando|Onslaught|228|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 card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
Skirk Fire Marshal|Onslaught|229|R|{3}{R}{R}|Creature - Goblin|2|2|Protection from red$Tap five untapped Goblins you control: Skirk Fire Marshal deals 10 damage to each creature and each player.|
Defensive Maneuvers|Onslaught|23|C|{3}{W}|Instant|||Creatures of the creature type of your choice get +0/+4 until end of turn.|
@@ -18391,7 +18391,7 @@ Skirk Prospector|Onslaught|230|C|{R}|Creature - Goblin|1|1|Sacrifice a Goblin: A
Skittish Valesk|Onslaught|231|U|{6}{R}|Creature - Beast|5|5|At the beginning of your upkeep, flip a coin. If you lose the flip, turn Skittish Valesk face down.$Morph {5}{R} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
Slice and Dice|Onslaught|232|U|{4}{R}{R}|Sorcery|||Slice and Dice deals 4 damage to each creature.$Cycling {2}{R} ({2}{R}, Discard this card: Draw a card.)$When you cycle Slice and Dice, you may have it deal 1 damage to each creature.|
Snapping Thragg|Onslaught|233|U|{4}{R}|Creature - Beast|3|3|Whenever Snapping Thragg deals combat damage to a player, you may have it deal 3 damage to target creature that player controls.$Morph {4}{R}{R} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
-Solar Blast|Onslaught|234|C|{3}{R}|Instant|||Solar Blast deals 3 damage to target creature or player.$Cycling {1}{R}{R} ({1}{R}{R}, Discard this card: Draw a card.)$When you cycle Solar Blast, you may have it deal 1 damage to target creature or player.|
+Solar Blast|Onslaught|234|C|{3}{R}|Instant|||Solar Blast deals 3 damage to any target.$Cycling {1}{R}{R} ({1}{R}{R}, Discard this card: Draw a card.)$When you cycle Solar Blast, you may have it deal 1 damage to any target.|
Sparksmith|Onslaught|235|C|{1}{R}|Creature - Goblin|1|1|{tap}: Sparksmith deals X damage to target creature and X damage to you, where X is the number of Goblins on the battlefield.|
Spitfire Handler|Onslaught|236|U|{1}{R}|Creature - Goblin|1|1|Spitfire Handler can't block creatures with power greater than Spitfire Handler's power.${R}: Spitfire Handler gets +1/+0 until end of turn.|
Spurred Wolverine|Onslaught|237|C|{4}{R}|Creature - Wolverine Beast|3|2|Tap two untapped Beasts you control: Target creature gains first strike until end of turn.|
@@ -18402,11 +18402,11 @@ Thoughtbound Primoc|Onslaught|240|U|{2}{R}|Creature - Bird Beast|2|3|Flying$At t
Threaten|Onslaught|241|U|{2}{R}|Sorcery|||Untap target creature and gain control of it until end of turn. That creature gains haste until end of turn. (It can attack and {tap} this turn.)|
Thunder of Hooves|Onslaught|242|U|{3}{R}|Sorcery|||Thunder of Hooves deals X damage to each creature without flying and each player, where X is the number of Beasts on the battlefield.|
Wave of Indifference|Onslaught|243|C|{X}{R}|Sorcery|||X target creatures can't block this turn.|
-Words of War|Onslaught|244|R|{2}{R}|Enchantment|||{1}: The next time you would draw a card this turn, Words of War deals 2 damage to target creature or player instead.|
+Words of War|Onslaught|244|R|{2}{R}|Enchantment|||{1}: The next time you would draw a card this turn, Words of War deals 2 damage to any target instead.|
Animal Magnetism|Onslaught|245|R|{4}{G}|Sorcery|||Reveal the top five cards of your library. An opponent chooses a creature card from among them. Put that card onto the battlefield and the rest into your graveyard.|
Barkhide Mauler|Onslaught|246|C|{4}{G}|Creature - Beast|4|4|Cycling {2} ({2}, Discard this card: Draw a card.)|
Biorhythm|Onslaught|247|R|{6}{G}{G}|Sorcery|||Each player's life total becomes the number of creatures he or she controls.|
-Birchlore Rangers|Onslaught|248|C|{G}|Creature - Elf Druid|1|1|Tap two untapped Elves you control: Add one mana of any color to your mana pool.$Morph {G} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
+Birchlore Rangers|Onslaught|248|C|{G}|Creature - Elf Druid|1|1|Tap two untapped Elves you control: Add one mana of any color.$Morph {G} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
Bloodline Shaman|Onslaught|249|U|{1}{G}|Creature - Elf Wizard Shaman|1|1|{tap}: Choose a creature type. Reveal the top card of your library. If that card is a creature card of the chosen type, put it into your hand. Otherwise, put it into your graveyard.|
Disciple of Grace|Onslaught|25|C|{1}{W}|Creature - Human Cleric|1|2|Protection from black$Cycling {2} ({2}, Discard this card: Draw a card.)|
Broodhatch Nantuko|Onslaught|250|U|{1}{G}|Creature - Insect Druid|1|1|Whenever Broodhatch Nantuko is dealt damage, you may put that many 1/1 green Insect creature tokens onto the battlefield.$Morph {2}{G} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
@@ -18464,7 +18464,7 @@ Voice of the Woods|Onslaught|297|R|{3}{G}{G}|Creature - Elf|2|2|Tap five untappe
Wall of Mulch|Onslaught|298|U|{1}{G}|Creature - Wall|0|4|Defender (This creature can't attack.)${G}, Sacrifice a Wall: Draw a card.|
Weird Harvest|Onslaught|299|R|{X}{G}{G}|Sorcery|||Each player may search his or her library for up to X creature cards, reveal those cards, and put them into his or her hand. Then each player who searched his or her library this way shuffles it.|
Ancestor's Prophet|Onslaught|3|R|{4}{W}|Creature - Human Cleric|1|5|Tap five untapped Clerics you control: You gain 10 life.|
-Glarecaster|Onslaught|30|R|{4}{W}{W}|Creature - Bird Cleric|3|3|Flying${5}{W}: The next time damage would be dealt to Glarecaster and/or you this turn, that damage is dealt to target creature or player instead.|
+Glarecaster|Onslaught|30|R|{4}{W}{W}|Creature - Bird Cleric|3|3|Flying${5}{W}: The next time damage would be dealt to Glarecaster and/or you this turn, that damage is dealt to any target instead.|
Wellwisher|Onslaught|300|C|{1}{G}|Creature - Elf|1|1|{tap}: You gain 1 life for each Elf on the battlefield.|
Wirewood Elf|Onslaught|301|C|{1}{G}|Creature - Elf Druid|1|2|{tap}: Add {G}.|
Wirewood Herald|Onslaught|302|C|{1}{G}|Creature - Elf|1|1|When Wirewood Herald dies, you may search your library for an Elf card, reveal that card, put it into your hand, then shuffle your library.|
@@ -18472,7 +18472,7 @@ Wirewood Pride|Onslaught|303|C|{G}|Instant|||Target creature gets +X/+X until en
Wirewood Savage|Onslaught|304|C|{2}{G}|Creature - Elf|2|2|Whenever a Beast enters the battlefield, you may draw a card.|
Words of Wilding|Onslaught|305|R|{2}{G}|Enchantment|||{1}: The next time you would draw a card this turn, put a 2/2 green Bear creature token onto the battlefield instead.|
Cryptic Gateway|Onslaught|306|R|{5}|Artifact|||Tap two untapped creatures you control: You may put a creature card from your hand that shares a creature type with each creature tapped this way onto the battlefield.|
-Doom Cannon|Onslaught|307|R|{6}|Artifact|||As Doom Cannon enters the battlefield, choose a creature type.${3}, {tap}, Sacrifice a creature of the chosen type: Doom Cannon deals 3 damage to target creature or player.|
+Doom Cannon|Onslaught|307|R|{6}|Artifact|||As Doom Cannon enters the battlefield, choose a creature type.${3}, {tap}, Sacrifice a creature of the chosen type: Doom Cannon deals 3 damage to any target.|
Dream Chisel|Onslaught|308|R|{2}|Artifact|||Face-down creature spells you cast cost {1} less to cast.|
Riptide Replicator|Onslaught|309|R|{X}{4}|Artifact|||As Riptide Replicator enters the battlefield, choose a color and a creature type.$Riptide Replicator enters the battlefield with X charge counters on it.${4}, {tap}: Put an X/X creature token of the chosen color and type onto the battlefield, where X is the number of charge counters on Riptide Replicator.|
Glory Seeker|Onslaught|31|C|{1}{W}|Creature - Human Soldier|2|2||
@@ -18485,7 +18485,7 @@ Daru Encampment|Onslaught|315|U||Land|||{tap}: Add {C}.${W}, {tap}: Target Soldi
Flooded Strand|Onslaught|316|R||Land|||{tap}, Pay 1 life, Sacrifice Flooded Strand: Search your library for a Plains or Island card and put it onto the battlefield. Then shuffle your library.|
Forgotten Cave|Onslaught|317|C||Land|||Forgotten Cave enters the battlefield tapped.${tap}: Add {R}.$Cycling {R} ({R}, Discard this card: Draw a card.)|
Goblin Burrows|Onslaught|318|U||Land|||{tap}: Add {C}.${1}{R}, {tap}: Target Goblin creature gets +2/+0 until end of turn.|
-Grand Coliseum|Onslaught|319|R||Land|||Grand Coliseum enters the battlefield tapped.${tap}: Add {C}.${tap}: Add one mana of any color to your mana pool. Grand Coliseum deals 1 damage to you.|
+Grand Coliseum|Onslaught|319|R||Land|||Grand Coliseum enters the battlefield tapped.${tap}: Add {C}.${tap}: Add one mana of any color. Grand Coliseum deals 1 damage to you.|
Grassland Crusader|Onslaught|32|C|{5}{W}|Creature - Human Cleric Soldier|2|4|{tap}: Target Elf or Soldier creature gets +2/+2 until end of turn.|
Lonely Sandbar|Onslaught|320|C||Land|||Lonely Sandbar enters the battlefield tapped.${tap}: Add {U}.$Cycling {U} ({U}, Discard this card: Draw a card.)|
Polluted Delta|Onslaught|321|R||Land|||{tap}, Pay 1 life, Sacrifice Polluted Delta: Search your library for an Island or Swamp card and put it onto the battlefield. Then shuffle your library.|
@@ -18543,7 +18543,7 @@ Sandskin|Onslaught|52|C|{2}{W}|Enchantment - Aura|||Enchant creature$Prevent all
Shared Triumph|Onslaught|53|R|{1}{W}|Enchantment|||As Shared Triumph enters the battlefield, choose a creature type.$Creatures of the chosen type get +1/+1.|
Shieldmage Elder|Onslaught|54|U|{5}{W}|Creature - Human Cleric Wizard|2|3|Tap two untapped Clerics you control: Prevent all damage target creature would deal this turn.$Tap two untapped Wizards you control: Prevent all damage target spell would deal this turn.|
Sigil of the New Dawn|Onslaught|55|R|{3}{W}|Enchantment|||Whenever a creature is put into your graveyard from the battlefield, you may pay {1}{W}. If you do, return that card to your hand.|
-Sunfire Balm|Onslaught|56|U|{2}{W}|Instant|||Prevent the next 4 damage that would be dealt to target creature or player this turn.$Cycling {1}{W} ({1}{W}, Discard this card: Draw a card.)$When you cycle Sunfire Balm, you may prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Sunfire Balm|Onslaught|56|U|{2}{W}|Instant|||Prevent the next 4 damage that would be dealt to any target this turn.$Cycling {1}{W} ({1}{W}, Discard this card: Draw a card.)$When you cycle Sunfire Balm, you may prevent the next 1 damage that would be dealt to any target this turn.|
True Believer|Onslaught|57|R|{W}{W}|Creature - Human Cleric|2|2|You have shroud. (You can't be the target of spells or abilities.)|
Unified Strike|Onslaught|58|C|{W}|Instant|||Exile target attacking creature if its power is less than or equal to the number of Soldiers on the battlefield.|
Weathered Wayfarer|Onslaught|59|R|{W}|Creature - Human Nomad Cleric|1|1|{W}, {tap}: Search your library for a land card, reveal it, and put it into your hand. Then shuffle your library. Activate this ability only if an opponent controls more lands than you.|
@@ -18615,7 +18615,7 @@ Tumble|Planar Chaos|114b|U|{5}{R}|Sorcery|||$Tumble deals 6 damage to each creat
Blood Knight|Planar Chaos|115|U|{R}{R}|Creature - Human Knight|2|2|First strike, protection from white|
Brute Force|Planar Chaos|116|C|{R}|Instant|||Target creature gets +3/+3 until end of turn.|
Molten Firebird|Planar Chaos|117|R|{4}{R}|Creature - Phoenix|2|2|Flying$When Molten Firebird dies, return it to the battlefield under its owner's control at the beginning of the next end step and you skip your next draw step.${4}{R}: Exile Molten Firebird.|
-Prodigal Pyromancer|Planar Chaos|118|C|{2}{R}|Creature - Human Wizard|1|1|{tap}: Prodigal Pyromancer deals 1 damage to target creature or player.|
+Prodigal Pyromancer|Planar Chaos|118|C|{2}{R}|Creature - Human Wizard|1|1|{tap}: Prodigal Pyromancer deals 1 damage to any target.|
Pyrohemia|Planar Chaos|119|U|{2}{R}{R}|Enchantment|||At the beginning of the end step, if no creatures are on the battlefield, sacrifice Pyrohemia.${R}: Pyrohemia deals 1 damage to each creature and each player.|
Rebuff the Wicked|Planar Chaos|12|U|{W}|Instant|||Counter target spell that targets a permanent you control.|
Reckless Wurm|Planar Chaos|120|U|{3}{R}{R}|Creature - Wurm|4|4|Trample$Madness {2}{R} (If you discard this card, you may cast it for its madness cost instead of putting it into your graveyard.)|
@@ -18642,7 +18642,7 @@ Sophic Centaur|Planar Chaos|139|U|{3}{G}|Creature - Centaur Spellshaper|1|1|{2}{
Riftmarked Knight|Planar Chaos|14|U|{1}{W}{W}|Creature - Human Rebel Knight|2|2|Protection from black; flanking (Whenever a creature without flanking blocks this creature, the blocking creature gets -1/-1 until end of turn.)$Suspend 3-{1}{W}{W} (Rather than cast this card from your hand, you may pay {1}{W}{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.)$When the last time counter is removed from Riftmarked Knight while it's exiled, put a 2/2 black Knight creature token with flanking, protection from white, and haste onto the battlefield.|
Timbermare|Planar Chaos|140|R|{3}{G}|Creature - Elemental Horse|5|5|Haste$Echo {5}{G} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)$When Timbermare enters the battlefield, tap all other creatures.|
Uktabi Drake|Planar Chaos|141|C|{G}|Creature - Drake|2|1|Flying, haste$Echo {1}{G}{G} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)|
-Utopia Vow|Planar Chaos|142|C|{1}{G}|Enchantment - Aura|||Enchant creature$Enchanted creature can't attack or block.$Enchanted creature has "{tap}: Add one mana of any color to your mana pool."|
+Utopia Vow|Planar Chaos|142|C|{1}{G}|Enchantment - Aura|||Enchant creature$Enchanted creature can't attack or block.$Enchanted creature has "{tap}: Add one mana of any color."|
Vitaspore Thallid|Planar Chaos|143|C|{1}{G}|Creature - Fungus|1|1|At the beginning of your upkeep, put a spore counter on Vitaspore Thallid.$Remove three spore counters from Vitaspore Thallid: Put a 1/1 green Saproling creature token onto the battlefield.$Sacrifice a Saproling: Target creature gains haste until end of turn.|
Wild Pair|Planar Chaos|144|R|{4}{G}{G}|Enchantment|||Whenever a creature enters the battlefield, if you cast it from your hand, you may search your library for a creature card with the same total power and toughness and put it onto the battlefield. If you do, shuffle your library.|
Essence Warden|Planar Chaos|145|C|{G}|Creature - Elf Shaman|1|1|Whenever another creature enters the battlefield, you gain 1 life.|
@@ -18651,11 +18651,11 @@ Gaea's Anthem|Planar Chaos|147|R|{1}{G}{G}|Enchantment|||Creatures you control g
Groundbreaker|Planar Chaos|148|R|{G}{G}{G}|Creature - Elemental|6|1|Trample, haste$At the beginning of the end step, sacrifice Groundbreaker.|
Harmonize|Planar Chaos|149|U|{2}{G}{G}|Sorcery|||Draw three cards.|
Saltblast|Planar Chaos|15|U|{3}{W}{W}|Sorcery|||Destroy target nonwhite permanent.|
-Healing Leaves|Planar Chaos|150|C|{G}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to target creature or player this turn.|
+Healing Leaves|Planar Chaos|150|C|{G}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to any target this turn.|
Hedge Troll|Planar Chaos|151|U|{2}{G}|Creature - Troll Cleric|2|2|Hedge Troll gets +1/+1 as long as you control a Plains.${W}: Regenerate Hedge Troll.|
Keen Sense|Planar Chaos|152|U|{G}|Enchantment - Aura|||Enchant creature$Whenever enchanted creature deals damage to an opponent, you may draw a card.|
Seal of Primordium|Planar Chaos|153|C|{1}{G}|Enchantment|||Sacrifice Seal of Primordium: Destroy target artifact or enchantment.|
-Cautery Sliver|Planar Chaos|154|U|{R}{W}|Creature - Sliver|2|2|All Slivers have "{1}, Sacrifice this permanent: This permanent deals 1 damage to target creature or player."$All Slivers have "{1}, Sacrifice this permanent: Prevent the next 1 damage that would be dealt to target Sliver creature or player this turn."|
+Cautery Sliver|Planar Chaos|154|U|{R}{W}|Creature - Sliver|2|2|All Slivers have "{1}, Sacrifice this permanent: This permanent deals 1 damage to any target."$All Slivers have "{1}, Sacrifice this permanent: Prevent the next 1 damage that would be dealt to target Sliver creature or player this turn."|
Darkheart Sliver|Planar Chaos|155|U|{B}{G}|Creature - Sliver|2|2|All Slivers have "Sacrifice this permanent: You gain 3 life."|
Dormant Sliver|Planar Chaos|156|U|{2}{G}{U}|Creature - Sliver|2|2|All Sliver creatures have defender.$All Slivers have "When this permanent enters the battlefield, draw a card."|
Frenetic Sliver|Planar Chaos|157|U|{1}{U}{R}|Creature - Sliver|2|2|All Slivers have "{0}: If this permanent is on the battlefield, flip a coin. If you win the flip, exile this permanent and return it to the battlefield under its owner's control at the beginning of the next end step. If you lose the flip, sacrifice it."|
@@ -18764,14 +18764,14 @@ Keep Watch|Planechase|10|C|{2}{U}|Instant|||Draw a card for each attacking creat
Double Cleave|Planechase|100|C|{1}{RW}|Instant|||Target creature gains double strike until end of turn. (It deals both first-strike and regular combat damage.)|
Duergar Hedge-Mage|Planechase|101|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.|
Hearthfire Hobgoblin|Planechase|102|U|{RW}{RW}{RW}|Creature - Goblin Soldier|2|2|Double strike|
-Assault|Planechase|103a|U|{R}|Sorcery|||Assault deals 2 damage to target creature or player.$|
+Assault|Planechase|103a|U|{R}|Sorcery|||Assault deals 2 damage to any target.$|
Battery|Planechase|103b|U|{3}{G}|Sorcery|||$Put a 3/3 green Elephant creature token onto the battlefield.|
Order|Planechase|104a|U|{3}{W}|Instant|||Exile target attacking creature.$|
Chaos|Planechase|104b|U|{2}{R}|Instant|||$Creatures can't block this turn.|
Arcbound Crusher|Planechase|105|U|{4}|Artifact Creature - Juggernaut|0|0|Trample$Whenever another artifact enters the battlefield, put a +1/+1 counter on Arcbound Crusher.$Modular 1 (This enters the battlefield with a +1/+1 counter on it. When it dies, you may put its +1/+1 counters on target artifact creature.)|
Arcbound Slith|Planechase|106|U|{2}|Artifact Creature - Slith|0|0|Whenever Arcbound Slith deals combat damage to a player, put a +1/+1 counter on it.$Modular 1 (This enters the battlefield with a +1/+1 counter on it. When it dies, you may put its +1/+1 counters on target artifact creature.)|
Boros Signet|Planechase|107|C|{2}|Artifact|||{1}, {tap}: Add {R}{W}.|
-Bosh, Iron Golem|Planechase|108|R|{8}|Legendary Artifact Creature - Golem|6|7|Trample${3}{R}, Sacrifice an artifact: Bosh, Iron Golem deals damage equal to the sacrificed artifact's converted mana cost to target creature or player.|
+Bosh, Iron Golem|Planechase|108|R|{8}|Legendary Artifact Creature - Golem|6|7|Trample${3}{R}, Sacrifice an artifact: Bosh, Iron Golem deals damage equal to the sacrificed artifact's converted mana cost to any target.|
Copper Myr|Planechase|109|C|{2}|Artifact Creature - Myr|1|1|{tap}: Add {G}.|
Master of Etherium|Planechase|11|R|{2}{U}|Artifact Creature - Vedalken Wizard|*|*|Master of Etherium's power and toughness are each equal to the number of artifacts you control.$Other artifact creatures you control get +1/+1.|
Cranial Plating|Planechase|110|C|{2}|Artifact - Equipment|||Equipped creature gets +1/+0 for each artifact you control.${B}{B}: Attach Cranial Plating to target creature you control.$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)|
@@ -18787,7 +18787,7 @@ Mask of Memory|Planechase|119|U|{2}|Artifact - Equipment|||Whenever equipped cre
Qumulox|Planechase|12|U|{6}{U}{U}|Creature - Beast|5|4|Affinity for artifacts (This spell costs {1} less to cast for each artifact you control.)$Flying|
Myr Enforcer|Planechase|120|C|{7}|Artifact Creature - Myr|4|4|Affinity for artifacts (This spell costs {1} less to cast for each artifact you control.)|
Nuisance Engine|Planechase|121|U|{3}|Artifact|||{2}, {tap}: Put a 0/1 colorless Pest artifact creature token onto the battlefield.|
-Pentad Prism|Planechase|122|C|{2}|Artifact|||Sunburst (This enters the battlefield with a charge counter on it for each color of mana spent to cast it.)$Remove a charge counter from Pentad Prism: Add one mana of any color to your mana pool.|
+Pentad Prism|Planechase|122|C|{2}|Artifact|||Sunburst (This enters the battlefield with a charge counter on it for each color of mana spent to cast it.)$Remove a charge counter from Pentad Prism: Add one mana of any color.|
Pentavus|Planechase|123|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.|
Relic of Progenitus|Planechase|124|C|{1}|Artifact|||{tap}: Target player exiles a card from his or her graveyard.${1}, Exile Relic of Progenitus: Exile all cards from all graveyards. Draw a card.|
Serum Tank|Planechase|125|U|{3}|Artifact|||Whenever Serum Tank or another artifact enters the battlefield, put a charge counter on Serum Tank.${3}, {tap}, Remove a charge counter from Serum Tank: Draw a card.|
@@ -18817,7 +18817,7 @@ Plains|Planechase|146|L||Basic Land - Plains|||W|
Island|Planechase|147|L||Basic Land - Island|||U|
Island|Planechase|148|L||Basic Land - Island|||U|
Island|Planechase|149|L||Basic Land - Island|||U|
-Vedalken Engineer|Planechase|15|C|{1}{U}|Creature - Vedalken Artificer|1|1|{tap}: Add two mana of any one color to your mana pool. Spend this mana only to cast artifact spells or activate abilities of artifacts.|
+Vedalken Engineer|Planechase|15|C|{1}{U}|Creature - Vedalken Artificer|1|1|{tap}: Add two mana of any one color. Spend this mana only to cast artifact spells or activate abilities of artifacts.|
Island|Planechase|150|L||Basic Land - Island|||U|
Swamp|Planechase|151|L||Basic Land - Swamp|||B|
Swamp|Planechase|152|L||Basic Land - Swamp|||B|
@@ -18844,7 +18844,7 @@ Beacon of Unrest|Planechase|18|R|{3}{B}{B}|Sorcery|||Put target artifact or crea
Beseech the Queen|Planechase|19|U|{2B}{2B}{2B}|Sorcery|||({2B} can be paid with any two mana or with {B}. This card's converted mana cost is 6.)$Search your library for a card with converted mana cost less than or equal to the number of lands you control, reveal it, and put it into your hand. Then shuffle your library.|
Congregate|Planechase|2|C|{3}{W}|Instant|||Target player gains 2 life for each creature on the battlefield.|
Cadaverous Knight|Planechase|20|C|{2}{B}|Creature - Zombie Knight|2|2|Flanking (Whenever a creature without flanking blocks this creature, the blocking creature gets -1/-1 until end of turn.)${1}{B}{B}: Regenerate Cadaverous Knight.|
-Consume Spirit|Planechase|21|U|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Consume Spirit deals X damage to target creature or player and you gain X life.|
+Consume Spirit|Planechase|21|U|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Consume Spirit deals X damage to any target and you gain X life.|
Corpse Harvester|Planechase|22|U|{3}{B}{B}|Creature - Zombie Wizard|3|3|{1}{B}, {tap}, Sacrifice a creature: Search your library for a Zombie card and a Swamp card, reveal them, and put them into your hand. Then shuffle your library.|
Cruel Revival|Planechase|23|C|{4}{B}|Instant|||Destroy target non-Zombie creature. It can't be regenerated. Return up to one target Zombie card from your graveyard to your hand.|
Dark Ritual|Planechase|24|C|{B}|Instant|||Add {B}{B}{B}.|
@@ -18872,13 +18872,13 @@ Syphon Soul|Planechase|43|C|{2}{B}|Sorcery|||Syphon Soul deals 2 damage to each
Undead Warchief|Planechase|44|U|{2}{B}{B}|Creature - Zombie|1|1|Zombie spells you cast cost {1} less to cast.$Zombie creatures you control get +2/+1.|
Withered Wretch|Planechase|45|U|{B}{B}|Creature - Zombie Cleric|2|2|{1}: Exile target card from a graveyard.|
Arc Lightning|Planechase|46|C|{2}{R}|Sorcery|||Arc Lightning deals 3 damage divided as you choose among one, two, or three target creatures and/or players.|
-Blaze|Planechase|47|U|{X}{R}|Sorcery|||Blaze deals X damage to target creature or player.|
+Blaze|Planechase|47|U|{X}{R}|Sorcery|||Blaze deals X damage to any target.|
Bogardan Firefiend|Planechase|48|C|{2}{R}|Creature - Elemental Spirit|2|1|When Bogardan Firefiend dies, it deals 2 damage to target creature.|
Bogardan Rager|Planechase|49|C|{5}{R}|Creature - Elemental|3|4|Flash (You may cast this spell any time you could cast an instant.)$When Bogardan Rager enters the battlefield, target creature gets +4/+0 until end of turn.|
Orim's Thunder|Planechase|5|C|{2}{W}|Instant|||Kicker {R} (You may pay an additional {R} as you cast this spell.)$Destroy target artifact or enchantment. If Orim's Thunder was kicked, it deals damage equal to that permanent's converted mana cost to target creature.|
Browbeat|Planechase|50|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.|
-Cinder Elemental|Planechase|51|U|{3}{R}|Creature - Elemental|2|2|{X}{R}, {tap}, Sacrifice Cinder Elemental: Cinder Elemental deals X damage to target creature or player.|
-Cone of Flame|Planechase|52|U|{3}{R}{R}|Sorcery|||Cone of Flame deals 1 damage to target creature or player, 2 damage to another target creature or player, and 3 damage to a third target creature or player.|
+Cinder Elemental|Planechase|51|U|{3}{R}|Creature - Elemental|2|2|{X}{R}, {tap}, Sacrifice Cinder Elemental: Cinder Elemental deals X damage to any target.|
+Cone of Flame|Planechase|52|U|{3}{R}{R}|Sorcery|||Cone of Flame deals 1 damage to any target, 2 damage to another any target, and 3 damage to a third any target.|
Flamekin Harbinger|Planechase|53|U|{R}|Creature - Elemental Shaman|1|1|When Flamekin Harbinger enters the battlefield, you may search your library for an Elemental card, reveal it, then shuffle your library and put that card on top of it.|
Flametongue Kavu|Planechase|54|U|{3}{R}|Creature - Kavu|4|2|When Flametongue Kavu enters the battlefield, it deals 4 damage to target creature.|
Furnace of Rath|Planechase|55|R|{1}{R}{R}{R}|Enchantment|||If a source would deal damage to a creature or player, it deals double that damage to that creature or player instead.|
@@ -18893,7 +18893,7 @@ Relentless Assault|Planechase|62|R|{2}{R}{R}|Sorcery|||Untap all creatures that
Rockslide Elemental|Planechase|63|U|{2}{R}|Creature - Elemental|1|1|First strike$Whenever another creature dies, you may put a +1/+1 counter on Rockslide Elemental.|
Rolling Thunder|Planechase|64|C|{X}{R}{R}|Sorcery|||Rolling Thunder deals X damage divided as you choose among any number of target creatures and/or players.|
Rorix Bladewing|Planechase|65|R|{3}{R}{R}{R}|Legendary Creature - Dragon|6|5|Flying, haste|
-Smokebraider|Planechase|66|C|{1}{R}|Creature - Elemental Shaman|1|1|{tap}: Add two mana in any combination of colors to your mana pool. Spend this mana only to cast Elemental spells or activate abilities of Elementals.|
+Smokebraider|Planechase|66|C|{1}{R}|Creature - Elemental Shaman|1|1|{tap}: Add two mana in any combination of colors. Spend this mana only to cast Elemental spells or activate abilities of Elementals.|
Taurean Mauler|Planechase|67|R|{2}{R}|Creature - Shapeshifter|2|2|Changeling (This card is every creature type at all times.)$Whenever an opponent casts a spell, you may put a +1/+1 counter on Taurean Mauler.|
Beast Hunt|Planechase|68|C|{3}{G}|Sorcery|||Reveal the top three cards of your library. Put all creature cards revealed this way into your hand and the rest into your graveyard.|
Briarhorn|Planechase|69|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.)|
@@ -18914,13 +18914,13 @@ Verdant Force|Planechase|81|R|{5}{G}{G}{G}|Creature - Elemental|7|7|At the begin
Boros Swiftblade|Planechase|82|U|{R}{W}|Creature - Human Soldier|1|2|Double strike|
Branching Bolt|Planechase|83|C|{1}{R}{G}|Instant|||Choose one or both - Branching Bolt deals 3 damage to target creature with flying; and/or Branching Bolt deals 3 damage to target creature without flying.|
Bull Cerodon|Planechase|84|U|{4}{R}{W}|Creature - Beast|5|5|Vigilance, haste|
-Captain's Maneuver|Planechase|85|U|{X}{R}{W}|Instant|||The next X damage that would be dealt to target creature or player this turn is dealt to another target creature or player instead.|
+Captain's Maneuver|Planechase|85|U|{X}{R}{W}|Instant|||The next X damage that would be dealt to any target this turn is dealt to another any target instead.|
Cerodon Yearling|Planechase|86|C|{R}{W}|Creature - Beast|2|2|Vigilance, haste|
Fires of Yavimaya|Planechase|87|U|{1}{R}{G}|Enchantment|||Creatures you control have haste.$Sacrifice Fires of Yavimaya: Target creature gets +2/+2 until end of turn.|
Glory of Warfare|Planechase|88|R|{2}{R}{W}|Enchantment|||As long as it's your turn, creatures you control get +2/+0.$As long as it's not your turn, creatures you control get +0/+2.|
Hull Breach|Planechase|89|C|{R}{G}|Sorcery|||Choose one - Destroy target artifact; or destroy target enchantment; or destroy target artifact and target enchantment.|
Fabricate|Planechase|9|U|{2}{U}|Sorcery|||Search your library for an artifact card, reveal it, and put it into your hand. Then shuffle your library.|
-Lightning Helix|Planechase|90|U|{R}{W}|Instant|||Lightning Helix deals 3 damage to target creature or player and you gain 3 life.|
+Lightning Helix|Planechase|90|U|{R}{W}|Instant|||Lightning Helix deals 3 damage to any target and you gain 3 life.|
Mage Slayer|Planechase|91|U|{1}{R}{G}|Artifact - Equipment|||Whenever equipped creature attacks, it deals damage equal to its power to defending player.$Equip {3}|
Razia, Boros Archangel|Planechase|92|R|{4}{R}{R}{W}{W}|Legendary Creature - Angel|6|3|Flying, vigilance, haste${tap}: The next 3 damage that would be dealt to target creature you control this turn is dealt to another target creature instead.|
Rumbling Slum|Planechase|93|R|{1}{R}{G}{G}|Creature - Elemental|5|5|At the beginning of your upkeep, Rumbling Slum deals 1 damage to each player.|
@@ -18950,7 +18950,7 @@ Sai of the Shinobi|Planechase 2012 Edition|113|U|{1}|Artifact - Equipment|||Equi
Thran Golem|Planechase 2012 Edition|114|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.|
Whispersilk Cloak|Planechase 2012 Edition|115|U|{3}|Artifact - Equipment|||Equipped creature is unblockable and has shroud.$Equip {2}|
Dimir Aqueduct|Planechase 2012 Edition|116|C||Land|||Dimir Aqueduct enters the battlefield tapped.$When Dimir Aqueduct enters the battlefield, return a land you control to its owner's hand.${tap}: Add {U}{B}.|
-Exotic Orchard|Planechase 2012 Edition|117|R||Land|||{tap}: Add to your mana pool one mana of any color that a land an opponent controls could produce.|
+Exotic Orchard|Planechase 2012 Edition|117|R||Land|||{tap}: Add one mana of any color that a land an opponent controls could produce.|
Graypelt Refuge|Planechase 2012 Edition|118|U||Land|||Graypelt Refuge enters the battlefield tapped.$When Graypelt Refuge enters the battlefield, you gain 1 life.${tap}: Add {G} or {W}.|
Gruul Turf|Planechase 2012 Edition|119|C||Land|||Gruul Turf enters the battlefield tapped.$When Gruul Turf enters the battlefield, return a land you control to its owner's hand.${tap}: Add {R}{G}.|
Spirit Mantle|Planechase 2012 Edition|12|U|{1}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+1 and has protection from creatures.|
@@ -18958,15 +18958,15 @@ Jwar Isle Refuge|Planechase 2012 Edition|120|U||Land|||Jwar Isle Refuge enters t
Kazandu Refuge|Planechase 2012 Edition|121|U||Land|||Kazandu Refuge enters the battlefield tapped.$When Kazandu Refuge enters the battlefield, you gain 1 life.${tap}: Add {R} or {G}.|
Khalni Garden|Planechase 2012 Edition|122|C||Land|||Khalni Garden enters the battlefield tapped.$When Khalni Garden enters the battlefield, put a 0/1 green Plant creature token onto the battlefield.${tap}: Add {G}.|
Krosan Verge|Planechase 2012 Edition|123|U||Land|||Krosan Verge enters the battlefield tapped.${tap}: Add {C}.${2}, {tap}, Sacrifice Krosan Verge: Search your library for a Forest card and a Plains card and put them onto the battlefield tapped. Then shuffle your library.|
-Rupture Spire|Planechase 2012 Edition|124|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.|
+Rupture Spire|Planechase 2012 Edition|124|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.|
Selesnya Sanctuary|Planechase 2012 Edition|125|C||Land|||Selesnya Sanctuary enters the battlefield tapped.$When Selesnya Sanctuary enters the battlefield, return a land you control to its owner's hand.${tap}: Add {G}{W}.|
-Shimmering Grotto|Planechase 2012 Edition|126|C||Land|||{tap}: Add {C}.${1}, {tap}: Add one mana of any color to your mana pool.|
+Shimmering Grotto|Planechase 2012 Edition|126|C||Land|||{tap}: Add {C}.${1}, {tap}: Add one mana of any color.|
Skarrg, the Rage Pits|Planechase 2012 Edition|127|U||Land|||{tap}: Add {C}.${R}{G}, {tap}: Target creature gets +1/+1 and gains trample until end of turn.|
Tainted Isle|Planechase 2012 Edition|128|U||Land|||{tap}: Add {C}.${tap}: Add {U} or {B}. Activate this ability only if you control a Swamp.|
Terramorphic Expanse|Planechase 2012 Edition|129|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.|
Three Dreams|Planechase 2012 Edition|13|R|{4}{W}|Sorcery|||Search your library for up to three Aura cards with different names, reveal them, and put them into your hand. Then shuffle your library.|
Vitu-Ghazi, the City-Tree|Planechase 2012 Edition|130|U||Land|||{tap}: Add {C}.${2}{G}{W}, {tap}: Put a 1/1 green Saproling creature token onto the battlefield.|
-Vivid Creek|Planechase 2012 Edition|131|U||Land|||Vivid Creek enters the battlefield tapped with two charge counters on it.${tap}: Add {U}.${tap}, Remove a charge counter from Vivid Creek: Add one mana of any color to your mana pool.|
+Vivid Creek|Planechase 2012 Edition|131|U||Land|||Vivid Creek enters the battlefield tapped with two charge counters on it.${tap}: Add {U}.${tap}, Remove a charge counter from Vivid Creek: Add one mana of any color.|
Plains|Planechase 2012 Edition|132|L||Basic Land - Plains|||W|
Plains|Planechase 2012 Edition|133|L||Basic Land - Plains|||W|
Plains|Planechase 2012 Edition|134|L||Basic Land - Plains|||W|
@@ -19019,24 +19019,24 @@ Okiba-Gang Shinobi|Planechase 2012 Edition|35|C|{3}{B}{B}|Creature - Rat Ninja|3
Skullsnatcher|Planechase 2012 Edition|36|C|{1}{B}|Creature - Rat Ninja|2|1|Ninjutsu {B} ({B}, Return an unblocked attacker you control to hand: Put this card onto the battlefield from your hand tapped and attacking.)$Whenever Skullsnatcher deals combat damage to a player, exile up to two target cards from that player's graveyard.|
Throat Slitter|Planechase 2012 Edition|37|U|{4}{B}|Creature - Rat Ninja|2|2|Ninjutsu {2}{B} ({2}{B}, Return an unblocked attacker you control to hand: Put this card onto the battlefield from your hand tapped and attacking.)$Whenever Throat Slitter deals combat damage to a player, destroy target nonblack creature that player controls.|
Tormented Soul|Planechase 2012 Edition|38|C|{B}|Creature - Spirit|1|1|Tormented Soul can't block and is unblockable.|
-Arc Trail|Planechase 2012 Edition|39|U|{1}{R}|Sorcery|||Arc Trail deals 2 damage to target creature or player and 1 damage to another target creature or player.|
+Arc Trail|Planechase 2012 Edition|39|U|{1}{R}|Sorcery|||Arc Trail deals 2 damage to any target and 1 damage to another any target.|
Cage of Hands|Planechase 2012 Edition|4|C|{2}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature can't attack or block.${1}{W}: Return Cage of Hands to its owner's hand.|
Beetleback Chief|Planechase 2012 Edition|40|U|{2}{R}{R}|Creature - Goblin Warrior|2|2|When Beetleback Chief enters the battlefield, put two 1/1 red Goblin creature tokens onto the battlefield.|
-Erratic Explosion|Planechase 2012 Edition|41|C|{2}{R}|Sorcery|||Choose target creature or player. Reveal cards from the top of your library until you reveal a nonland card. Erratic Explosion deals damage equal to that card's converted mana cost to that creature or player. Put the revealed cards on the bottom of your library in any order.|
+Erratic Explosion|Planechase 2012 Edition|41|C|{2}{R}|Sorcery|||Choose any target. Reveal cards from the top of your library until you reveal a nonland card. Erratic Explosion deals damage equal to that card's converted mana cost to that creature or player. Put the revealed cards on the bottom of your library in any order.|
Fiery Conclusion|Planechase 2012 Edition|42|C|{1}{R}|Instant|||As an additional cost to cast Fiery Conclusion, sacrifice a creature.$Fiery Conclusion deals 5 damage to target creature.|
Fiery Fall|Planechase 2012 Edition|43|C|{5}{R}|Instant|||Fiery Fall deals 5 damage to target creature.$Basic landcycling {1}{R} ({1}{R}, Discard this card: Search your library for a basic land card, reveal it, and put it into your hand. Then shuffle your library.)|
-Fling|Planechase 2012 Edition|44|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.|
+Fling|Planechase 2012 Edition|44|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 any target.|
Hellion Eruption|Planechase 2012 Edition|45|R|{5}{R}|Sorcery|||Sacrifice all creatures you control, then put that many 4/4 red Hellion creature tokens onto the battlefield.|
Hissing Iguanar|Planechase 2012 Edition|46|C|{2}{R}|Creature - Lizard|3|1|Whenever another creature dies, you may have Hissing Iguanar deal 1 damage to target player.|
Mark of Mutiny|Planechase 2012 Edition|47|U|{2}{R}|Sorcery|||Gain control of target creature until end of turn. Put a +1/+1 counter on it and untap it. That creature gains haste until end of turn. (It can attack and {tap} this turn.)|
Mass Mutiny|Planechase 2012 Edition|48|R|{3}{R}{R}|Sorcery|||For each opponent, gain control of up to one target creature that player controls until end of turn. Untap those creatures. They gain haste until end of turn.|
-Mudbutton Torchrunner|Planechase 2012 Edition|49|C|{2}{R}|Creature - Goblin Warrior|1|1|When Mudbutton Torchrunner dies, it deals 3 damage to target creature or player.|
+Mudbutton Torchrunner|Planechase 2012 Edition|49|C|{2}{R}|Creature - Goblin Warrior|1|1|When Mudbutton Torchrunner dies, it deals 3 damage to any target.|
Celestial Ancient|Planechase 2012 Edition|5|R|{3}{W}{W}|Creature - Elemental|3|3|Flying$Whenever you cast an enchantment spell, put a +1/+1 counter on each creature you control.|
-Preyseizer Dragon|Planechase 2012 Edition|50|R|{4}{R}{R}|Creature - Dragon|4|4|Flying$Devour 2 (As this enters the battlefield, you may sacrifice any number of creatures. This creature enters the battlefield with twice that many +1/+1 counters on it.)$Whenever Preyseizer Dragon attacks, it deals damage to target creature or player equal to the number of +1/+1 counters on Preyseizer Dragon.|
+Preyseizer Dragon|Planechase 2012 Edition|50|R|{4}{R}{R}|Creature - Dragon|4|4|Flying$Devour 2 (As this enters the battlefield, you may sacrifice any number of creatures. This creature enters the battlefield with twice that many +1/+1 counters on it.)$Whenever Preyseizer Dragon attacks, it deals damage to any target equal to the number of +1/+1 counters on Preyseizer Dragon.|
Rivals' Duel|Planechase 2012 Edition|51|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.)|
Thorn-Thrash Viashino|Planechase 2012 Edition|52|C|{3}{R}|Creature - Viashino Warrior|2|2|Devour 2 (As this enters the battlefield, you may sacrifice any number of creatures. This creature enters the battlefield with twice that many +1/+1 counters on it.)${G}: Thorn-Thrash Viashino gains trample until end of turn.|
Thunder-Thrash Elder|Planechase 2012 Edition|53|U|{2}{R}|Creature - Viashino Warrior|1|1|Devour 3 (As this enters the battlefield, you may sacrifice any number of creatures. This creature enters the battlefield with three times that many +1/+1 counters on it.)|
-Warstorm Surge|Planechase 2012 Edition|54|R|{5}{R}|Enchantment|||Whenever a creature enters the battlefield under your control, it deals damage equal to its power to target creature or player.|
+Warstorm Surge|Planechase 2012 Edition|54|R|{5}{R}|Enchantment|||Whenever a creature enters the battlefield under your control, it deals damage equal to its power to any target.|
Aura Gnarlid|Planechase 2012 Edition|55|C|{2}{G}|Creature - Beast|2|2|Creatures with power less than Aura Gnarlid's power can't block it.$Aura Gnarlid gets +1/+1 for each Aura on the battlefield.|
Awakening Zone|Planechase 2012 Edition|56|R|{2}{G}|Enchantment|||At the beginning of your upkeep, you may put a 0/1 colorless Eldrazi Spawn creature token onto the battlefield. It has "Sacrifice this creature: Add {C}."|
Beast Within|Planechase 2012 Edition|57|U|{2}{G}|Instant|||Destroy target permanent. Its controller puts a 3/3 green Beast creature token onto the battlefield.|
@@ -19088,7 +19088,7 @@ Kathari Remnant|Planechase 2012 Edition|98|U|{2}{U}{B}|Creature - Bird Skeleton|
Krond the Dawn-Clad|Planechase 2012 Edition|99|M|{G}{G}{G}{W}{W}{W}|Legendary Creature - Archon|6|6|Flying, vigilance$Whenever Krond the Dawn-Clad attacks, if it's enchanted, exile target permanent.|
Aura Blast|Planeshift|1|C|{1}{W}|Instant|||Destroy target enchantment.$Draw a card.|
March of Souls|Planeshift|10|R|{4}{W}|Sorcery|||Destroy all creatures. They can't be regenerated. For each creature destroyed this way, its controller puts a 1/1 white Spirit creature token with flying onto the battlefield.|
-Darigaaz's Charm|Planeshift|100|U|{B}{R}{G}|Instant|||Choose one - Return target creature card from your graveyard to your hand; or Darigaaz's Charm deals 3 damage to target creature or player; or target creature gets +3/+3 until end of turn.|
+Darigaaz's Charm|Planeshift|100|U|{B}{R}{G}|Instant|||Choose one - Return target creature card from your graveyard to your hand; or Darigaaz's Charm deals 3 damage to any target; or target creature gets +3/+3 until end of turn.|
Daring Leap|Planeshift|101|C|{1}{W}{U}|Instant|||Target creature gets +1/+1 and gains flying and first strike until end of turn.|
Destructive Flow|Planeshift|102|R|{B}{R}{G}|Enchantment|||At the beginning of each player's upkeep, that player sacrifices a nonbasic land.|
Doomsday Specter|Planeshift|103|R|{2}{U}{B}|Creature - Specter|2|3|Flying$When Doomsday Specter enters the battlefield, return a blue or black creature you control to its owner's hand.$Whenever Doomsday Specter deals combat damage to a player, look at that player's hand and choose a card from it. The player discards that card.|
@@ -19123,16 +19123,16 @@ Treva's Charm|Planeshift|129|U|{G}{W}{U}|Instant|||Choose one - Destroy target e
Pollen Remedy|Planeshift|13|C|{W}|Instant|||Kicker-Sacrifice a land. (You may sacrifice a land in addition to any other costs as you cast this spell.)$Prevent the next 3 damage that would be dealt this turn to any number of target creatures and/or players, divided as you choose. If Pollen Remedy was kicked, prevent the next 6 damage this way instead.|
Urza's Guilt|Planeshift|130|R|{2}{U}{B}|Sorcery|||Each player draws two cards, then discards three cards, then loses 4 life.|
Draco|Planeshift|131|R|{16}|Artifact Creature - Dragon|9|9|Domain - Draco costs {2} less to cast for each basic land type among lands you control.$Flying$Domain - At the beginning of your upkeep, sacrifice Draco unless you pay {1}0. This cost is reduced by {2} for each basic land type among lands you control.|
-Mana Cylix|Planeshift|132|U|{1}|Artifact|||{1}, {tap}: Add one mana of any color to your mana pool.|
+Mana Cylix|Planeshift|132|U|{1}|Artifact|||{1}, {tap}: Add one mana of any color.|
Skyship Weatherlight|Planeshift|133|R|{4}|Legendary Artifact|||When Skyship Weatherlight enters the battlefield, search your library for any number of artifact and/or creature cards and exile them. Then shuffle your library.${4}, {tap}: Choose a card at random that was exiled with Skyship Weatherlight. Put that card into its owner's hand.|
-Star Compass|Planeshift|134|U|{2}|Artifact|||Star Compass enters the battlefield tapped.${tap}: Add to your mana pool one mana of any color that a basic land you control could produce.|
+Star Compass|Planeshift|134|U|{2}|Artifact|||Star Compass enters the battlefield tapped.${tap}: Add one mana of any color that a basic land you control could produce.|
Stratadon|Planeshift|135|U|{10}|Artifact Creature - Beast|5|5|Domain - Stratadon costs {1} less to cast for each basic land type among lands you control.$Trample|
Crosis's Catacombs|Planeshift|136|U||Land - Lair|||When Crosis's Catacombs enters the battlefield, sacrifice it unless you return a non-Lair land you control to its owner's hand.${tap}: Add {U}, {B}, or {R}.|
Darigaaz's Caldera|Planeshift|137|U||Land - Lair|||When Darigaaz's Caldera enters the battlefield, sacrifice it unless you return a non-Lair land you control to its owner's hand.${tap}: Add {B}, {R}, or {G}.|
Dromar's Cavern|Planeshift|138|U||Land - Lair|||When Dromar's Cavern enters the battlefield, sacrifice it unless you return a non-Lair land you control to its owner's hand.${tap}: Add {W}, {U}, or {B}.|
-Forsaken City|Planeshift|139|R||Land|||Forsaken City doesn't untap during your untap step.$At the beginning of your upkeep, you may exile a card from your hand. If you do, untap Forsaken City.${tap}: Add one mana of any color to your mana pool.|
+Forsaken City|Planeshift|139|R||Land|||Forsaken City doesn't untap during your untap step.$At the beginning of your upkeep, you may exile a card from your hand. If you do, untap Forsaken City.${tap}: Add one mana of any color.|
Samite Elder|Planeshift|14|R|{2}{W}|Creature - Human Cleric|1|2|{tap}: Creatures you control gain protection from the colors of target permanent you control until end of turn.|
-Meteor Crater|Planeshift|140|R||Land|||{tap}: Choose a color of a permanent you control. Add one mana of that color to your mana pool.|
+Meteor Crater|Planeshift|140|R||Land|||{tap}: Choose a color of a permanent you control. Add one mana of that color.|
Rith's Grove|Planeshift|141|U||Land - Lair|||When Rith's Grove enters the battlefield, sacrifice it unless you return a non-Lair land you control to its owner's hand.${tap}: Add {R}, {G}, or {W}.|
Terminal Moraine|Planeshift|142|U||Land|||{tap}: Add {C}.${2}, {tap}, Sacrifice Terminal Moraine: Search your library for a basic land card and put that card onto the battlefield tapped. Then shuffle your library.|
Treva's Ruins|Planeshift|143|U||Land - Lair|||When Treva's Ruins enters the battlefield, sacrifice it unless you return a non-Lair land you control to its owner's hand.${tap}: Add {G}, {W}, or {U}.|
@@ -19184,7 +19184,7 @@ Slay|Planeshift|55|U|{2}{B}|Instant|||Destroy target green creature. It can't be
Volcano Imp|Planeshift|56|C|{3}{B}|Creature - Imp|2|2|Flying$${1}{R}: Volcano Imp gains first strike until end of turn.|
Warped Devotion|Planeshift|57|U|{2}{B}|Enchantment|||Whenever a permanent is returned to a player's hand, that player discards a card.|
Caldera Kavu|Planeshift|58|C|{2}{R}|Creature - Kavu|2|2|{1}{B}: Caldera Kavu gets +1/+1 until end of turn.${G}: Caldera Kavu becomes the color of your choice until end of turn.|
-Deadapult|Planeshift|59|R|{2}{R}|Enchantment|||{R}, Sacrifice a Zombie: Deadapult deals 2 damage to target creature or player.|
+Deadapult|Planeshift|59|R|{2}{R}|Enchantment|||{R}, Sacrifice a Zombie: Deadapult deals 2 damage to any target.|
Heroic Defiance|Planeshift|6|C|{1}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +3/+3 unless it shares a color with the most common color among all permanents or a color tied for most common.|
Flametongue Kavu|Planeshift|60|U|{3}{R}|Creature - Kavu|4|2|When Flametongue Kavu enters the battlefield, it deals 4 damage to target creature.|
Goblin Game|Planeshift|61|R|{5}{R}{R}|Sorcery|||Each player hides at least one item, then all players reveal them simultaneously. Each player loses life equal to the number of items he or she revealed. The player who revealed the fewest items then loses half his or her life, rounded up. If two or more players are tied for fewest, each loses half his or her life, rounded up.|
@@ -19192,7 +19192,7 @@ Implode|Planeshift|62|U|{4}{R}|Sorcery|||Destroy target land.$$Draw a card.|
Insolence|Planeshift|63|C|{2}{R}|Enchantment - Aura|||Enchant creature$Whenever enchanted creature becomes tapped, Insolence deals 2 damage to that creature's controller.|
Kavu Recluse|Planeshift|64|C|{2}{R}|Creature - Kavu|2|2|{tap}: Target land becomes a Forest until end of turn.|
Keldon Mantle|Planeshift|65|C|{1}{R}|Enchantment - Aura|||Enchant creature${B}: Regenerate enchanted creature.${R}: Enchanted creature gets +1/+0 until end of turn.${G}: Enchanted creature gains trample until end of turn.|
-Magma Burst|Planeshift|66|C|{3}{R}|Instant|||Kicker-Sacrifice two lands. (You may sacrifice two lands in addition to any other costs as you cast this spell.)$Magma Burst deals 3 damage to target creature or player. If Magma Burst was kicked, it deals 3 damage to another target creature or player.|
+Magma Burst|Planeshift|66|C|{3}{R}|Instant|||Kicker-Sacrifice two lands. (You may sacrifice two lands in addition to any other costs as you cast this spell.)$Magma Burst deals 3 damage to any target. If Magma Burst was kicked, it deals 3 damage to another any target.|
Mire Kavu|Planeshift|67|C|{3}{R}|Creature - Kavu|3|2|Mire Kavu gets +1/+1 as long as you control a Swamp.|
Mogg Jailer|Planeshift|68|U|{1}{R}|Creature - Goblin|2|2|Mogg Jailer can't attack if defending player controls an untapped creature with power 2 or less.|
Mogg Sentry|Planeshift|69|R|{R}|Creature - Goblin Warrior|1|1|Whenever an opponent casts a spell, Mogg Sentry gets +2/+2 until end of turn.|
@@ -19211,19 +19211,19 @@ Honorable Scout|Planeshift|8|C|{W}|Creature - Human Soldier Scout|1|1|When Honor
Gaea's Herald|Planeshift|80|R|{1}{G}|Creature - Elf|1|1|Creature spells can't be countered.|
Gaea's Might|Planeshift|81|C|{G}|Instant|||Domain - Target creature gets +1/+1 until end of turn for each basic land type among lands you control.|
Magnigoth Treefolk|Planeshift|82|R|{4}{G}|Creature - Treefolk|2|6|Domain - For each basic land type among lands you control, Magnigoth Treefolk has landwalk of that type.|
-Mirrorwood Treefolk|Planeshift|83|U|{3}{G}|Creature - Treefolk|2|4|{2}{R}{W}: The next time damage would be dealt to Mirrorwood Treefolk this turn, that damage is dealt to target creature or player instead.|
-Multani's Harmony|Planeshift|84|U|{G}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{tap}: Add one mana of any color to your mana pool."|
+Mirrorwood Treefolk|Planeshift|83|U|{3}{G}|Creature - Treefolk|2|4|{2}{R}{W}: The next time damage would be dealt to Mirrorwood Treefolk this turn, that damage is dealt to any target instead.|
+Multani's Harmony|Planeshift|84|U|{G}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{tap}: Add one mana of any color."|
Nemata, Grove Guardian|Planeshift|85|R|{4}{G}{G}|Legendary Creature - Treefolk|4|5|{2}{G}: Put a 1/1 green Saproling creature token onto the battlefield.$Sacrifice a Saproling: Saproling creatures get +1/+1 until end of turn.|
Planeswalker's Favor|Planeshift|86|R|{2}{G}|Enchantment|||{3}{G}: Target opponent reveals a card at random from his or her hand. Target creature gets +X/+X until end of turn, where X is the revealed card's converted mana cost.|
Primal Growth|Planeshift|87|C|{2}{G}|Sorcery|||Kicker-Sacrifice a creature. (You may sacrifice a creature in addition to any other costs as you cast this spell.)$Search your library for a basic land card, put that card onto the battlefield, then shuffle your library. If Primal Growth was kicked, instead search your library for up to two basic land cards, put them onto the battlefield, then shuffle your library.|
Pygmy Kavu|Planeshift|88|C|{3}{G}|Creature - Kavu|1|2|When Pygmy Kavu enters the battlefield, draw a card for each black creature your opponents control.|
Quirion Dryad|Planeshift|89|R|{1}{G}|Creature - Dryad|1|1|Whenever you cast a white, blue, black, or red spell, put a +1/+1 counter on Quirion Dryad.|
Lashknife Barrier|Planeshift|9|U|{2}{W}|Enchantment|||When Lashknife Barrier enters the battlefield, draw a card.$If a source would deal damage to a creature you control, it deals that much damage minus 1 to that creature instead.|
-Quirion Explorer|Planeshift|90|C|{1}{G}|Creature - Elf Druid Scout|1|1|{tap}: Add to your mana pool one mana of any color that a land an opponent controls could produce.|
+Quirion Explorer|Planeshift|90|C|{1}{G}|Creature - Elf Druid Scout|1|1|{tap}: Add one mana of any color that a land an opponent controls could produce.|
Root Greevil|Planeshift|91|C|{3}{G}|Creature - Beast|2|3|{2}{G}, {tap}, Sacrifice Root Greevil: Destroy all enchantments of the color of your choice.|
Skyshroud Blessing|Planeshift|92|U|{1}{G}|Instant|||Lands gain shroud until end of turn. (They can't be the targets of spells or abilities.)$Draw a card.|
Stone Kavu|Planeshift|93|C|{4}{G}|Creature - Kavu|3|3|{R}: Stone Kavu gets +1/+0 until end of turn.${W}: Stone Kavu gets +0/+1 until end of turn.|
-Thornscape Battlemage|Planeshift|94|U|{2}{G}|Creature - Elf Wizard|2|2|Kicker {R} and/or {W} (You may pay an additional {R} and/or {W} as you cast this spell.)$When Thornscape Battlemage enters the battlefield, if it was kicked with its {R} kicker, it deals 2 damage to target creature or player.$When Thornscape Battlemage enters the battlefield, if it was kicked with its {W} kicker, destroy target artifact.|
+Thornscape Battlemage|Planeshift|94|U|{2}{G}|Creature - Elf Wizard|2|2|Kicker {R} and/or {W} (You may pay an additional {R} and/or {W} as you cast this spell.)$When Thornscape Battlemage enters the battlefield, if it was kicked with its {R} kicker, it deals 2 damage to any target.$When Thornscape Battlemage enters the battlefield, if it was kicked with its {W} kicker, destroy target artifact.|
Thornscape Familiar|Planeshift|95|C|{1}{G}|Creature - Insect|2|1|Red spells and white spells you cast cost {1} less to cast.|
Ancient Spider|Planeshift|96|R|{2}{G}{W}|Creature - Spider|2|5|First strike, reach (This creature can block creatures with flying.)|
Cavern Harpy|Planeshift|97|C|{U}{B}|Creature - Harpy Beast|2|1|Flying$When Cavern Harpy enters the battlefield, return a blue or black creature you control to its owner's hand.$Pay 1 life: Return Cavern Harpy to its owner's hand.|
@@ -19265,14 +19265,14 @@ Skeletal Crocodile|Portal|33|C|{3}{B}|Creature - Crocodile Skeleton|5|1||
Skeletal Snake|Portal|34|C|{1}{B}|Creature - Snake Skeleton|2|1||
Soul Shred|Portal|35|C|{3}{B}{B}|Sorcery|||Soul Shred deals 3 damage to target nonblack creature. You gain 3 life.|
Undying Beast|Portal|36|C|{3}{B}|Creature - Beast|3|2|When Undying Beast dies, put it on top of its owner's library.|
-Vampiric Feast|Portal|37|U|{5}{B}{B}|Sorcery|||Vampiric Feast deals 4 damage to target creature or player and you gain 4 life.|
+Vampiric Feast|Portal|37|U|{5}{B}{B}|Sorcery|||Vampiric Feast deals 4 damage to any target and you gain 4 life.|
Vampiric Touch|Portal|38|C|{2}{B}|Sorcery|||Vampiric Touch deals 2 damage to target opponent and you gain 2 life.|
Virtue's Ruin|Portal|39|U|{2}{B}|Sorcery|||Destroy all white creatures.|
Wicked Pact|Portal|40|R|{1}{B}{B}|Sorcery|||Destroy two target nonblack creatures. You lose 5 life.|
Ancestral Memories|Portal|41|R|{2}{U}{U}{U}|Sorcery|||Look at the top seven cards of your library. Put two of them into your hand and the rest into your graveyard.|
Balance of Power|Portal|42|R|{3}{U}{U}|Sorcery|||If target opponent has more cards in hand than you, draw cards equal to the difference.|
Baleful Stare|Portal|43|U|{2}{U}|Sorcery|||Target opponent reveals his or her hand. You draw a card for each Mountain and red card in it.|
-Capricious Sorcerer|Portal|44|R|{2}{U}|Creature - Human Wizard|1|1|{tap}: Capricious Sorcerer deals 1 damage to target creature or player. Activate this ability only during your turn, before attackers are declared.|
+Capricious Sorcerer|Portal|44|R|{2}{U}|Creature - Human Wizard|1|1|{tap}: Capricious Sorcerer deals 1 damage to any target. Activate this ability only during your turn, before attackers are declared.|
Cloak of Feathers|Portal|45|C|{U}|Sorcery|||Target creature gains flying until end of turn.$$Draw a card.|
Cloud Dragon|Portal|46|R|{5}{U}|Creature - Illusion Dragon|5|4|Flying$Cloud Dragon can block only creatures with flying.|
Cloud Pirates|Portal|47|C|{U}|Creature - Human Pirate|1|1|Flying$Cloud Pirates can block only creatures with flying.|
@@ -19311,7 +19311,7 @@ Withering Gaze|Portal|79|U|{2}{U}|Sorcery|||Target opponent reveals his or her h
Alluring Scent|Portal|80|R|{1}{G}{G}|Sorcery|||All creatures able to block target creature this turn do so.|
Anaconda|Portal|81|U|{3}{G}|Creature - Snake|3|3|Swampwalk (This creature is unblockable as long as defending player controls a Swamp.)|
Anaconda|Portal|82|U|{3}{G}|Creature - Snake|3|3|Swampwalk (This creature is unblockable as long as defending player controls a Swamp.)|
-Bee Sting|Portal|83|U|{3}{G}|Sorcery|||Bee Sting deals 2 damage to target creature or player.|
+Bee Sting|Portal|83|U|{3}{G}|Sorcery|||Bee Sting deals 2 damage to any target.|
Bull Hippo|Portal|84|U|{3}{G}|Creature - Hippo|3|3|Islandwalk|
Charging Rhino|Portal|85|R|{3}{G}{G}|Creature - Rhino|4|4|Charging Rhino can't be blocked by more than one creature.|
Deep Wood|Portal|86|U|{1}{G}|Instant|||Cast Deep Wood only during the declare attackers step and only if you've been attacked this step.$Prevent all damage that would be dealt to you this turn by attacking creatures.|
@@ -19350,8 +19350,8 @@ Whiptail Wurm|Portal|118|U|{6}{G}|Creature - Wurm|8|5||
Willow Dryad|Portal|119|C|{G}|Creature - Dryad|1|1|Forestwalk|
Winter's Grasp|Portal|120|U|{1}{G}{G}|Sorcery|||Destroy target land.|
Wood Elves|Portal|121|R|{2}{G}|Creature - Elf Scout|1|1|When Wood Elves enters the battlefield, search your library for a Forest card and put that card onto the battlefield. Then shuffle your library.|
-Blaze|Portal|122|U|{X}{R}|Sorcery|||Blaze deals X damage to target creature or player.|
-Blaze|Portal|123|U|{X}{R}|Sorcery|||Blaze deals X damage to target creature or player.|
+Blaze|Portal|122|U|{X}{R}|Sorcery|||Blaze deals X damage to any target.|
+Blaze|Portal|123|U|{X}{R}|Sorcery|||Blaze deals X damage to any target.|
Boiling Seas|Portal|124|U|{3}{R}|Sorcery|||Destroy all Islands.|
Burning Cloak|Portal|125|C|{R}|Sorcery|||Target creature gets +2/+0 until end of turn. Burning Cloak deals 2 damage to that creature.|
Craven Giant|Portal|126|C|{2}{R}|Creature - Giant|4|1|Craven Giant can't block.|
@@ -19382,13 +19382,13 @@ Raging Goblin|Portal|150|C|{R}|Creature - Goblin Berserker|1|1|Haste (This cr
Raging Goblin|Portal|151|C|{R}|Creature - Goblin Berserker|1|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)|
Raging Minotaur|Portal|152|C|{2}{R}{R}|Creature - Minotaur Berserker|3|3|Haste|
Rain of Salt|Portal|153|U|{4}{R}{R}|Sorcery|||Destroy two target lands.|
-Scorching Spear|Portal|154|C|{R}|Sorcery|||Scorching Spear deals 1 damage to target creature or player.|
+Scorching Spear|Portal|154|C|{R}|Sorcery|||Scorching Spear deals 1 damage to any target.|
Scorching Winds|Portal|155|U|{R}|Instant|||Cast Scorching Winds only during the declare attackers step and only if you've been attacked this step.$Scorching Winds deals 1 damage to each attacking creature.|
Spitting Earth|Portal|156|C|{1}{R}|Sorcery|||Spitting Earth deals damage to target creature equal to the number of Mountains you control.|
Stone Rain|Portal|157|C|{2}{R}|Sorcery|||Destroy target land.|
Thundermare|Portal|158|R|{5}{R}|Creature - Elemental Horse|5|5|Haste (This creature can attack the turn it comes under your control.)$When Thundermare enters the battlefield, tap all other creatures.|
Volcanic Dragon|Portal|159|R|{4}{R}{R}|Creature - Dragon|4|4|Flying$Haste (This creature can attack and {tap} as soon as it comes under your control.)|
-Volcanic Hammer|Portal|160|C|{1}{R}|Sorcery|||Volcanic Hammer deals 3 damage to target creature or player.|
+Volcanic Hammer|Portal|160|C|{1}{R}|Sorcery|||Volcanic Hammer deals 3 damage to any target.|
Wall of Granite|Portal|161|U|{2}{R}|Creature - Wall|0|7|Defender (This creature can't attack.)|
Winds of Change|Portal|162|R|{R}|Sorcery|||Each player shuffles the cards from his or her hand into his or her library, then draws that many cards.|
Alabaster Dragon|Portal|163|R|{4}{W}{W}|Creature - Dragon|4|4|Flying$When Alabaster Dragon dies, shuffle it into its owner's library.|
@@ -19475,7 +19475,7 @@ Relentless Assault|Portal Second Age|115|R|{2}{R}{R}|Sorcery|||Untap all creatur
Spitting Earth|Portal Second Age|116|C|{1}{R}|Sorcery|||Spitting Earth deals damage to target creature equal to the number of Mountains you control.|
Stone Rain|Portal Second Age|117|C|{2}{R}|Sorcery|||Destroy target land.|
Tremor|Portal Second Age|118|C|{R}|Sorcery|||Tremor deals 1 damage to each creature without flying.|
-Volcanic Hammer|Portal Second Age|119|C|{1}{R}|Sorcery|||Volcanic Hammer deals 3 damage to target creature or player.|
+Volcanic Hammer|Portal Second Age|119|C|{1}{R}|Sorcery|||Volcanic Hammer deals 3 damage to any target.|
Dark Offering|Portal Second Age|12|U|{4}{B}{B}|Sorcery|||Destroy target nonblack creature. You gain 3 life.|
Plated Wurm|Portal Second Age|12|C|{4}{G}|Creature - Wurm|4|5||
Wildfire|Portal Second Age|120|R|{4}{R}{R}|Sorcery|||Each player sacrifices four lands. Wildfire deals 4 damage to each creature.|
@@ -19533,7 +19533,7 @@ Swarm of Rats|Portal Second Age|29|C|{1}{B}|Creature - Rat|*|1|Swarm of Rats's p
Bloodcurdling Scream|Portal Second Age|3|U|{X}{B}|Sorcery|||Target creature gets +X/+0 until end of turn.|
Vampiric Spirit|Portal Second Age|30|R|{2}{B}{B}|Creature - Spirit|4|3|Flying$When Vampiric Spirit enters the battlefield, you lose 4 life.|
Air Elemental|Portal Second Age|31|U|{3}{U}{U}|Creature - Elemental|4|4|Flying|
-Apprentice Sorcerer|Portal Second Age|32|U|{2}{U}|Creature - Human Wizard|1|1|{tap}: Apprentice Sorcerer deals 1 damage to target creature or player. Activate this ability only during your turn, before attackers are declared.|
+Apprentice Sorcerer|Portal Second Age|32|U|{2}{U}|Creature - Human Wizard|1|1|{tap}: Apprentice Sorcerer deals 1 damage to any target. Activate this ability only during your turn, before attackers are declared.|
Armored Galleon|Portal Second Age|33|U|{4}{U}|Creature - Human Pirate|5|4|Armored Galleon can't attack unless defending player controls an Island.|
Coastal Wizard|Portal Second Age|34|R|{2}{U}{U}|Creature - Human Wizard|1|1|{tap}: Return Coastal Wizard and another target creature to their owners' hands. Activate this ability only during your turn, before attackers are declared.|
Dej Vu|Portal Second Age|35|C|{2}{U}|Sorcery|||Return target sorcery card from your graveyard to your hand.|
@@ -19569,7 +19569,7 @@ Wind Sail|Portal Second Age|60|C|{1}{U}|Sorcery|||One or two target creatures ga
Alluring Scent|Portal Second Age|61|R|{1}{G}{G}|Sorcery|||All creatures able to block target creature this turn do so.|
Barbtooth Wurm|Portal Second Age|62|C|{5}{G}|Creature - Wurm|6|4||
Bear Cub|Portal Second Age|63|C|{1}{G}|Creature - Bear|2|2||
-Bee Sting|Portal Second Age|64|U|{3}{G}|Sorcery|||Bee Sting deals 2 damage to target creature or player.|
+Bee Sting|Portal Second Age|64|U|{3}{G}|Sorcery|||Bee Sting deals 2 damage to any target.|
Deathcoil Wurm|Portal Second Age|65|R|{6}{G}{G}|Creature - Wurm|7|6|You may have Deathcoil Wurm assign its combat damage as though it weren't blocked.|
Deep Wood|Portal Second Age|66|U|{1}{G}|Instant|||Cast Deep Wood only during the declare attackers step and only if you've been attacked this step.$Prevent all damage that would be dealt to you this turn by attacking creatures.|
Golden Bear|Portal Second Age|67|C|{3}{G}|Creature - Bear|4|3||
@@ -19597,12 +19597,12 @@ Tree Monkey|Portal Second Age|88|C|{G}|Creature - Ape|1|1|Reach (This creatur
Untamed Wilds|Portal Second Age|89|U|{2}{G}|Sorcery|||Search your library for a basic land card and put that card onto the battlefield. Then shuffle your library.|
Dakmor Plague|Portal Second Age|9|U|{3}{B}{B}|Sorcery|||Dakmor Plague deals 3 damage to each creature and each player.|
Wild Ox|Portal Second Age|90|U|{3}{G}|Creature - Ox|3|3|Swampwalk|
-Blaze|Portal Second Age|91|U|{X}{R}|Sorcery|||Blaze deals X damage to target creature or player.|
+Blaze|Portal Second Age|91|U|{X}{R}|Sorcery|||Blaze deals X damage to any target.|
Brimstone Dragon|Portal Second Age|92|R|{6}{R}{R}|Creature - Dragon|6|6|Flying, haste|
Cunning Giant|Portal Second Age|93|R|{5}{R}|Creature - Giant|4|4|If Cunning Giant is unblocked, you may have it assign its combat damage to a creature defending player controls.|
Earthquake|Portal Second Age|94|R|{X}{R}|Sorcery|||Earthquake deals X damage to each creature without flying and each player.|
Goblin Cavaliers|Portal Second Age|95|C|{2}{R}|Creature - Goblin|3|2||
-Goblin Firestarter|Portal Second Age|96|U|{R}|Creature - Goblin|1|1|Sacrifice Goblin Firestarter: Goblin Firestarter deals 1 damage to target creature or player. Activate this ability only during your turn, before attackers are declared.|
+Goblin Firestarter|Portal Second Age|96|U|{R}|Creature - Goblin|1|1|Sacrifice Goblin Firestarter: Goblin Firestarter deals 1 damage to any target. Activate this ability only during your turn, before attackers are declared.|
Goblin General|Portal Second Age|97|R|{1}{R}{R}|Creature - Goblin Warrior|1|1|Whenever Goblin General attacks, Goblin creatures you control get +1/+1 until end of turn.|
Goblin Glider|Portal Second Age|98|C|{1}{R}|Creature - Goblin|1|1|Flying$Goblin Glider can't block.|
Goblin Lore|Portal Second Age|99|U|{1}{R}|Sorcery|||Draw four cards, then discard three cards at random.|
@@ -19610,7 +19610,7 @@ Alert Shu Infantry|Portal Three Kingdoms|1|U|{2}{W}|Creature - Human Soldier|2|2
Kongming's Contraptions|Portal Three Kingdoms|10|R|{3}{W}|Creature - Human Soldier|2|4|{tap}: Kongming's Contraptions deals 2 damage to target attacking creature. Activate this ability only during the declare attackers step and only if you've been attacked this step.|
Barbarian General|Portal Three Kingdoms|100|U|{4}{R}|Creature - Human Barbarian Soldier|3|2|Horsemanship (This creature can't be blocked except by creatures with horsemanship.)|
Barbarian Horde|Portal Three Kingdoms|101|C|{3}{R}|Creature - Human Barbarian Soldier|3|3||
-Blaze|Portal Three Kingdoms|102|U|{X}{R}|Sorcery|||Blaze deals X damage to target creature or player.|
+Blaze|Portal Three Kingdoms|102|U|{X}{R}|Sorcery|||Blaze deals X damage to any target.|
Burning Fields|Portal Three Kingdoms|103|C|{4}{R}|Sorcery|||Burning Fields deals 5 damage to target opponent.|
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.|
Control of the Court|Portal Three Kingdoms|105|U|{1}{R}|Sorcery|||Draw four cards, then discard three cards at random.|
@@ -19620,8 +19620,8 @@ Diaochan, Artful Beauty|Portal Three Kingdoms|108|R|{3}{R}|Legendary Creature -
Dong Zhou, the Tyrant|Portal Three Kingdoms|109|R|{4}{R}|Legendary Creature - Human Soldier|3|3|When Dong Zhou, the Tyrant enters the battlefield, target creature an opponent controls deals damage equal to its power to that player.|
Liu Bei, Lord of Shu|Portal Three Kingdoms|11|R|{3}{W}{W}|Legendary Creature - Human Soldier|2|4|Horsemanship (This creature can't be blocked except by creatures with horsemanship.)$Liu Bei, Lord of Shu gets +2/+2 as long as you control a permanent named Guan Yu, Sainted Warrior or a permanent named Zhang Fei, Fierce Warrior.|
Eunuchs' Intrigues|Portal Three Kingdoms|110|U|{2}{R}|Sorcery|||Target opponent chooses a creature he or she controls. Other creatures he or she controls can't block this turn.|
-Fire Ambush|Portal Three Kingdoms|111|C|{1}{R}|Sorcery|||Fire Ambush deals 3 damage to target creature or player.|
-Fire Bowman|Portal Three Kingdoms|112|U|{R}|Creature - Human Soldier Archer|1|1|Sacrifice Fire Bowman: Fire Bowman deals 1 damage to target creature or player. Activate this ability only during your turn, before attackers are declared.|
+Fire Ambush|Portal Three Kingdoms|111|C|{1}{R}|Sorcery|||Fire Ambush deals 3 damage to any target.|
+Fire Bowman|Portal Three Kingdoms|112|U|{R}|Creature - Human Soldier Archer|1|1|Sacrifice Fire Bowman: Fire Bowman deals 1 damage to any target. Activate this ability only during your turn, before attackers are declared.|
Imperial Recruiter|Portal Three Kingdoms|113|U|{2}{R}|Creature - Human Advisor|1|1|When Imperial Recruiter enters the battlefield, search your library for a creature card with power 2 or less, reveal it, and put it into your hand. Then shuffle your library.|
Independent Troops|Portal Three Kingdoms|114|C|{1}{R}|Creature - Human Soldier|2|1||
Lu Bu, Master-at-Arms|Portal Three Kingdoms|115|R|{5}{R}|Legendary Creature - Human Soldier Warrior|4|3|Haste; horsemanship (This creature can't be blocked except by creatures with horsemanship.)|
@@ -19744,7 +19744,7 @@ Wu Elite Cavalry|Portal Three Kingdoms|58|C|{3}{U}|Creature - Human Soldier|2|3|
Wu Infantry|Portal Three Kingdoms|59|C|{1}{U}|Creature - Human Soldier|2|1||
Guan Yu, Sainted Warrior|Portal Three Kingdoms|6|R|{3}{W}{W}|Legendary Creature - Human Soldier Warrior|3|5|Horsemanship (This creature can't be blocked except by creatures with horsemanship.)$When Guan Yu, Sainted Warrior is put into your graveyard from the battlefield, you may shuffle Guan Yu into your library.|
Wu Light Cavalry|Portal Three Kingdoms|60|C|{1}{U}|Creature - Human Soldier|1|2|Horsemanship (This creature can't be blocked except by creatures with horsemanship.)|
-Wu Longbowman|Portal Three Kingdoms|61|U|{2}{U}|Creature - Human Soldier Archer|1|1|{tap}: Wu Longbowman deals 1 damage to target creature or player. Activate this ability only during your turn, before attackers are declared.|
+Wu Longbowman|Portal Three Kingdoms|61|U|{2}{U}|Creature - Human Soldier Archer|1|1|{tap}: Wu Longbowman deals 1 damage to any target. Activate this ability only during your turn, before attackers are declared.|
Wu Scout|Portal Three Kingdoms|62|C|{1}{U}|Creature - Human Soldier Scout|1|1|Horsemanship (This creature can't be blocked except by creatures with horsemanship.)$When Wu Scout enters the battlefield, look at target opponent's hand.|
Wu Spy|Portal Three Kingdoms|63|U|{1}{U}|Creature - Human Soldier Rogue|1|1|When Wu Spy enters the battlefield, look at the top two cards of target player's library. Put one of them into his or her graveyard.|
Wu Warship|Portal Three Kingdoms|64|C|{2}{U}|Creature - Human Soldier|3|3|Wu Warship can't attack unless defending player controls an Island.|
@@ -19786,34 +19786,34 @@ Zhang Liao, Hero of Hefei|Portal Three Kingdoms|96|R|{4}{B}{B}|Legendary Creatur
Zodiac Pig|Portal Three Kingdoms|97|U|{3}{B}|Creature - Boar|3|3|Swampwalk|
Zodiac Rat|Portal Three Kingdoms|98|C|{B}|Creature - Rat|1|1|Swampwalk|
Zodiac Snake|Portal Three Kingdoms|99|C|{2}{B}|Creature - Snake|2|2|Swampwalk|
-Grim Lavamancer|Premium Deck Series: Fire and Lightning|1|R|{R}|Creature - Human Wizard|1|1|{R}, {T}, Exile two cards from your graveyard: Grim Lavamancer deals 2 damage to target creature or player.|
+Grim Lavamancer|Premium Deck Series: Fire and Lightning|1|R|{R}|Creature - Human Wizard|1|1|{R}, {T}, Exile two cards from your graveyard: Grim Lavamancer deals 2 damage to any target.|
Jackal Pup|Premium Deck Series: Fire and Lightning|2|U|{R}|Creature - Hound|2|1|Whenever Jackal Pup is dealt damage, it deals that much damage to you.|
-Mogg Fanatic|Premium Deck Series: Fire and Lightning|3|U|{R}|Creature - Goblin|1|1|Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to target creature or player.|
+Mogg Fanatic|Premium Deck Series: Fire and Lightning|3|U|{R}|Creature - Goblin|1|1|Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to any target.|
Spark Elemental|Premium Deck Series: Fire and Lightning|4|U|{R}|Creature - Elemental|3|1|Trample, haste (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. This creature can attack and {T} as soon as it comes under your control.)$At the beginning of the end step, sacrifice Spark Elemental.|
Figure of Destiny|Premium Deck Series: Fire and Lightning|5|R|{RW}|Creature - Kithkin|1|1|{RW}: Figure of Destiny becomes a Kithkin Spirit with base power and toughness 2/2.${RW}{RW}{RW}: If Figure of Destiny is a Spirit, it becomes a Kithkin Spirit Warrior with base power and toughness 4/4.${RW}{RW}{RW}{RW}{RW}{RW}: If Figure of Destiny is a Warrior, it becomes a Kithkin Spirit Warrior Avatar with base power and toughness 8/8, flying, and first strike.|Hellspark Elemental|Premium Deck Series: Fire and Lightning|6|U|{1}{R}|Creature - Elemental|3|1|
Hellspark Elemental|Premium Deck Series: Fire and Lightning|6|U|{1}{R}|Creature - Elemental|3|1|Trample, haste$At the beginning of the end step, sacrifice Hellspark Elemental.$Unearth {1}{R} ({1}{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.)|
Keldon Marauders|Premium Deck Series: Fire and Lightning|7|C|{1}{R}|Creature - Human Warrior|3|3|Vanishing 2 (This permanent enters the battlefield with two time counters on it. At the beginning of your upkeep, remove a time counter from it. When the last is removed, sacrifice it.)$When Keldon Marauders enters the battlefield or leaves the battlefield, it deals 1 damage to target player.|
Mogg Flunkies|Premium Deck Series: Fire and Lightning|8|C|{1}{R}|Creature - Goblin|3|3|Mogg Flunkies can't attack or block alone.|
Cinder Pyromancer|Premium Deck Series: Fire and Lightning|9|C|{2}{R}|Creature - Elemental Shaman|0|1|{T}: Cinder Pyromancer deals 1 damage to target player.$Whenever you cast a red spell, you may untap Cinder Pyromancer.|
-Jaya Ballard, Task Mage|Premium Deck Series: Fire and Lightning|10|R|{1}{R}{R}|Legendary Creature - Human Spellshaper|2|2|{R}, {T}, Discard a card: Destroy target blue permanent.${1}{R}, {T}, Discard a card: Jaya Ballard, Task Mage deals 3 damage to target creature or player. A creature dealt damage this way can't be regenerated this turn.${5}{R}{R}, {T}, Discard a card: Jaya Ballard deals 6 damage to each creature and each player.|
-Vulshok Sorcerer|Premium Deck Series: Fire and Lightning|11|C|{1}{R}{R}|Creature - Human Shaman|1|1|Haste${T}: Vulshok Sorcerer deals 1 damage to target creature or player.|
+Jaya Ballard, Task Mage|Premium Deck Series: Fire and Lightning|10|R|{1}{R}{R}|Legendary Creature - Human Spellshaper|2|2|{R}, {T}, Discard a card: Destroy target blue permanent.${1}{R}, {T}, Discard a card: Jaya Ballard, Task Mage deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.${5}{R}{R}, {T}, Discard a card: Jaya Ballard deals 6 damage to each creature and each player.|
+Vulshok Sorcerer|Premium Deck Series: Fire and Lightning|11|C|{1}{R}{R}|Creature - Human Shaman|1|1|Haste${T}: Vulshok Sorcerer deals 1 damage to any target.|
Ball Lightning|Premium Deck Series: Fire and Lightning|12|R|{R}{R}{R}|Creature - Elemental|6|1|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.)$Haste (This creature can attack and {T} as soon as it comes under your control.)$At the beginning of the end step, sacrifice Ball Lightning.|
Boggart Ram-Gang|Premium Deck Series: Fire and Lightning|13|U|{RG}{RG}{RG}|Creature - Goblin Warrior|3|3|Haste$Wither (This deals damage to creatures in the form of -1/-1 counters.)|
Keldon Champion|Premium Deck Series: Fire and Lightning|14|U|{2}{R}{R}|Creature - Human Barbarian|3|2|Haste$Echo {2}{R}{R} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)$When Keldon Champion enters the battlefield, it deals 3 damage to target player.|
Fire Servant|Premium Deck Series: Fire and Lightning|15|U|{3}{R}{R}|Creature - Elemental|4|3|If a red instant or sorcery spell you control would deal damage, it deals double that damage instead.
-Chain Lightning|Premium Deck Series: Fire and Lightning|16|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.|
-Lightning Bolt|Premium Deck Series: Fire and Lightning|17|C|{R}|Instant|||Lightning Bolt deals 3 damage to target creature or player.|
+Chain Lightning|Premium Deck Series: Fire and Lightning|16|C|{R}|Sorcery|||Chain Lightning deals 3 damage to any target. 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.|
+Lightning Bolt|Premium Deck Series: Fire and Lightning|17|C|{R}|Instant|||Lightning Bolt deals 3 damage to any target.|
Price of Progress|Premium Deck Series: Fire and Lightning|18|U|{1}{R}|Instant|||Price of Progress deals damage to each player equal to twice the number of nonbasic lands that player controls.|
Thunderbolt|Premium Deck Series: Fire and Lightning|19|C|{1}{R}|Instant|||Choose one - Thunderbolt deals 3 damage to target player; or Thunderbolt deals 4 damage to target creature with flying.|
Reverberate|Premium Deck Series: Fire and Lightning|20|R|{R}{R}|Instant|||Copy target instant or sorcery spell. You may choose new targets for the copy.|
Browbeat|Premium Deck Series: Fire and Lightning|21|U|{2}{R}|Instant|||Any player may have Browbeat deal 5 damage to him or her. If no one does, target player draws three cards.|
Flames of the Blood Hand|Premium Deck Series: Fire and Lightning|22|U|{2}{R}|Instant|||Flames of the Blood Hand deals 4 damage to target player. The damage can't be prevented. If that player would gain life this turn, that player gains no life instead.|
-Hammer of Bogardan|Premium Deck Series: Fire and Lightning|23|R|{1}{R}{R}|Sorcery|||Hammer of Bogardan deals 3 damage to target creature or player.${2}{R}{R}{R}: Return Hammer of Bogardan from your graveyard to your hand. Activate this ability only during your upkeep.|
+Hammer of Bogardan|Premium Deck Series: Fire and Lightning|23|R|{1}{R}{R}|Sorcery|||Hammer of Bogardan deals 3 damage to any target.${2}{R}{R}{R}: Return Hammer of Bogardan from your graveyard to your hand. Activate this ability only during your upkeep.|
Pillage|Premium Deck Series: Fire and Lightning|24|U|{1}{R}{R}|Sorcery|||Destroy target artifact or land. It can't be regenerated.|
Sudden Impact|Premium Deck Series: Fire and Lightning|25|U|{3}{R}|Instant|||Sudden Impact deals damage to target player equal to the number of cards in that player's hand.|
-Fireblast|Premium Deck Series: Fire and Lightning|26|C|{4}{R}{R}|Instant|||You may sacrifice two Mountains rather than pay Fireblast's mana cost.$Fireblast deals 4 damage to target creature or player.|
+Fireblast|Premium Deck Series: Fire and Lightning|26|C|{4}{R}{R}|Instant|||You may sacrifice two Mountains rather than pay Fireblast's mana cost.$Fireblast deals 4 damage to any target.|
Fireball|Premium Deck Series: Fire and Lightning|27|U|{X}{R}|Sorcery|||Fireball deals X damage divided evenly, rounded down, among any number of target creatures and/or players.$Fireball costs {1} more to cast for each target beyond the first.|
-Barbarian Ring|Premium Deck Series: Fire and Lightning|28|U||Land|||{T}: Add {R}. Barbarian Ring deals 1 damage to you.$Threshold {R}, {T}, Sacrifice Barbarian Ring: Barbarian Ring deals 2 damage to target creature or player. Activate this ability only if seven or more cards are in your graveyard.|
+Barbarian Ring|Premium Deck Series: Fire and Lightning|28|U||Land|||{T}: Add {R}. Barbarian Ring deals 1 damage to you.$Threshold {R}, {T}, Sacrifice Barbarian Ring: Barbarian Ring deals 2 damage to any target. Activate this ability only if seven or more cards are in your graveyard.|
Ghitu Encampment|Premium Deck Series: Fire and Lightning|29|U||Land|||Ghitu Encampment enters the battlefield tapped.${T}: Add {R}.${1}{R}: Ghitu Encampment becomes a 2/1 red Warrior creature with first strike until end of turn. It's still a land. (It deals combat damage before creatures without first strike.)|
Teetering Peaks|Premium Deck Series: Fire and Lightning|30|C||Land|||Teetering Peaks enters the battlefield tapped.$When Teetering Peaks enters the battlefield, target creature gets +2/+0 until end of turn.${T}: Add {R}.|
Mountain|Premium Deck Series: Fire and Lightning|31|L||Basic Land - Mountain|||R|
@@ -19857,12 +19857,12 @@ Winged Sliver|Premium Deck Series: Slivers|4|C|{1}{U}|Creature - Sliver|1|1|All
Clot Sliver|Premium Deck Series: Slivers|5|C|{1}{B}|Creature - Sliver|1|1|All Slivers have "{2}: Regenerate this permanent."|
Frenzy Sliver|Premium Deck Series: Slivers|6|C|{1}{B}|Creature - Sliver|1|1|All Sliver creatures have frenzy 1. (Whenever a Sliver attacks and isn't blocked, it gets +1/+0 until end of turn.)|
Heart Sliver|Premium Deck Series: Slivers|7|C|{1}{R}|Creature - Sliver|1|1|All Sliver creatures have haste.|
-Gemhide Sliver|Premium Deck Series: Slivers|8|C|{1}{G}|Creature - Sliver|1|1|All Slivers have "{T}: Add one mana of any color to your mana pool."|
+Gemhide Sliver|Premium Deck Series: Slivers|8|C|{1}{G}|Creature - Sliver|1|1|All Slivers have "{T}: Add one mana of any color."|
Muscle Sliver|Premium Deck Series: Slivers|9|C|{1}{G}|Creature - Sliver|1|1|All Sliver creatures get +1/+1.
Quick Sliver|Premium Deck Series: Slivers|10|C|{1}{G}|Creature - Sliver|1|1|Flash$Any player may play Sliver cards as though they had flash.|
Crystalline Sliver|Premium Deck Series: Slivers|11|U|{W}{U}|Creature - Sliver|2|2|All Slivers have shroud. (They can't be the targets of spells or abilities.)|
Hibernation Sliver|Premium Deck Series: Slivers|12|U|{U}{B}|Creature - Sliver|2|2|All Slivers have "Pay 2 life: Return this permanent to its owner's hand."|
-Acidic Sliver|Premium Deck Series: Slivers|13|U|{B}{R}|Creature - Sliver|2|2|All Slivers have "{2}, Sacrifice this permanent: This permanent deals 2 damage to target creature or player."|
+Acidic Sliver|Premium Deck Series: Slivers|13|U|{B}{R}|Creature - Sliver|2|2|All Slivers have "{2}, Sacrifice this permanent: This permanent deals 2 damage to any target."|
Spined Sliver|Premium Deck Series: Slivers|14|U|{R}{G}|Creature - Sliver|2|2|Whenever a Sliver becomes blocked, that Sliver gets +1/+1 until end of turn for each creature blocking it.|
Victual Sliver|Premium Deck Series: Slivers|15|U|{W}{G}|Creature - Sliver|2|2|All Slivers have "{2}, Sacrifice this permanent: You gain 4 life."|
Armor Sliver|Premium Deck Series: Slivers|16|U|{2}{W}|Creature - Sliver|2|2|All Sliver creatures have "{2}: This creature gets +0/+1 until end of turn."|
@@ -19880,12 +19880,12 @@ Distant Melody|Premium Deck Series: Slivers|27|C|{3}{U}|Sorcery|||Choose a creat
Aphetto Dredging|Premium Deck Series: Slivers|28|C|{3}{B}|Sorcery|||Return up to three target creature cards of the creature type of your choice from your graveyard to your hand.|
Coat of Arms|Premium Deck Series: Slivers|29|R|{5}|Artifact|||Each creature gets +1/+1 for each other creature on the battlefield that shares at least one creature type with it. (For example, if two Goblin Warriors and a Goblin Shaman are on the battlefield, each gets +2/+2.)|
Wild Pair|Premium Deck Series: Slivers|30|R|{4}{G}{G}|Enchantment|||Whenever a creature enters the battlefield, if you cast it from your hand, you may search your library for a creature card with the same total power and toughness and put it onto the battlefield. If you do, shuffle your library.|
-Ancient Ziggurat|Premium Deck Series: Slivers|31|U||Land|||{T}: Add one mana of any color to your mana pool. Spend this mana only to cast a creature spell.|
+Ancient Ziggurat|Premium Deck Series: Slivers|31|U||Land|||{T}: Add one mana of any color. Spend this mana only to cast a creature spell.|
Rootbound Crag|Premium Deck Series: Slivers|32|R||Land|||Rootbound Crag enters the battlefield tapped unless you control a Mountain or a Forest.${T}: Add {R} or {G}.|
-Rupture Spire|Premium Deck Series: Slivers|33|C||Land|||Rupture Spire enters the battlefield tapped.$When Rupture Spire enters the battlefield, sacrifice it unless you pay {1}.${T}: Add one mana of any color to your mana pool.|
+Rupture Spire|Premium Deck Series: Slivers|33|C||Land|||Rupture Spire enters the battlefield tapped.$When Rupture Spire enters the battlefield, sacrifice it unless you pay {1}.${T}: Add one mana of any color.|
Terramorphic Expanse|Premium Deck Series: Slivers|34|C||Land|||{T}, Sacrifice Terramorphic Expanse: Search your library for a basic land card and put it onto the battlefield tapped. Then shuffle your library.|
-Vivid Creek|Premium Deck Series: Slivers|35|U||Land|||Vivid Creek enters the battlefield tapped with two charge counters on it.${T}: Add {U}.${T}, Remove a charge counter from Vivid Creek: Add one mana of any color to your mana pool.|
-Vivid Grove|Premium Deck Series: Slivers|36|U||Land|||Vivid Grove enters the battlefield tapped with two charge counters on it.${T}: Add {G}.${T}, Remove a charge counter from Vivid Grove: Add one mana of any color to your mana pool.|
+Vivid Creek|Premium Deck Series: Slivers|35|U||Land|||Vivid Creek enters the battlefield tapped with two charge counters on it.${T}: Add {U}.${T}, Remove a charge counter from Vivid Creek: Add one mana of any color.|
+Vivid Grove|Premium Deck Series: Slivers|36|U||Land|||Vivid Grove enters the battlefield tapped with two charge counters on it.${T}: Add {G}.${T}, Remove a charge counter from Vivid Grove: Add one mana of any color.|
Plains|Premium Deck Series: Slivers|37|L||Basic Land - Plains|||W|
Island|Premium Deck Series: Slivers|38|L||Basic Land - Island|||U|
Swamp|Premium Deck Series: Slivers|39|L||Basic Land - Swamp|||B|
@@ -19921,19 +19921,19 @@ Gleancrawler|Prerelease Events|27|Special|{3}{BG}{BG}{BG}|Creature - Insect Horr
Djinn Illuminatus|Prerelease Events|28|Special|{5}{UR}{UR}|Creature - Djinn|3|5|({U/R} can be paid with either {U} or {R}.)$Flying$Each instant and sorcery spell you cast has replicate. The replicate cost is equal to its mana cost. (When you cast it, copy it for each time you paid its replicate cost. You may choose new targets for the copies.)|
Avatar of Discord|Prerelease Events|29|Special|{BR}{BR}{BR}|Creature - Avatar|5|3|({B/R} can be paid with either {B} or {R}.)$Flying$When Avatar of Discord enters the battlefield, sacrifice it unless you discard two cards.|
Allosaurus Rider|Prerelease Events|30|Special|{5}{G}{G}|Creature - Elf Warrior|1+*|1+*|You may exile two green cards from your hand rather than pay Allosaurus Rider's mana cost.$Allosaurus Rider's power and toughness are each equal to 1 plus the number of lands you control.|
-Lotus Bloom|Prerelease Events|31|Special||Artifact|||Suspend 3 {0} (Rather than cast this card from your hand, pay {0} 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.)${T}, Sacrifice Lotus Bloom: Add three mana of any one color to your mana pool.
+Lotus Bloom|Prerelease Events|31|Special||Artifact|||Suspend 3 {0} (Rather than cast this card from your hand, pay {0} 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.)${T}, Sacrifice Lotus Bloom: Add three mana of any one color.
Oros, the Avenger|Prerelease Events|32|Special|{3}{W}{B}{R}|Legendary Creature - Dragon|6|6|Flying$Whenever Oros, the Avenger deals combat damage to a player, you may pay {2}{W}. If you do, Oros deals 3 damage to each nonwhite creature.|
Korlash, Heir to Blackblade|Prerelease Events|33|Special|{2}{B}{B}|Legendary Creature - Zombie Warrior|*|*|Korlash, Heir to Blackblade's power and toughness are each equal to the number of Swamps you control.${1}{B}: Regenerate Korlash.$Grandeur � Discard another card named Korlash, Heir to Blackblade: Search your library for up to two Swamp cards, put them onto the battlefield tapped, then shuffle your library.|
Wren's Run Packmaster|Prerelease Events|34|Special|{3}{G}|Creature - Elf Warrior|5|5|Champion an Elf (When this creature enters the battlefield, sacrifice it unless you exile another Elf you control. When this creature leaves the battlefield, that card returns to the battlefield.)${2}{G}: Put a 2/2 green Wolf creature token onto the battlefield.$Wolves you control have deathtouch.|
Door of Destinies|Prerelease Events|35|Special|{4}|Artifact|||As Door of Destinies enters the battlefield, choose a creature type.$Whenever you cast a spell of the chosen type, put a charge counter on Door of Destinies.$Creatures you control of the chosen type get +1/+1 for each charge counter on Door of Destinies.|
Demigod of Revenge|Prerelease Events|36|Special|{BR}{BR}{BR}{BR}{BR}|Creature - Spirit Avatar|5|4|Flying$Haste$When you cast Demigod of Revenge, return all cards named Demigod of Revenge from your graveyard to the battlefield.|
Overbeing of Myth|Prerelease Events|37|Special|{GU}{GU}{GU}{GU}{GU}|Creature - Spirit Avatar|*|*|Overbeing of Myth's power and toughness are each equal to the number of cards in your hand.$At the beginning of your draw step, draw an additional card.|
-Ajani Vengeant|Prerelease Events|38|Special|{2}{W}{R}|Legendary 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.|
+Ajani Vengeant|Prerelease Events|38|Special|{2}{W}{R}|Legendary Planeswalker - Ajani|||+1: Target permanent doesn't untap during its controller's next untap step.$?2: Ajani Vengeant deals 3 damage to any target and you gain 3 life.$?7: Destroy all lands target player controls.|
Malfegor|Prerelease Events|39|Special|{2}{B}{B}{R}{R}|Legendary Creature - Demon Dragon|6|6|Flying$When Malfegor enters the battlefield, discard your hand. Each opponent sacrifices a creature for each card discarded this way.|
Dragon Broodmother|Prerelease Events|40|Special|{2}{R}{R}{R}{G}|Creature - Dragon|4|4|Flying$At the beginning of each upkeep, put a 1/1 red and green Dragon creature token with flying and devour 2 onto the battlefield. (As the token enters the battlefield, you may sacrifice any number of creatures. It enters the battlefield with twice that many +1/+1 counters on it.)|
Vampire Nocturnus|Prerelease Events|41|Special|{1}{B}{B}{B}|Creature - Vampire|3|3|Play with the top card of your library revealed.$As long as the top card of your library is black, Vampire Nocturnus and other Vampire creatures you control get +2/+1 and have flying.|
Rampaging Baloths|Prerelease Events|42|Special|{4}{G}{G}|Creature - Beast|6|6|Trample$Landfall � Whenever a land enters the battlefield under your control, you may put a 4/4 green Beast creature token onto the battlefield.|
-Comet Storm|Prerelease Events|43|Special|{X}{R}{R}|Instant|||Multikicker {1} (You may pay an additional {1} any number of times as you cast this spell.)$Choose target creature or player, then choose another target creature or player for each time Comet Storm was kicked. Comet Storm deals X damage to each of them.|
+Comet Storm|Prerelease Events|43|Special|{X}{R}{R}|Instant|||Multikicker {1} (You may pay an additional {1} any number of times as you cast this spell.)$Choose any target, then choose another any target for each time Comet Storm was kicked. Comet Storm deals X damage to each of them.|
Emrakul, the Aeons Torn|Prerelease Events|44|Special|{15}|Legendary Creature - Eldrazi|15|15|Emrakul, the Aeons Torn can't be countered.$When you cast Emrakul, take an extra turn after this one.$Flying, protection from colored spells, annihilator 6$When Emrakul is put into a graveyard from anywhere, its owner shuffles his or her graveyard into his or her library.|
Sun Titan|Prerelease Events|45|Special|{4}{W}{W}|Creature - Giant|6|6|Vigilance$Whenever Sun Titan enters the battlefield or attacks, you may return target permanent card with converted mana cost 3 or less from your graveyard to the battlefield.|
Wurmcoil Engine|Prerelease Events|46|Special|{6}|Artifact Creature - Wurm|6|6|Deathtouch, lifelink$When Wurmcoil Engine dies, put a 3/3 colorless Wurm artifact creature token with deathtouch and a 3/3 colorless Wurm artifact creature token with lifelink onto the battlefield.|
@@ -19954,7 +19954,7 @@ Corpsejack Menace|Prerelease Events|58|Special|{2}{B}{G}|Creature - Fungus|4|4|I
Grove of the Guardian|Prerelease Events|59|Special||Land|||{T}: Add {C}.${3}{G}{W}, {T}, Tap two untapped creatures you control, Sacrifice Grove of the Guardian: Put an 8/8 green and white Elemental creature token with vigilance onto the battlefield.|
Consuming Aberration|Prerelease Events|60|Special|{3}{U}{B}|Creature - Horror|*|*|Consuming Aberration's power and toughness are each equal to the number of cards in your opponents' graveyards.$Whenever you cast a spell, each opponent reveals cards from the top of his or her library until he or she reveals a land card, then puts those cards into his or her graveyard.|
Fathom Mage|Prerelease Events|61|Special|{2}{U}{G}|Creature - Human Wizard|1|1|Evolve (Whenever a creature enters the battlefield under your control, if that creature has greater power or toughness than this creature, put a +1/+1 counter on this creature.)$Whenever a +1/+1 counter is placed on Fathom Mage, you may draw a card.|
-Foundry Champion|Prerelease Events|62|Special|{4}{W}{R}|Creature - Elemental Soldier|4|4When Foundry Champion enters the battlefield, it deals damage to target creature or player equal to the number of creatures you control.${R}: Foundry Champion gets +1/+0 until end of turn.${W}: Foundry Champion gets +0/+1 until end of turn.|
+Foundry Champion|Prerelease Events|62|Special|{4}{W}{R}|Creature - Elemental Soldier|4|4When Foundry Champion enters the battlefield, it deals damage to any target equal to the number of creatures you control.${R}: Foundry Champion gets +1/+0 until end of turn.${W}: Foundry Champion gets +0/+1 until end of turn.|
Rubblehulk|Prerelease Events|63|Special|{4}{R}{G}|Creature - Elemental|*|*|Rubblehulk's power and toughness are each equal to the number of lands you control.$Bloodrush � {1}{R}{G}, Discard Rubblehulk: Target attacking creature gets +X/+X until end of turn, where X is the number of lands you control.|
Treasury Thrull|Prerelease Events|64|Special|{4}{W}{B}|Creature - Thrull|4|4|Extort (Whenever you cast a spell, you may pay {WB}. If you do, each opponent loses 1 life and you gain that much life.)$Whenever Treasury Thrull attacks, you may return target artifact, creature, or enchantment card from your graveyard to your hand.|
Maze's End|Prerelease Events|65|Special||Land|||Maze's End enters the battlefield tapped.${T}: Add {C}.${3}, {T}, Return Maze's End to its owner's hand: Search your library for a Gate card, put it onto the battlefield, then shuffle your library. If you control ten or more Gates with different names, you win the game.|
@@ -19973,7 +19973,7 @@ Nessian Wilds Ravager|Prerelease Events|77|Special|{4}{G}{G}|Creature - Hydra|6|
Dawnbringer Charioteers|Prerelease Events|78|Special|{2}{W}{W}|Creature - Human Soldier|2|4|Flying, lifelink$Heroic � Whenever you cast a spell that targets Dawnbringer Charioteers, put a +1/+1 counter on Dawnbringer Charioteers.|
Scourge of Fleets|Prerelease Events|79|Special|{5}{U}{U}|Creature - Kraken|6|6|When Scourge of Fleets enters the battlefield, return each creature your opponents control with toughness X or less to its owner's hand, where X is the number of Islands you control.|
Doomwake Giant|Prerelease Events|80|Special|{4}{B}|Enchantment Creature - Giant|4|6|Constellation � Whenever Doomwake Giant or another enchantment enters the battlefield under your control, creatures your opponents control get -1/-1 until end of turn.|
-Spawn of Thraxes|Prerelease Events|81|Special|{5}{R}{R}|Creature - Dragon|5|5|Flying$When Spawn of Thraxes enters the battlefield, it deals damage to target creature or player equal to the number of Mountains you control.|
+Spawn of Thraxes|Prerelease Events|81|Special|{5}{R}{R}|Creature - Dragon|5|5|Flying$When Spawn of Thraxes enters the battlefield, it deals damage to any target equal to the number of Mountains you control.|
Heroes' Bane|Prerelease Events|82|Special|{3}{G}{G}|Creature - Hydra|0|0|Heroes' Bane enters the battlefield with four +1/+1 counters on it.${2}{G}{G}: Put X +1/+1 counters on Heroes' Bane, where X is its power.|
Resolute Archangel|Prerelease Events|83|Special|{5}{W}{W}|Creature - Angel|4|4|Flying$When Resolute Archangel enters the battlefield, if your life total is less than your starting life total, it becomes equal to your starting life total.|
Mercurial Pretender|Prerelease Events|84|Special|{4}{U}|Creature - Shapeshifter|0|0|You may have Mercurial Pretender enter the battlefield as a copy of any creature you control except it gains "{2}{U}{U}: Return this creature to its owner's hand."|
@@ -19987,7 +19987,7 @@ Avalanche Tusker|Prerelease Events|91|Special|{2}{G}{U}{R}|Creature - Elephant W
Bloodsoaked Champion|Prerelease Events|92|Special|{B}|Creature - Human Warrior|2|1|Bloodsoaked Champion can't block.$Raid - {1}{B}: Return Bloodsoaked Champion from your graveyard to the battlefield. Activate this ability only if you attacked with a creature this turn.|
Butcher of the Horde|Prerelease Events|93|Special|{1}{R}{W}{B}|Creature - Demon|5|4|Flying$Sacrifice another creature: Butcher of the Horde gains your choice of vigilance, lifelink, or haste until end of turn.|
Crackling Doom|Prerelease Events|94|Special|{R}{W}{B}|Instant|||Crackling Doom deals 2 damage to each opponent. Each opponent sacrifices a creature with the greatest power among creatures he or she controls.|
-Crater's Claws|Prerelease Events|95|Special|{X}{R}|Sorcery|||Crater's Claws deals X damage to target creature or player.$Ferocious - Crater's Claws deals X plus 2 damage to that creature or player instead if you control a creature with power 4 or greater.|
+Crater's Claws|Prerelease Events|95|Special|{X}{R}|Sorcery|||Crater's Claws deals X damage to any target.$Ferocious - Crater's Claws deals X plus 2 damage to that creature or player instead if you control a creature with power 4 or greater.|
Deflecting Palm|Prerelease Events|96|Special|{R}{W}|Instant|||The next time a source of your choice would deal damage to you this turn, prevent that damage. If damage is prevented this way, Deflecting Palm deals that much damage to that source's controller.|
Dig Through Time|Prerelease Events|97|Special|{6}{U}{U}|Instant|||Delve (Each card you exile from your graveyard while casting this spell pays for {1}.)$Look at the top seven cards of your library. Put two of them into your hand and the rest on the bottom of your library in any order.|
Dragon-Style Twins|Prerelease Events|98|Special|{3}{R}{R}|Creature - Human Monk|3|3|Double strike$Prowess (Whenever you cast a noncreature spell, this creature gets +1/+1 until end of turn.)|
@@ -20073,7 +20073,7 @@ Harbinger of the Hunt|Prerelease Events|177|R|{3}{R}{G}|Creature - Dragon|5|3|Fl
Hidden Dragonslayer|Prerelease Events|178|R|{1}{W}|Creature - Human Warrior|2|1|Lifelink$Megamorph {2}{W} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)$When Hidden Dragonslayer is turned face up, destroy target creature with power 4 or greater an opponent controls.|
Icefall Regent|Prerelease Events|179|R|{3}{U}{U}|Creature - Dragon|4|3|Flying$When Icefall Regent enters the battlefield, tap target creature an opponent controls. That creature doesn't untap during its controller's untap step for as long as you control Icefall Regent.$Spells your opponents cast that target Icefall Regent cost {2} more to cast.|
Ire Shaman|Prerelease Events|180|R|{1}{R}|Creature - Orc Shaman|2|1|Ire Shaman can't be blocked except by two or more creatures.$Megamorph {R} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)$When Ire Shaman is turned face up, exile the top card of your library. Until end of turn, you may play that card.|
-Kolaghan's Command|Prerelease Events|181|R|{1}{B}{R}|Instant|||Choose two - Return target creature card from your graveyard to your hand; or Target player discards a card; or Destroy target artifact; or Kolaghan's Command deals 2 damage to target creature or player.|
+Kolaghan's Command|Prerelease Events|181|R|{1}{B}{R}|Instant|||Choose two - Return target creature card from your graveyard to your hand; or Target player discards a card; or Destroy target artifact; or Kolaghan's Command deals 2 damage to any target.|
Living Lore|Prerelease Events|182|R|{3}{U}|Creature - Avatar|*|*|As Living Lore enters the battlefield, exile an instant or sorcery card from your graveyard.$Living Lore's power and toughness are each equal to the exiled card's converted mana cost.$WHenever Living Lore deals combat damage, you may sacrifice it. If you do, you may cast the exiled card without paying its mana cost.|
Myth Realized|Prerelease Events|183|R|Enchantment|||Whenever you cast a noncreature spell, put a lore counter on Myth Realized.${2}{W}: Put a lore counter on Myth Realized.${W}: Until end of turn, Myth Realized becomes a Monk Avatar creature in addition to its other types and gains "This creature's power and toughness are each equal to the number of lore counters on it."|
Necromaster Dragon|Prerelease Events|184|R|{3}{U}{B}|Creature - Dragon|4|4|Flying$Whenever Necromaster Dragon deals combat damage to a player, you may pay {2}. If you do, put a 2/2 black Zombie creature token onto the battlefield and each opponent puts the top two cards of his or her library into his or her graveyard.|
@@ -20099,7 +20099,7 @@ Despoiler of Souls|Prerelease Events|203|R|{B}{B}|Creature - Horror|3|1|Despoile
Dwynen, Gilt-Leaf Daen|Prerelease Events|204|R|{2}{G}{G}|Legendary Creature - Elf Warrior|3|4|Reach$Other Elf creatures you control get +1/+1.$Whenever Dwynen, Gilt-Leaf Daen attacks, you gain 1 life for each attacking Elf you control.|
Embermaw Hellion|Prerelease Events|205|R|{3}{R}{R}|Creature - Hellion|4|5|Trample$If another red source you control would deal damage to a permanent or player, it deals that much damage plus 1 to that permanent or player instead.|
Evolutionary Leap|Prerelease Events|206|R|{1}{G}|Enchantment|||{G}, Sacrifice a creature: Reveal cards from the top of your library until you reveal a creature card. Put that card into your hand and the rest on the bottom of your library in a random order.|
-Exquisite Firecraft|Prerelease Events|207|R|{1}{R}{R}|Sorcery|||Exquisite Firecraft deals 4 damage to target creature or player. $Spell mastery � If there are two or more instant and/or sorcery cards in your graveyard, Exquisite Firecraft can't be countered by spells or abilities.|
+Exquisite Firecraft|Prerelease Events|207|R|{1}{R}{R}|Sorcery|||Exquisite Firecraft deals 4 damage to any target. $Spell mastery � If there are two or more instant and/or sorcery cards in your graveyard, Exquisite Firecraft can't be countered by spells or abilities.|
Gaea's Revenge|Prerelease Events|208|R|{5}{G}{G}|Creature - Elemental|8|5|Gaea's Revenge can't be countered.$Haste$Gaea's Revenge can't be the target of nongreen spells or abilities from nongreen sources.|
Gideon's Phalanx|Prerelease Events|209|R|{5}{W}{W}|Instant|||Put four 2/2 white Knight creature tokens with vigilance onto the battlefield.$Spell mastery — If there are two or more instant and/or sorcery cards in your graveyard, creatures you control gain indestructible until end of turn.|
Gilt-Leaf Winnower|Prerelease Events|210|R|{3}{B}{B}|Creature - Elf Warrior|4|3|Menace (This creature can't be blocked except by two or more creatures.)$When Gilt-Leaf Winnower enters the battlefield, you may destroy target non-Elf creature whose power and toughness aren't equal.|
@@ -20107,7 +20107,7 @@ Goblin Piledriver|Prerelease Events|211|R|{1}{R}|Creature - Goblin Warror|1|2|Pr
Graveblade Marauder|Prerelease Events|212|R|{2}{B}|Creature - Human Warrior|1|4|Deathtouch$Whenever Graveblade Marauder deals combat damage to a player, that player player loses life equal to the number of creature cards in your graveyard.|
Harbinger of the Tides|Prerelease Events|213|R|{U}{U}|Creature - Merfolk Wizard|2|2|You may cast Harbinger of the Tides as though it had flash if you pay {2} more to cast it.$When Harbinger of the Tides enters the battlefield, you may return target tapped creature an opponent controls to its owner's hand.|
Hixus, Prison Warden|Prerelease Events|214|R|{3}{W}{W}|Legendary Creature - Human Soldier|4|4|Flash$Whenever a creature deals combat damage to you, if Hixus, Prison Warden entered the battlefield this turn, exile that creature until Hixus leaves the battlefield.|
-Honored Hierarch|Prerelease Events|215|R|{G}|Creature - Human Druid|1|1|Renown 1 (When this creature deals combat damage to a player, if it isn't renowned, put a +1/+1 counter on it and it becomes renowned.)$As long as Honored Hierarch is renowned, it has vigilance and "{t}: Add one mana of any color to your mana pool."|
+Honored Hierarch|Prerelease Events|215|R|{G}|Creature - Human Druid|1|1|Renown 1 (When this creature deals combat damage to a player, if it isn't renowned, put a +1/+1 counter on it and it becomes renowned.)$As long as Honored Hierarch is renowned, it has vigilance and "{t}: Add one mana of any color."|
Jace, Vryn's Prodigy|Prerelease Events|216|M|{1}{U}|Legendary Creature - Human Wizard|0|2|{T}: Draw a card, then discard a card. If there are five or more cards in your graveyard, exile Jace, Vryn''s Prodigy, then return him to the battefield transformed under his owner's control. |
Knight of the White Orchard|Prerelease Events|217|R|{W}{W}|Creature - Human Knight|2|2|First strike$When Knight of the White Orchid enters the battlefield, if an opponent controls more lands than you, you may search your library for a Plains card, put it onto the battlefield, then shuffle your library.|
Kothophed, Soul Hoarder|Prerelease Events|218|R|{4}{B}{B}|Legendary Creature - Demon|6|6|Flying$Whenever a permanent owned by another player is put into the graveyard from the battlefield, you draw one card and lose 1 life.|
@@ -20120,7 +20120,7 @@ Mizzium Meddler|Prerelease Events|224|R|{2}{U}|Creature - Vedalken Wizard|1|4|Fl
Nissa's Revelation|Prerelease Events|225|R|{5}{G}{G}|Sorcery|||Scry 5, then reveal the top card of your library. If it's a creature card, you draw cards equal to its power and you gain life equal to its toughness.|
Nissa, Vastwood Seer|Prerelease Events|226|M|{2}{G}|Legendary Creature - Elf Scout|2|2|When Nissa, Vastwood Seer enters the battlefield, you may search your library for a basic Forest card, reveal it, put it into your hand, then shuffle your library.$Whenever a land enters the battlefield under your control, if you control seven or more lands, exile Nissa, then return her to the battlefield transformed under her owner's control.|
Outland Colossus|Prerelease Events|227|R|{3}{G}{G}|Creature - Giant|6|6|Renown 6 (When this creature deals combat damage to a player, if it isn't renowned, put six +1/+1 counters on it and it becomes renowned.)$Outland Colossus can't be blocked by more than one creature.|
-Pia and Kiran Nalaar|Prerelease Events|228|R|{2}{R}{R}|Legendary Creature - Human Artificer|2|2|When Pia and Kiran Nalaar enters the battlefield put 2 1/1 colorless Thopter artifact creature tokens with flying onto the battlefield.${2}{R}, Sacrifice an artifact: Pia and Kiran Nalaar deals 2 damage to target creature or player.|
+Pia and Kiran Nalaar|Prerelease Events|228|R|{2}{R}{R}|Legendary Creature - Human Artificer|2|2|When Pia and Kiran Nalaar enters the battlefield put 2 1/1 colorless Thopter artifact creature tokens with flying onto the battlefield.${2}{R}, Sacrifice an artifact: Pia and Kiran Nalaar deals 2 damage to any target.|
Priest of the Blood Rite|Prerelease Events|229|R|{3}{B}{B}|Creature - Human Cleric|2|2|When Priest of the Blood Rite enters the battlefield, put a 5/5 black Demon creature token with flying onto the battlefield.$At the beginning of your upkeep, you lose 2 life.|
Relic Seeker|Prerelease Events|230|R|{1}{W}|Creature - Human Soldier|2|2|Renown 1 (When this creature deals combat damage to a player, if it isn't renowned, put a +1/+1 counter on it and it becomes renowned.)$When Relic Seeker becomes renowned, you may search your library for an Equipment card, reveal it, put it into your hand, then shuffle your library.|
Scab-Clan Berserker|Prerelease Events|231|R|{1}{R}{R}|Creature - Human Berserker|2|2|Haste$Renown 1 (When this creature deals combat damage to a player, if it isn't renowned, put a +1/+1 counter on it and it becomes renowned.)$Whenever an opponent casts a noncreature spell, if Scab-Clan Berserker is renowned, Scab-Clan Berserker deals 2 damage to that player.|
@@ -20131,12 +20131,12 @@ Tragic Arrogance|Prerelease Events|235|R|{3}{W}{W}|Sorcery|||For each player, yo
Vryn Wingmare|Prerelease Events|236|R|{2}{W}|Creature - Pegasus|2|1|Flying$Noncreature spells cost {1} more to cast.|
Willbreaker|Prerelease Events|237|R|{3}{U}{U}|Creature - Human Wizard|2|3|Whenever a creature an opponent controls becomes the target of a spell or ability you control, gain control of that creature for as long as you control Willbreaker.|
Akoum Firebird|Prerelease Events|238|M|{2}{R}{R}|Creature - Phoenix|3|3|Flying, haste$Akoum Firebird attacks each turn if able.$Landfall � Whenever a land enters the battlefield under your control, you may pay {4}{R}{R}. If you do, return Akoum Firebird from your graveyard to the battlefield.|
-Akoum Hellkite|Prerelease Events|239|R|{4}{R}{R}|Creature - Dragon|4|4|Flying$Landfall � Whenever a land enters the battlefield under your control, Akoum Hellkite deals 1 damage to target creature or player. If that land was a Mountain, Akoum Hellkite deals 2 damage to that creature or player instead.|
+Akoum Hellkite|Prerelease Events|239|R|{4}{R}{R}|Creature - Dragon|4|4|Flying$Landfall � Whenever a land enters the battlefield under your control, Akoum Hellkite deals 1 damage to any target. If that land was a Mountain, Akoum Hellkite deals 2 damage to that creature or player instead.|
Aligned Hedron Network|Prerelease Events|240|R|{4}|Artifact|||When Aligned Hedron Network enters the battlefield, exile all creatures with power 5 or greater until Aligned Hedron Network leaves the battlefield. (Those creatures return under their owners' control.)|
-Ally Encampment|Prerelease Events|241|R||Land|||{t}: Add {C}.${t}: Add one mana of any color to your mana pool. Spend this mana only to cast an Ally spell.${1}, {t}, Sacrifice Ally Encampment: Return an Ally you control to its owner's hand.|
+Ally Encampment|Prerelease Events|241|R||Land|||{t}: Add {C}.${t}: Add one mana of any color. Spend this mana only to cast an Ally spell.${1}, {t}, Sacrifice Ally Encampment: Return an Ally you control to its owner's hand.|
Angelic Captain|Prerelease Events|242|R|{3}{R}{W}|Creature - Angel Ally|4|3|Flying$Whenever Angelic Captain attacks, it gets +1/+1 until end of turn for each other attacking Ally.|
-Barrage Tyrant|Prerelease Events|243|R|{4}{R}|Creature - Eldrazi|5|3|Devoid (This card has no color.)${2}{R}, Sacrifice another colorless creature: Barrage Tyrant deals damage equal to the sacrificed creature's power to target creature or player.|
-Beastcaller Savant|Prerelease Events|244|R|{1}{G}|Creature - Elf Shaman Ally|1|1|Haste${T}: Add one mana of any color to your mana pool. Spend this mana only to cast a creature spell.|
+Barrage Tyrant|Prerelease Events|243|R|{4}{R}|Creature - Eldrazi|5|3|Devoid (This card has no color.)${2}{R}, Sacrifice another colorless creature: Barrage Tyrant deals damage equal to the sacrificed creature's power to any target.|
+Beastcaller Savant|Prerelease Events|244|R|{1}{G}|Creature - Elf Shaman Ally|1|1|Haste${T}: Add one mana of any color. Spend this mana only to cast a creature spell.|
Blight Herder|Prerelease Events|245|R|{5}|Creature - Eldrazi Processor|4|5|When you cast Blight Herder, you may put two cards your opponents own from exile into their owners' graveyards. If you do, put three 1/1 colorless Eldrazi Scion creature tokens onto the battlefield. They have "Sacrifice this creature: Add {C}."|
Bring to Light|Prerelease Events|246|R|{3}{G}{U}|Sorcery|||Converge � Search your library for a creature, instant, or sorcery card with converted mana cost less than or equal to the number of colors of mana spent to cast Bring to Light, exile that card, then shuffle your library. You may cast that card without paying its mana cost.|
Brood Butcher|Prerelease Events|247|R|{3}{B}{G}|Creature - Eldrazi Drone|3|3|Devoid (This card has no color.)$When Brood Butcher enters the battlefield, put a 1/1 colorless Eldrazi Scion creature token onto the battlefield. It has "Sacrifice this creature: Add {C}."${B}{G}, Sacrifice a creature: Target creature gets -2/-2 until end of turn.|
@@ -20171,7 +20171,7 @@ Nissa's Renewal|Prerelease Events|275|R|{5}{G}|Sorcery|||Search your library for
Noyan Dar, Roil Shaper|Prerelease Events|276|R|{3}{W}{U}|Legendary Creature - Merfolk Ally|4|4|Whenever you cast an instant or sorcery spell, you may put three +1/+1 counters on target land you control. If you do, that land becomes a 0/0 Elemental creature with haste that's still a land.|
Ob Nixilis Reignited|Prerelease Events|277|M|{3}{B}{B}|Legendary Planeswalker - Nixilis|5|+1: You draw a card and you lose 1 life.$-3: Destroy target creature.$-8: Target opponent gets an emblem with "Whenever a player draws a card, you lose 2 life."|
Oblivion Sower|Prerelease Events|278|M|{6}|Creature - Eldrazi|5|8|When you cast Oblivion Sower, target opponent exiles the top four cards of his or her library, then you may put any number of land cards that player owns from exile onto the battlefield under your control.|
-Omnath, Locus of Rage|Prerelease Events|279|M|{3}{R}{R}{G}{G}|Legendary Creature - Elemental|5|5|Landfall � Whenever a land enters the battlefield under your control, put a 5/5 red and green Elemental creature token onto the battlefield.$Whenever Omnath, Locus of Rage or another Elemental you control dies, Omnath deals 3 damage to target creature or player.|
+Omnath, Locus of Rage|Prerelease Events|279|M|{3}{R}{R}{G}{G}|Legendary Creature - Elemental|5|5|Landfall � Whenever a land enters the battlefield under your control, put a 5/5 red and green Elemental creature token onto the battlefield.$Whenever Omnath, Locus of Rage or another Elemental you control dies, Omnath deals 3 damage to any target.|
Oran-Rief Hydra|Prerelease Events|280|R|{4}{G}{G}|Creature - Hydra|5|5|Trample$Landfall � Whenever a land enters the battlefield under your control, put a +1/+1 counter on Oran-Rief Hydra. If that land is a Forest, put two +1/+1 counters on Oran-Rief Hydra instead.|
Painful Truths|Prerelease Events|281|R|{2}{B}|Sorcery|||Converge � You draw X cards and you lose X life, where X is the number of colors of mana spent to cast Painful Truths.|
Part the Waterveil|Prerelease Events|282|M|{4}{U}{U}|Sorcery|||Take an extra turn after this one. Exile Part the Waterveil.$Awaken 6�{6}{U}{U}{U} (If you cast this spell for {6}{U}{U}{U}, also put six +1/+1 counters on target land you control and it becomes a 0/0 Elemental creature with haste. It's still a land.)|
@@ -20230,7 +20230,7 @@ Glittering Lion|Prophecy|10|U|{2}{W}|Creature - Cat|2|2|Prevent all damage that
Ridgeline Rager|Prophecy|100|C|{2}{R}|Creature - Beast|1|2|{R}: Ridgeline Rager gets +1/+0 until end of turn.|
Scoria Cat|Prophecy|101|U|{3}{R}{R}|Creature - Cat|3|3|Scoria Cat gets +3/+3 as long as you control no untapped lands.|
Search for Survivors|Prophecy|102|R|{2}{R}|Sorcery|||Reorder your graveyard at random. An opponent chooses a card at random in your graveyard. If it's a creature card, put it onto the battlefield. Otherwise, exile it.|
-Searing Wind|Prophecy|103|R|{8}{R}|Instant|||Searing Wind deals 10 damage to target creature or player.|
+Searing Wind|Prophecy|103|R|{8}{R}|Instant|||Searing Wind deals 10 damage to any target.|
Spur Grappler|Prophecy|104|C|{2}{R}|Creature - Beast|2|1|Spur Grappler gets +2/+1 as long as you control no untapped lands.|
Task Mage Assembly|Prophecy|105|R|{2}{R}|Enchantment|||When there are no creatures on the battlefield, sacrifice Task Mage Assembly.${2}: Task Mage Assembly deals 1 damage to target creature. Any player may activate this ability but only any time he or she could cast a sorcery.|
Veteran Brawlers|Prophecy|106|R|{1}{R}|Creature - Human Soldier|4|4|Veteran Brawlers can't attack if defending player controls an untapped land.$Veteran Brawlers can't block if you control an untapped land.|
@@ -20273,7 +20273,7 @@ Keldon Battlewagon|Prophecy|139|R|{5}|Artifact Creature - Juggernaut|0|3|Trample
Mageta's Boon|Prophecy|14|C|{1}{W}|Enchantment - Aura|||Flash$Enchant creature$Enchanted creature gets +1/+2.|
Well of Discovery|Prophecy|140|R|{6}|Artifact|||At the beginning of your end step, if you control no untapped lands, draw a card.|
Well of Life|Prophecy|141|U|{4}|Artifact|||At the beginning of your end step, if you control no untapped lands, you gain 2 life.|
-Rhystic Cave|Prophecy|142|U||Land|||{tap}: Choose a color. Add one mana of that color to your mana pool unless any player pays {1}. Activate this ability only any time you could cast an instant.|
+Rhystic Cave|Prophecy|142|U||Land|||{tap}: Choose a color. Add one mana of that color unless any player pays {1}. Activate this ability only any time you could cast an instant.|
Wintermoon Mesa|Prophecy|143|R||Land|||Wintermoon Mesa enters the battlefield tapped.${tap}: Add {C}.${2}, {tap}, Sacrifice Wintermoon Mesa: Tap two target lands.|
Mercenary Informer|Prophecy|15|R|{2}{W}|Creature - Human Rebel Mercenary|2|1|Mercenary Informer can't be the target of black spells or abilities from black sources.${2}{W}: Put target nontoken Mercenary on the bottom of its owner's library.|
Mine Bearer|Prophecy|16|C|{2}{W}|Creature - Human Soldier|1|1|{tap}, Sacrifice Mine Bearer: Destroy target attacking creature.|
@@ -20288,7 +20288,7 @@ Shield Dancer|Prophecy|23|U|{2}{W}|Creature - Human Rebel|1|3|{2}{W}: The next t
Soul Charmer|Prophecy|24|C|{2}{W}|Creature - Human Rebel|2|2|Whenever Soul Charmer deals combat damage to a creature, you gain 2 life unless that creature's controller pays {2}.|
Sword Dancer|Prophecy|25|U|{1}{W}|Creature - Human Rebel|1|2|{W}{W}: Target attacking creature gets -1/-0 until end of turn.|
Trenching Steed|Prophecy|26|C|{3}{W}|Creature - Horse Rebel|2|3|Sacrifice a land: Trenching Steed gets +0/+3 until end of turn.|
-Troubled Healer|Prophecy|27|C|{2}{W}|Creature - Human Cleric|1|2|Sacrifice a land: Prevent the next 2 damage that would be dealt to target creature or player this turn.|
+Troubled Healer|Prophecy|27|C|{2}{W}|Creature - Human Cleric|1|2|Sacrifice a land: Prevent the next 2 damage that would be dealt to any target this turn.|
Alexi, Zephyr Mage|Prophecy|28|R|{3}{U}|Legendary Creature - Human Spellshaper|3|3|{X}{U}, {tap}, Discard two cards: Return X target creatures to their owners' hands.|
Alexi's Cloak|Prophecy|29|C|{1}{U}|Enchantment - Aura|||Flash$Enchant creature$Enchanted creature has shroud. (It can't be the target of spells or abilities.)|
Avatar of Hope|Prophecy|3|R|{6}{W}{W}|Creature - Avatar|4|9|If you have 3 or less life, Avatar of Hope costs {6} less to cast.$Flying$Avatar of Hope can block any number of creatures.|
@@ -20350,24 +20350,24 @@ Excise|Prophecy|8|C|{X}{W}|Instant|||Exile target attacking creature unless its
Wall of Vipers|Prophecy|80|U|{2}{B}|Creature - Snake Wall|2|4|Defender (This creature can't attack.)${3}: Destroy Wall of Vipers and target creature it's blocking. Any player may activate this ability.|
Whipstitched Zombie|Prophecy|81|C|{1}{B}|Creature - Zombie|2|2|At the beginning of your upkeep, sacrifice Whipstitched Zombie unless you pay {B}.|
Avatar of Fury|Prophecy|82|R|{6}{R}{R}|Creature - Avatar|6|6|If an opponent controls seven or more lands, Avatar of Fury costs {6} less to cast.$Flying${R}: Avatar of Fury gets +1/+0 until end of turn.|
-Barbed Field|Prophecy|83|U|{2}{R}{R}|Enchantment - Aura|||Enchant land$Enchanted land has "{tap}: This land deals 1 damage to target creature or player."|
+Barbed Field|Prophecy|83|U|{2}{R}{R}|Enchantment - Aura|||Enchant land$Enchanted land has "{tap}: This land deals 1 damage to any target."|
Branded Brawlers|Prophecy|84|C|{R}|Creature - Human Soldier|2|2|Branded Brawlers can't attack if defending player controls an untapped land.$Branded Brawlers can't block if you control an untapped land.|
Brutal Suppression|Prophecy|85|U|{R}|Enchantment|||Activated abilities of nontoken Rebels cost an additional "Sacrifice a land" to activate.|
Citadel of Pain|Prophecy|86|U|{2}{R}|Enchantment|||At the beginning of each player's end step, Citadel of Pain deals X damage to that player, where X is the number of untapped lands he or she controls.|
Devastate|Prophecy|87|C|{3}{R}{R}|Sorcery|||Destroy target land. Devastate deals 1 damage to each creature and each player.|
Fault Riders|Prophecy|88|C|{2}{R}|Creature - Human Soldier|2|2|Sacrifice a land: Fault Riders gets +2/+0 and gains first strike until end of turn. Activate this ability only once each turn.|
Fickle Efreet|Prophecy|89|R|{3}{R}|Creature - Efreet|5|2|Whenever Fickle Efreet attacks or blocks, flip a coin at end of combat. If you lose the flip, an opponent gains control of Fickle Efreet.|
-Flowering Field|Prophecy|9|U|{1}{W}|Enchantment - Aura|||Enchant land$Enchanted land has "{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn."|
+Flowering Field|Prophecy|9|U|{1}{W}|Enchantment - Aura|||Enchant land$Enchanted land has "{tap}: Prevent the next 1 damage that would be dealt to any target this turn."|
Flameshot|Prophecy|90|U|{3}{R}|Sorcery|||You may discard a Mountain card rather than pay Flameshot's mana cost.$Flameshot deals 3 damage divided as you choose among one, two, or three target creatures.|
Inflame|Prophecy|91|C|{R}|Instant|||Inflame deals 2 damage to each creature dealt damage this turn.|
Keldon Arsonist|Prophecy|92|U|{2}{R}|Creature - Human Soldier|1|1|{1}, Sacrifice two lands: Destroy target land.|
Keldon Berserker|Prophecy|93|C|{3}{R}|Creature - Human Soldier Berserker|2|3|Whenever Keldon Berserker attacks, if you control no untapped lands, it gets +3/+0 until end of turn.|
Keldon Firebombers|Prophecy|94|R|{3}{R}{R}|Creature - Human Soldier|3|3|When Keldon Firebombers enters the battlefield, each player sacrifices all lands he or she controls except for three.|
-Latulla, Keldon Overseer|Prophecy|95|R|{3}{R}{R}|Legendary Creature - Human Spellshaper|3|3|{X}{R}, {tap}, Discard two cards: Latulla, Keldon Overseer deals X damage to target creature or player.|
+Latulla, Keldon Overseer|Prophecy|95|R|{3}{R}{R}|Legendary Creature - Human Spellshaper|3|3|{X}{R}, {tap}, Discard two cards: Latulla, Keldon Overseer deals X damage to any target.|
Latulla's Orders|Prophecy|96|C|{1}{R}|Enchantment - Aura|||Flash$Enchant creature$Whenever enchanted creature deals combat damage to defending player, you may destroy target artifact that player controls.|
Lesser Gargadon|Prophecy|97|U|{2}{R}{R}|Creature - Beast|6|4|Whenever Lesser Gargadon attacks or blocks, sacrifice a land.|
Panic Attack|Prophecy|98|C|{2}{R}|Sorcery|||Up to three target creatures can't block this turn.|
-Rhystic Lightning|Prophecy|99|C|{2}{R}|Instant|||Rhystic Lightning deals 4 damage to target creature or player unless that creature's controller or that player pays {2}. If he or she does, Rhystic Lightning deals 2 damage to the creature or player.|
+Rhystic Lightning|Prophecy|99|C|{2}{R}|Instant|||Rhystic Lightning deals 4 damage to any target unless that creature's controller or that player pays {2}. If he or she does, Rhystic Lightning deals 2 damage to the creature or player.|
Auratouched Mage|Ravnica: City of Guilds|1|U|{5}{W}|Creature - Human Wizard|3|3|When Auratouched Mage enters the battlefield, search your library for an Aura card that could enchant it. If Auratouched Mage is still on the battlefield, put that Aura card onto the battlefield attached to it. Otherwise, reveal the Aura card and put it into your hand. Then shuffle your library.|
Conclave Phalanx|Ravnica: City of Guilds|10|U|{4}{W}|Creature - Human Soldier|2|4|Convoke (Each creature you tap while casting this spell reduces its cost by {1} or by one mana of that creature's color.)$When Conclave Phalanx enters the battlefield, you gain 1 life for each creature you control.|
Nightmare Void|Ravnica: City of Guilds|100|U|{3}{B}|Sorcery|||Target player reveals his or her hand. You choose a card from it. That player discards that card.$Dredge 2 (If you would draw a card, instead you may put exactly two cards from the top of your library into your graveyard. If you do, return this card from your graveyard to your hand. Otherwise, draw a card.)|
@@ -20388,17 +20388,17 @@ Woebringer Demon|Ravnica: City of Guilds|113|R|{3}{B}{B}|Creature - Demon|4|4|Fl
Barbarian Riftcutter|Ravnica: City of Guilds|114|C|{4}{R}|Creature - Human Barbarian|3|3|{R}, Sacrifice Barbarian Riftcutter: Destroy target land.|
Blockbuster|Ravnica: City of Guilds|115|U|{3}{R}{R}|Enchantment|||{1}{R}, Sacrifice Blockbuster: Blockbuster deals 3 damage to each tapped creature and each player.|
Breath of Fury|Ravnica: City of Guilds|116|R|{2}{R}{R}|Enchantment - Aura|||Enchant creature you control$When enchanted creature deals combat damage to a player, sacrifice it and attach Breath of Fury to a creature you control. If you do, untap all creatures you control and after this phase, there is an additional combat phase.|
-Char|Ravnica: City of Guilds|117|R|{2}{R}|Instant|||Char deals 4 damage to target creature or player and 2 damage to you.|
+Char|Ravnica: City of Guilds|117|R|{2}{R}|Instant|||Char deals 4 damage to any target and 2 damage to you.|
Cleansing Beam|Ravnica: City of Guilds|118|U|{4}{R}|Instant|||Radiance - Cleansing Beam deals 2 damage to target creature and each other creature that shares a color with it.|
Coalhauler Swine|Ravnica: City of Guilds|119|C|{4}{R}{R}|Creature - Boar Beast|4|4|Whenever Coalhauler Swine is dealt damage, it deals that much damage to each player.|
Courier Hawk|Ravnica: City of Guilds|12|C|{1}{W}|Creature - Bird|1|2|Flying, vigilance|
-Dogpile|Ravnica: City of Guilds|120|C|{3}{R}|Instant|||Dogpile deals damage to target creature or player equal to the number of attacking creatures you control.|
+Dogpile|Ravnica: City of Guilds|120|C|{3}{R}|Instant|||Dogpile deals damage to any target equal to the number of attacking creatures you control.|
Excruciator|Ravnica: City of Guilds|121|R|{6}{R}{R}|Creature - Avatar|7|7|Damage that would be dealt by Excruciator can't be prevented.|
Fiery Conclusion|Ravnica: City of Guilds|122|C|{1}{R}|Instant|||As an additional cost to cast Fiery Conclusion, sacrifice a creature.$Fiery Conclusion deals 5 damage to target creature.|
-Flame Fusillade|Ravnica: City of Guilds|123|R|{3}{R}|Sorcery|||Until end of turn, permanents you control gain "{tap}: This permanent deals 1 damage to target creature or player."|
+Flame Fusillade|Ravnica: City of Guilds|123|R|{3}{R}|Sorcery|||Until end of turn, permanents you control gain "{tap}: This permanent deals 1 damage to any target."|
Flash Conscription|Ravnica: City of Guilds|124|U|{5}{R}|Instant|||Untap target creature and gain control of it until end of turn. That creature gains haste until end of turn. If {W} was spent to cast Flash Conscription, the creature gains "Whenever this creature deals combat damage, you gain that much life" until end of turn.|
Frenzied Goblin|Ravnica: City of Guilds|125|U|{R}|Creature - Goblin Berserker|1|1|Whenever Frenzied Goblin attacks, you may pay {R}. If you do, target creature can't block this turn.|
-Galvanic Arc|Ravnica: City of Guilds|126|C|{2}{R}|Enchantment - Aura|||Enchant creature$When Galvanic Arc enters the battlefield, it deals 3 damage to target creature or player.$Enchanted creature has first strike.|
+Galvanic Arc|Ravnica: City of Guilds|126|C|{2}{R}|Enchantment - Aura|||Enchant creature$When Galvanic Arc enters the battlefield, it deals 3 damage to any target.$Enchanted creature has first strike.|
Goblin Fire Fiend|Ravnica: City of Guilds|127|C|{3}{R}|Creature - Goblin Berserker|1|1|Haste$Goblin Fire Fiend must be blocked if able.${R}: Goblin Fire Fiend gets +1/+0 until end of turn.|
Goblin Spelunkers|Ravnica: City of Guilds|128|C|{2}{R}|Creature - Goblin Warrior|2|2|Mountainwalk|
Greater Forgeling|Ravnica: City of Guilds|129|U|{3}{R}{R}|Creature - Elemental|3|4|{1}{R}: Greater Forgeling gets +3/-3 until end of turn.|
@@ -20418,17 +20418,17 @@ Sabertooth Alley Cat|Ravnica: City of Guilds|140|C|{1}{R}{R}|Creature - Cat|2|1|
Seismic Spike|Ravnica: City of Guilds|141|C|{2}{R}{R}|Sorcery|||Destroy target land. Add {R}{R}.|
Sell-Sword Brute|Ravnica: City of Guilds|142|C|{1}{R}|Creature - Human Mercenary|2|2|When Sell-Sword Brute dies, it deals 2 damage to you.|
Smash|Ravnica: City of Guilds|143|C|{2}{R}|Instant|||Destroy target artifact.$Draw a card.|
-Sparkmage Apprentice|Ravnica: City of Guilds|144|C|{1}{R}|Creature - Human Wizard|1|1|When Sparkmage Apprentice enters the battlefield, it deals 1 damage to target creature or player.|
+Sparkmage Apprentice|Ravnica: City of Guilds|144|C|{1}{R}|Creature - Human Wizard|1|1|When Sparkmage Apprentice enters the battlefield, it deals 1 damage to any target.|
Stoneshaker Shaman|Ravnica: City of Guilds|145|U|{2}{R}|Creature - Human Shaman|1|1|At the beginning of each player's end step, that player sacrifices an untapped land.|
Surge of Zeal|Ravnica: City of Guilds|146|C|{R}|Instant|||Radiance - Target creature and each other creature that shares a color with it gain haste until end of turn.|
Torpid Moloch|Ravnica: City of Guilds|147|C|{R}|Creature - Lizard|3|2|Defender (This creature can't attack.)$Sacrifice three lands: Torpid Moloch loses defender until end of turn.|
-Viashino Fangtail|Ravnica: City of Guilds|148|C|{2}{R}{R}|Creature - Viashino Warrior|3|3|{tap}: Viashino Fangtail deals 1 damage to target creature or player.|
+Viashino Fangtail|Ravnica: City of Guilds|148|C|{2}{R}{R}|Creature - Viashino Warrior|3|3|{tap}: Viashino Fangtail deals 1 damage to any target.|
Viashino Slasher|Ravnica: City of Guilds|149|C|{1}{R}|Creature - Viashino Warrior|1|2|{R}: Viashino Slasher gets +1/-1 until end of turn.|
Dromad Purebred|Ravnica: City of Guilds|15|C|{4}{W}|Creature - Camel Beast|1|5|Whenever Dromad Purebred is dealt damage, you gain 1 life.|
Warp World|Ravnica: City of Guilds|150|R|{5}{R}{R}{R}|Sorcery|||Each player shuffles all permanents he or she owns into his or her library, then reveals that many cards from the top of his or her library. Each player puts all artifact, creature, and land cards revealed this way onto the battlefield, then does the same for enchantment cards, then puts all cards revealed this way that weren't put onto the battlefield on the bottom of his or her library.|
War-Torch Goblin|Ravnica: City of Guilds|151|C|{R}|Creature - Goblin Warrior|1|1|{R}, Sacrifice War-Torch Goblin: War-Torch Goblin deals 2 damage to target blocking creature.|
Wojek Embermage|Ravnica: City of Guilds|152|U|{3}{R}|Creature - Human Wizard|1|2|Radiance - {tap}: Wojek Embermage deals 1 damage to target creature and each other creature that shares a color with it.|
-Birds of Paradise|Ravnica: City of Guilds|153|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color to your mana pool.|
+Birds of Paradise|Ravnica: City of Guilds|153|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color.|
Bramble Elemental|Ravnica: City of Guilds|154|C|{3}{G}{G}|Creature - Elemental|4|4|Whenever an Aura becomes attached to Bramble Elemental, put two 1/1 green Saproling creature tokens onto the battlefield.|
Carven Caryatid|Ravnica: City of Guilds|155|U|{1}{G}{G}|Creature - Spirit|2|5|Defender (This creature can't attack.)$When Carven Caryatid enters the battlefield, draw a card.|
Chord of Calling|Ravnica: City of Guilds|156|R|{X}{G}{G}{G}|Instant|||Convoke (Each creature you tap while casting this spell reduces its cost by {1} or by one mana of that creature's color.)$Search your library for a creature card with converted mana cost X or less and put it onto the battlefield. Then shuffle your library.|
@@ -20495,7 +20495,7 @@ Hour of Reckoning|Ravnica: City of Guilds|21|R|{4}{W}{W}{W}|Sorcery|||Convoke (If you would draw a card, instead you may put exactly one card from the top of your library into your graveyard. If you do, return this card from your graveyard to your hand. Otherwise, draw a card.)|
Guardian of Vitu-Ghazi|Ravnica: City of Guilds|212|C|{6}{G}{W}|Creature - Elemental|4|7|Convoke (Each creature you tap while casting this spell reduces its cost by {1} or by one mana of that creature's color.)$Vigilance|
-Lightning Helix|Ravnica: City of Guilds|213|U|{R}{W}|Instant|||Lightning Helix deals 3 damage to target creature or player and you gain 3 life.|
+Lightning Helix|Ravnica: City of Guilds|213|U|{R}{W}|Instant|||Lightning Helix deals 3 damage to any target and you gain 3 life.|
Loxodon Hierarch|Ravnica: City of Guilds|214|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.|
Mindleech Mass|Ravnica: City of Guilds|215|R|{5}{U}{B}{B}|Creature - Horror|6|6|Trample$Whenever Mindleech Mass deals combat damage to a player, you may look at that player's hand. If you do, you may cast a nonland card in it without paying that card's mana cost.|
Moroii|Ravnica: City of Guilds|216|U|{2}{U}{B}|Creature - Vampire|4|4|Flying$At the beginning of your upkeep, you lose 1 life.|
@@ -20509,7 +20509,7 @@ Rally the Righteous|Ravnica: City of Guilds|222|C|{1}{R}{W}|Instant|||Radiance -
Razia, Boros Archangel|Ravnica: City of Guilds|223|R|{4}{R}{R}{W}{W}|Legendary Creature - Angel|6|3|Flying, vigilance, haste${tap}: The next 3 damage that would be dealt to target creature you control this turn is dealt to another target creature instead.|
Razia's Purification|Ravnica: City of Guilds|224|R|{4}{R}{W}|Sorcery|||Each player chooses three permanents he or she controls, then sacrifices the rest.|
Savra, Queen of the Golgari|Ravnica: City of Guilds|225|R|{2}{B}{G}|Legendary Creature - Elf Shaman|2|2|Whenever you sacrifice a black creature, you may pay 2 life. If you do, each other player sacrifices a creature.$Whenever you sacrifice a green creature, you may gain 2 life.|
-Searing Meditation|Ravnica: City of Guilds|226|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.|
+Searing Meditation|Ravnica: City of Guilds|226|R|{1}{R}{W}|Enchantment|||Whenever you gain life, you may pay {2}. If you do, Searing Meditation deals 2 damage to any target.|
Seeds of Strength|Ravnica: City of Guilds|227|C|{G}{W}|Instant|||Target creature gets +1/+1 until end of turn.$Target creature gets +1/+1 until end of turn.$Target creature gets +1/+1 until end of turn.|
Selesnya Evangel|Ravnica: City of Guilds|228|C|{G}{W}|Creature - Elf Shaman|1|2|{1}, {tap}, Tap an untapped creature you control: Put a 1/1 green Saproling creature token onto the battlefield.|
Selesnya Sagittars|Ravnica: City of Guilds|229|U|{3}{G}{W}|Creature - Elf Archer|2|5|Reach (This creature can block creatures with flying.)$Selesnya Sagittars can block an additional creature each combat.|
@@ -20561,7 +20561,7 @@ Oathsworn Giant|Ravnica: City of Guilds|27|U|{4}{W}{W}|Creature - Giant Soldier|
Selesnya Signet|Ravnica: City of Guilds|270|C|{2}|Artifact|||{1}, {tap}: Add {G}{W}.|
Spectral Searchlight|Ravnica: City of Guilds|271|U|{3}|Artifact|||{tap}: Choose a player. That player adds one mana of any color he or she chooses to his or her mana pool.|
Sunforger|Ravnica: City of Guilds|272|R|{3}|Artifact - Equipment|||Equipped creature gets +4/+0.${R}{W}, Unattach Sunforger: Search your library for a red or white instant card with converted mana cost 4 or less and cast that card without paying its mana cost. Then shuffle your library.$Equip {3}|
-Terrarion|Ravnica: City of Guilds|273|C|{1}|Artifact|||Terrarion enters the battlefield tapped.${2}, {tap}, Sacrifice Terrarion: Add two mana in any combination of colors to your mana pool.$When Terrarion is put into a graveyard from the battlefield, draw a card.|
+Terrarion|Ravnica: City of Guilds|273|C|{1}|Artifact|||Terrarion enters the battlefield tapped.${2}, {tap}, Sacrifice Terrarion: Add two mana in any combination of colors.$When Terrarion is put into a graveyard from the battlefield, draw a card.|
Voyager Staff|Ravnica: City of Guilds|274|U|{1}|Artifact|||{2}, Sacrifice Voyager Staff: Exile target creature. Return the exiled card to the battlefield under its owner's control at the beginning of the next end step.|
Boros Garrison|Ravnica: City of Guilds|275|C||Land|||Boros Garrison enters the battlefield tapped.$When Boros Garrison enters the battlefield, return a land you control to its owner's hand.${tap}: Add {R}{W}.|
Dimir Aqueduct|Ravnica: City of Guilds|276|C||Land|||Dimir Aqueduct enters the battlefield tapped.$When Dimir Aqueduct enters the battlefield, return a land you control to its owner's hand.${tap}: Add {U}{B}.|
@@ -20590,7 +20590,7 @@ Swamp|Ravnica: City of Guilds|296|L||Basic Land - Swamp|||B|
Swamp|Ravnica: City of Guilds|297|L||Basic Land - Swamp|||B|
Swamp|Ravnica: City of Guilds|298|L||Basic Land - Swamp|||B|
Mountain|Ravnica: City of Guilds|299|L||Basic Land - Mountain|||R|
-Benevolent Ancestor|Ravnica: City of Guilds|3|C|{2}{W}|Creature - Spirit|0|4|Defender (This creature can't attack.)${tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Benevolent Ancestor|Ravnica: City of Guilds|3|C|{2}{W}|Creature - Spirit|0|4|Defender (This creature can't attack.)${tap}: Prevent the next 1 damage that would be dealt to any target this turn.|
Seed Spark|Ravnica: City of Guilds|30|U|{3}{W}|Instant|||Destroy target artifact or enchantment. If {G} was spent to cast Seed Spark, put two 1/1 green Saproling creature tokens onto the battlefield.|
Mountain|Ravnica: City of Guilds|300|L||Basic Land - Mountain|||R|
Mountain|Ravnica: City of Guilds|301|L||Basic Land - Mountain|||R|
@@ -20630,7 +20630,7 @@ Induce Paranoia|Ravnica: City of Guilds|56|C|{2}{U}{U}|Instant|||Counter target
Lore Broker|Ravnica: City of Guilds|57|U|{1}{U}|Creature - Human Rogue|1|2|{tap}: Each player draws a card, then discards a card.|
Mark of Eviction|Ravnica: City of Guilds|58|U|{U}|Enchantment - Aura|||Enchant creature$At the beginning of your upkeep, return enchanted creature and all Auras attached to that creature to their owners' hands.|
Mnemonic Nexus|Ravnica: City of Guilds|59|U|{3}{U}|Instant|||Each player shuffles his or her graveyard into his or her library.|
-Caregiver|Ravnica: City of Guilds|6|C|{W}|Creature - Human Cleric|1|1|{W}, Sacrifice a creature: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Caregiver|Ravnica: City of Guilds|6|C|{W}|Creature - Human Cleric|1|1|{W}, Sacrifice a creature: Prevent the next 1 damage that would be dealt to any target this turn.|
Muddle the Mixture|Ravnica: City of Guilds|60|C|{U}{U}|Instant|||Counter target instant or sorcery spell.$Transmute {1}{U}{U} ({1}{U}{U}, Discard this card: Search your library for a card with the same converted mana cost as this card, reveal it, and put it into your hand. Then shuffle your library. Transmute only as a sorcery.)|
Peel from Reality|Ravnica: City of Guilds|61|C|{1}{U}|Instant|||Return target creature you control and target creature you don't control to their owners' hands.|
Quickchange|Ravnica: City of Guilds|62|C|{1}{U}|Instant|||Target creature becomes the color or colors of your choice until end of turn.$Draw a card.|
@@ -20679,7 +20679,7 @@ Eyes in the Skies|Return to Ravnica|10|C|{3}{W}|Instant|||Put a 1/1 white Bird c
Minotaur Aggressor|Return to Ravnica|100|U|{6}{R}|Creature - Minotaur Berserker|6|2|First strike, haste|
Mizzium Mortars|Return to Ravnica|101|R|{1}{R}|Sorcery|||Mizzium Mortars deals 4 damage to target creature you don't control.$Overload {3}{R}{R}{R} (You may cast this spell for its overload cost. If you do, change its text by replacing all instances of "target" with "each.")|
Pursuit of Flight|Return to Ravnica|102|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2 and has "{U}: This creature gains flying until end of turn."|
-Pyroconvergence|Return to Ravnica|103|U|{4}{R}|Enchantment|||Whenever you cast a multicolored spell, Pyroconvergence deals 2 damage to target creature or player.|
+Pyroconvergence|Return to Ravnica|103|U|{4}{R}|Enchantment|||Whenever you cast a multicolored spell, Pyroconvergence deals 2 damage to any target.|
Racecourse Fury|Return to Ravnica|104|U|{R}|Enchantment - Aura|||Enchant land$Enchanted land has "{tap}: Target creature gains haste until end of turn."|
Splatter Thug|Return to Ravnica|105|C|{2}{R}|Creature - Human Warrior|2|2|First strike$Unleash (You may have this creature enter the battlefield with a +1/+1 counter on it. It can't block as long as it has a +1/+1 counter on it.)|
Street Spasm|Return to Ravnica|106|U|{X}{R}|Instant|||Street Spasm deals X damage to target creature without flying you don't control.$Overload {X}{X}{R}{R} (You may cast this spell for its overload cost. If you do, change its text by replacing all instances of "target" with "each.")|
@@ -20692,7 +20692,7 @@ Vandalblast|Return to Ravnica|111|U|{R}|Sorcery|||Destroy target artifact you do
Viashino Racketeer|Return to Ravnica|112|C|{2}{R}|Creature - Viashino Rogue|2|1|When Viashino Racketeer enters the battlefield, you may discard a card. If you do, draw a card.|
Aerial Predation|Return to Ravnica|113|C|{2}{G}|Instant|||Destroy target creature with flying. You gain 2 life.|
Archweaver|Return to Ravnica|114|U|{5}{G}{G}|Creature - Spider|5|5|Reach, trample|
-Axebane Guardian|Return to Ravnica|115|C|{2}{G}|Creature - Human Druid|0|3|Defender${tap}: Add X mana in any combination of colors to your mana pool, where X is the number of creatures with defender you control.|
+Axebane Guardian|Return to Ravnica|115|C|{2}{G}|Creature - Human Druid|0|3|Defender${tap}: Add X mana in any combination of colors, where X is the number of creatures with defender you control.|
Axebane Stag|Return to Ravnica|116|C|{6}{G}|Creature - Elk|6|7||
Brushstrider|Return to Ravnica|117|U|{1}{G}|Creature - Beast|3|1|Vigilance|
Centaur's Herald|Return to Ravnica|118|C|{G}|Creature - Elf Scout|0|1|{2}{G}, Sacrifice Centaur's Herald: Put a 3/3 green Centaur creature token onto the battlefield.|
@@ -20709,7 +20709,7 @@ Golgari Decoy|Return to Ravnica|127|U|{3}{G}|Creature - Elf Rogue|2|2|All creatu
Horncaller's Chant|Return to Ravnica|128|C|{7}{G}|Sorcery|||Put a 4/4 green Rhino creature token with trample onto the battlefield, then populate. (Put a token onto the battlefield that's a copy of a creature token you control.)|
Korozda Monitor|Return to Ravnica|129|C|{2}{G}{G}|Creature - Lizard|3|3|Trample$Scavenge {5}{G}{G} ({5}{G}{G}, Exile this card from your graveyard: Put a number of +1/+1 counters equal to this card's power on target creature. Scavenge only as a sorcery.)|
Knightly Valor|Return to Ravnica|13|C|{4}{W}|Enchantment - Aura|||Enchant creature$When Knightly Valor enters the battlefield, put a 2/2 white Knight creature token with vigilance onto the battlefield.$Enchanted creature gets +2/+2 and has vigilance.|
-Mana Bloom|Return to Ravnica|130|R|{X}{G}|Enchantment|||Mana Bloom enters the battlefield with X charge counters on it.$Remove a charge counter from Mana Bloom: Add one mana of any color to your mana pool. Activate this ability only once each turn.$At the beginning of your upkeep, if Mana Bloom has no charge counters on it, return it to its owner's hand.|
+Mana Bloom|Return to Ravnica|130|R|{X}{G}|Enchantment|||Mana Bloom enters the battlefield with X charge counters on it.$Remove a charge counter from Mana Bloom: Add one mana of any color. Activate this ability only once each turn.$At the beginning of your upkeep, if Mana Bloom has no charge counters on it, return it to its owner's hand.|
Oak Street Innkeeper|Return to Ravnica|131|U|{2}{G}|Creature - Elf|1|2|As long as it's not your turn, tapped creatures you control have hexproof.|
Rubbleback Rhino|Return to Ravnica|132|C|{4}{G}|Creature - Rhino|3|4|Hexproof (This creature can't be the target of spells or abilities your opponents control.)|
Savage Surge|Return to Ravnica|133|U|{1}{G}|Instant|||Target creature gets +2/+2 until end of turn. Untap that creature.|
@@ -20767,7 +20767,7 @@ Rest in Peace|Return to Ravnica|18|R|{1}{W}|Enchantment|||When Rest in Peace ent
Mercurial Chemister|Return to Ravnica|180|R|{3}{U}{R}|Creature - Human Wizard|2|3|{U}, {tap}: Draw two cards.${R}, {tap}, Discard a card: Mercurial Chemister deals damage to target creature equal to the discarded card's converted mana cost.|
New Prahv Guildmage|Return to Ravnica|181|U|{W}{U}|Creature - Human Wizard|2|2|{W}{U}: Target creature gains flying until end of turn.${3}{W}{U}: Detain target nonland permanent an opponent controls. (Until your next turn, that permanent can't attack or block and its activated abilities can't be activated.)|
Nivix Guildmage|Return to Ravnica|182|U|{U}{R}|Creature - Human Wizard|2|2|{1}{U}{R}: Draw a card, then discard a card.${2}{U}{R}: Copy target instant or sorcery spell you control. You may choose new targets for the copy.|
-Niv-Mizzet, Dracogenius|Return to Ravnica|183|M|{2}{U}{U}{R}{R}|Legendary Creature - Dragon Wizard|5|5|Flying$Whenever Niv-Mizzet, Dracogenius deals damage to a player, you may draw a card.${U}{R}: Niv-Mizzet, Dracogenius deals 1 damage to target creature or player.|
+Niv-Mizzet, Dracogenius|Return to Ravnica|183|M|{2}{U}{U}{R}{R}|Legendary Creature - Dragon Wizard|5|5|Flying$Whenever Niv-Mizzet, Dracogenius deals damage to a player, you may draw a card.${U}{R}: Niv-Mizzet, Dracogenius deals 1 damage to any target.|
Rakdos Charm|Return to Ravnica|184|U|{B}{R}|Instant|||Choose one - Exile all cards from target player's graveyard; or destroy target artifact; or each creature deals 1 damage to its controller.|
Rakdos Ragemutt|Return to Ravnica|185|U|{3}{B}{R}|Creature - Elemental Hound|3|3|Lifelink, haste|
Rakdos Ringleader|Return to Ravnica|186|U|{4}{B}{R}|Creature - Skeleton Warrior|3|1|First strike$Whenever Rakdos Ringleader deals combat damage to a player, that player discards a card at random.${B}: Regenerate Rakdos Ringleader.|
@@ -20801,7 +20801,7 @@ Selesnya Sentry|Return to Ravnica|21|C|{2}{W}|Creature - Elephant Soldier|3|2|{5
Azor's Elocutors|Return to Ravnica|210|R|{3}{WU}{WU}|Creature - Human Advisor|3|5|At the beginning of your upkeep, put a filibuster counter on Azor's Elocutors. Then if Azor's Elocutors has five or more filibuster counters on it, you win the game.$Whenever a source deals damage to you, remove a filibuster counter from Azor's Elocutors.|
Blistercoil Weird|Return to Ravnica|211|U|{UR}|Creature - Weird|1|1|Whenever you cast an instant or sorcery spell, Blistercoil Weird gets +1/+1 until end of turn. Untap it.|
Cryptborn Horror|Return to Ravnica|212|R|{1}{BR}{BR}|Creature - Horror|0|0|Trample$Cryptborn Horror enters the battlefield with X +1/+1 counters on it, where X is the total life lost by your opponents this turn.|
-Deathrite Shaman|Return to Ravnica|213|R|{BG}|Creature - Elf Shaman|1|2|{tap}: Exile target land card from a graveyard. Add one mana of any color to your mana pool.${B}, {tap}: Exile target instant or sorcery card from a graveyard. Each opponent loses 2 life.${G}, {tap}: Exile target creature card from a graveyard. You gain 2 life.|
+Deathrite Shaman|Return to Ravnica|213|R|{BG}|Creature - Elf Shaman|1|2|{tap}: Exile target land card from a graveyard. Add one mana of any color.${B}, {tap}: Exile target instant or sorcery card from a graveyard. Each opponent loses 2 life.${G}, {tap}: Exile target creature card from a graveyard. You gain 2 life.|
Dryad Militant|Return to Ravnica|214|U|{GW}|Creature - Dryad Soldier|2|1|If an instant or sorcery card would be put into a graveyard from anywhere, exile it instead.|
Frostburn Weird|Return to Ravnica|215|C|{UR}{UR}|Creature - Weird|1|4|{UR}: Frostburn Weird gets +1/-1 until end of turn.|
Golgari Longlegs|Return to Ravnica|216|C|{3}{BG}{BG}|Creature - Insect|5|4||
@@ -20815,7 +20815,7 @@ Slitherhead|Return to Ravnica|222|U|{BG}|Creature - Plant Zombie|1|1|Scavenge {0
Sundering Growth|Return to Ravnica|223|C|{GW}{GW}|Instant|||Destroy target artifact or enchantment, then populate. (Put a token onto the battlefield that's a copy of a creature token you control.)|
Vassal Soul|Return to Ravnica|224|C|{1}{WU}{WU}|Creature - Spirit|2|2|Flying|
Azorius Keyrune|Return to Ravnica|225|U|{3}|Artifact|||{tap}: Add {W} or {U}.${W}{U}: Azorius Keyrune becomes a 2/2 white and blue Bird artifact creature with flying until end of turn.|
-Chromatic Lantern|Return to Ravnica|226|R|{3}|Artifact|||Lands you control have "{tap}: Add one mana of any color to your mana pool."${tap}: Add one mana of any color to your mana pool.|
+Chromatic Lantern|Return to Ravnica|226|R|{3}|Artifact|||Lands you control have "{tap}: Add one mana of any color."${tap}: Add one mana of any color.|
Civic Saber|Return to Ravnica|227|U|{1}|Artifact - Equipment|||Equipped creature gets +1/+0 for each of its colors.$Equip {1}|
Codex Shredder|Return to Ravnica|228|U|{1}|Artifact|||{tap}: Target player puts the top card of his or her library into his or her graveyard.${5}, {tap}, Sacrifice Codex Shredder: Return target card from your graveyard to your hand.|
Golgari Keyrune|Return to Ravnica|229|U|{3}|Artifact|||{tap}: Add {B} or {G}.${B}{G}: Golgari Keyrune becomes a 2/2 black and green Insect artifact creature with deathtouch until end of turn.|
@@ -20840,7 +20840,7 @@ Rogue's Passage|Return to Ravnica|245|U||Land|||{tap}: Add {C}.${4}, {tap}: Targ
Selesnya Guildgate|Return to Ravnica|246|C||Land - Gate|||Selesnya Guildgate enters the battlefield tapped.${tap}: Add {G} or {W}.|
Steam Vents|Return to Ravnica|247|R||Land - Island Mountain|||({tap}: Add {U} or {R}.)$As Steam Vents enters the battlefield, you may pay 2 life. If you don't, Steam Vents enters the battlefield tapped.|
Temple Garden|Return to Ravnica|248|R||Land - Forest Plains|||({tap}: Add {G} or {W}.)$As Temple Garden enters the battlefield, you may pay 2 life. If you don't, Temple Garden enters the battlefield tapped.|
-Transguild Promenade|Return to Ravnica|249|C||Land|||Transguild Promenade enters the battlefield tapped.$When Transguild Promenade enters the battlefield, sacrifice it unless you pay {1}.${tap}: Add one mana of any color to your mana pool.|
+Transguild Promenade|Return to Ravnica|249|C||Land|||Transguild Promenade enters the battlefield tapped.$When Transguild Promenade enters the battlefield, sacrifice it unless you pay {1}.${tap}: Add one mana of any color.|
Sunspire Griffin|Return to Ravnica|25|C|{1}{W}{W}|Creature - Griffin|2|3|Flying|
Plains|Return to Ravnica|250|L||Basic Land - Plains|||W|
Plains|Return to Ravnica|251|L||Basic Land - Plains|||W|
@@ -20932,7 +20932,7 @@ Thrill-Kill Assassin|Return to Ravnica|81|U|{1}{B}|Creature - Human Assassin|1|2
Ultimate Price|Return to Ravnica|82|U|{1}{B}|Instant|||Destroy target monocolored creature.|
Underworld Connections|Return to Ravnica|83|R|{1}{B}{B}|Enchantment - Aura|||Enchant land$Enchanted land has "{tap}, Pay 1 life: Draw a card."|
Zanikev Locust|Return to Ravnica|84|U|{5}{B}|Creature - Insect|3|3|Flying$Scavenge {2}{B}{B} ({2}{B}{B}, Exile this card from your graveyard: Put a number of +1/+1 counters equal to this card's power on target creature. Scavenge only as a sorcery.)|
-Annihilating Fire|Return to Ravnica|85|C|{1}{R}{R}|Instant|||Annihilating Fire deals 3 damage to target creature or player. If a creature dealt damage this way would die this turn, exile it instead.|
+Annihilating Fire|Return to Ravnica|85|C|{1}{R}{R}|Instant|||Annihilating Fire deals 3 damage to any target. If a creature dealt damage this way would die this turn, exile it instead.|
Ash Zealot|Return to Ravnica|86|R|{R}{R}|Creature - Human Warrior|2|2|First strike, haste$Whenever a player casts a spell from a graveyard, Ash Zealot deals 3 damage to that player.|
Batterhorn|Return to Ravnica|87|C|{4}{R}|Creature - Beast|4|3|When Batterhorn enters the battlefield, you may destroy target artifact.|
Bellows Lizard|Return to Ravnica|88|C|{R}|Creature - Lizard|1|1|{1}{R}: Bellows Lizard gets +1/+0 until end of turn.|
@@ -20942,7 +20942,7 @@ Chaos Imps|Return to Ravnica|90|R|{4}{R}{R}|Creature - Imp|6|5|Flying$Unleash (You may cast this spell for its overload cost. If you do, change its text by replacing all instances of "target" with "each.")|
Electrickery|Return to Ravnica|93|C|{R}|Instant|||Electrickery deals 1 damage to target creature you don't control.$Overload {1}{R} (You may cast this spell for its overload cost. If you do, change its text by replacing all instances of "target" with "each.")|
-Explosive Impact|Return to Ravnica|94|C|{5}{R}|Instant|||Explosive Impact deals 5 damage to target creature or player.|
+Explosive Impact|Return to Ravnica|94|C|{5}{R}|Instant|||Explosive Impact deals 5 damage to any target.|
Goblin Rally|Return to Ravnica|95|U|{3}{R}{R}|Sorcery|||Put four 1/1 red Goblin creature tokens onto the battlefield.|
Gore-House Chainwalker|Return to Ravnica|96|C|{1}{R}|Creature - Human Warrior|2|1|Unleash (You may have this creature enter the battlefield with a +1/+1 counter on it. It can't block as long as it has a +1/+1 counter on it.)|
Guild Feud|Return to Ravnica|97|R|{5}{R}|Enchantment|||At the beginning of your upkeep, target opponent reveals the top three cards of his or her library, may put a creature card from among them onto the battlefield, then puts the rest into his or her graveyard. You do the same with the top three cards of your library. If two creatures are put onto the battlefield this way, those creatures fight each other.|
@@ -20993,9 +20993,9 @@ Web|Revised Edition|136|R|{G}|Enchantment - Aura|||Enchant creature (Target a
Wild Growth|Revised Edition|137|C|{G}|Enchantment - Aura|||Enchant land$Whenever enchanted land is tapped for mana, its controller adds {G} to his or her mana pool (in addition to the mana the land produces).|
Atog|Revised Edition|138|C|{1}{R}|Creature - Atog|1|2|Sacrifice an artifact: Atog gets +2/+2 until end of turn.|
Burrowing|Revised Edition|139|U|{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has mountainwalk.|
-Drain Life|Revised Edition|14|C|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Drain Life deals X damage to target creature or player. You gain life equal to the damage dealt, but not more life than the player's life total before Drain Life dealt damage or the creature's toughness.|
+Drain Life|Revised Edition|14|C|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Drain Life deals X damage to any target. You gain life equal to the damage dealt, but not more life than the player's life total before Drain Life dealt damage or the creature's toughness.|
Chaoslace|Revised Edition|140|R|{R}|Instant|||Target spell or permanent becomes red. (Its mana symbols remain unchanged.)|
-Disintegrate|Revised Edition|141|C|{X}{R}|Sorcery|||Disintegrate deals X damage to target creature or player. That creature can't be regenerated this turn. If the creature would die this turn, exile it instead.|
+Disintegrate|Revised Edition|141|C|{X}{R}|Sorcery|||Disintegrate deals X damage to any target. That creature can't be regenerated this turn. If the creature would die this turn, exile it instead.|
Dragon Whelp|Revised Edition|142|U|{2}{R}{R}|Creature - Dragon|2|3|Flying${R}: Dragon Whelp gets +1/+0 until end of turn. If this ability has been activated four or more times this turn, sacrifice Dragon Whelp at the beginning of the next end step.|
Dwarven Warriors|Revised Edition|143|C|{2}{R}|Creature - Dwarf Warrior|1|1|{tap}: Target creature with power 2 or less is unblockable this turn.|
Dwarven Weaponsmith|Revised Edition|144|U|{1}{R}|Creature - Dwarf Artificer|1|1|{tap}, Sacrifice an artifact: Put a +1/+1 counter on target creature. Activate this ability only during your upkeep.|
@@ -21017,21 +21017,21 @@ Hurloon Minotaur|Revised Edition|158|C|{1}{R}{R}|Creature - Minotaur|2|3||
Keldon Warlord|Revised Edition|159|U|{2}{R}{R}|Creature - Human Barbarian|*|*|Keldon Warlord's power and toughness are each equal to the number of non-Wall creatures you control.|
El-Hajjaj|Revised Edition|16|R|{1}{B}{B}|Creature - Human Wizard|1|1|Whenever El-Hajjâj deals damage, you gain that much life.|
Kird Ape|Revised Edition|160|C|{R}|Creature - Ape|1|1|Kird Ape gets +1/+2 as long as you control a Forest.|
-Lightning Bolt|Revised Edition|161|C|{R}|Instant|||Lightning Bolt deals 3 damage to target creature or player.|
+Lightning Bolt|Revised Edition|161|C|{R}|Instant|||Lightning Bolt deals 3 damage to any target.|
Magnetic Mountain|Revised Edition|162|R|{1}{R}{R}|Enchantment|||Blue creatures don't untap during their controllers' untap steps.$At the beginning of each player's upkeep, that player may choose any number of tapped blue creatures he or she controls and pay {4} for each creature chosen this way. If the player does, untap those creatures.|
Mountain|Revised Edition|162|L||Basic Land - Mountain|||R|
Mana Flare|Revised Edition|163|R|{2}{R}|Enchantment|||Whenever a player taps a land for mana, that player adds one mana to his or her mana pool of any type that land produced.|
Manabarbs|Revised Edition|164|R|{3}{R}|Enchantment|||Whenever a player taps a land for mana, Manabarbs deals 1 damage to that player.|
Mijae Djinn|Revised Edition|165|R|{R}{R}{R}|Creature - Djinn|6|3|Whenever Mijae Djinn attacks, flip a coin. If you lose the flip, remove Mijae Djinn from combat and tap it.|
Mons's Goblin Raiders|Revised Edition|166|C|{R}|Creature - Goblin|1|1||
-Orcish Artillery|Revised Edition|167|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Artillery deals 2 damage to target creature or player and 3 damage to you.|
+Orcish Artillery|Revised Edition|167|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Artillery deals 2 damage to any target and 3 damage to you.|
Orcish Oriflamme|Revised Edition|168|U|{3}{R}|Enchantment|||Attacking creatures you control get +1/+0.|
Power Surge|Revised Edition|169|R|{R}{R}|Enchantment|||At the beginning of each player's upkeep, Power Surge deals X damage to that player, where X is the number of untapped lands he or she controlled at the beginning of this turn.|
Erg Raiders|Revised Edition|17|C|{1}{B}|Creature - Human Warrior|2|3|At the beginning of your end step, if Erg Raiders didn't attack this turn, Erg Raiders deals 2 damage to you unless it came under your control this turn.|
Red Elemental Blast|Revised Edition|170|C|{R}|Instant|||Choose one - Counter target blue spell; or destroy target blue permanent.|
Roc of Kher Ridges|Revised Edition|171|R|{3}{R}|Creature - Bird|3|3|Flying|
Rock Hydra|Revised Edition|172|R|{X}{R}{R}|Creature - Hydra|0|0|Rock Hydra enters the battlefield with X +1/+1 counters on it.$For each 1 damage that would be dealt to Rock Hydra, if it has a +1/+1 counter on it, remove a +1/+1 counter from it and prevent that 1 damage.${R}: Prevent the next 1 damage that would be dealt to Rock Hydra this turn.${R}{R}{R}: Put a +1/+1 counter on Rock Hydra. Activate this ability only during your upkeep.|
-Sacrifice|Revised Edition|173|U|{B}|Instant|||As an additional cost to cast Sacrifice, sacrifice a creature.$Add to your mana pool an amount of {B} equal to the sacrificed creature's converted mana cost.|
+Sacrifice|Revised Edition|173|U|{B}|Instant|||As an additional cost to cast Sacrifice, sacrifice a creature.$Add an amount of {B} equal to the sacrificed creature's converted mana cost.|
Sedge Troll|Revised Edition|173|R|{2}{R}|Creature - Troll|2|2|Sedge Troll gets +1/+1 as long as you control a Swamp.${B}: Regenerate Sedge Troll.|
Shatter|Revised Edition|174|C|{1}{R}|Instant|||Destroy target artifact.|
Shatterstorm|Revised Edition|175|U|{2}{R}{R}|Sorcery|||Destroy all artifacts. They can't be regenerated.|
@@ -21069,8 +21069,8 @@ Disenchant|Revised Edition|201|C|{1}{W}|Instant|||Destroy target artifact or enc
Eye for an Eye|Revised Edition|202|R|{W}{W}|Instant|||The next time a source of your choice would deal damage to you this turn, instead that source deals that much damage to you and Eye for an Eye deals that much damage to that source's controller.|
Farmstead|Revised Edition|203|R|{W}{W}{W}|Enchantment - Aura|||Enchant land$Enchanted land has "At the beginning of your upkeep, you may pay {W}{W}. If you do, you gain 1 life."|
Green Ward|Revised Edition|204|U|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature has protection from green. This effect doesn't remove Green Ward.|
-Guardian Angel|Revised Edition|205|C|{X}{W}|Instant|||Prevent the next X damage that would be dealt to target creature or player this turn. Until end of turn, you may pay {1} any time you could cast an instant. If you do, prevent the next 1 damage that would be dealt to that creature or player this turn.|
-Healing Salve|Revised Edition|206|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to target creature or player this turn.|
+Guardian Angel|Revised Edition|205|C|{X}{W}|Instant|||Prevent the next X damage that would be dealt to any target this turn. Until end of turn, you may pay {1} any time you could cast an instant. If you do, prevent the next 1 damage that would be dealt to that creature or player this turn.|
+Healing Salve|Revised Edition|206|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to any target this turn.|
Holy Armor|Revised Edition|207|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +0/+2.${W}: Enchanted creature gets +0/+1 until end of turn.|
Holy Strength|Revised Edition|208|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+2.|
Island Sanctuary|Revised Edition|209|R|{1}{W}|Enchantment|||If you would draw a card during your draw step, instead you may skip that draw. If you do, until your next turn, you can't be attacked except by creatures with flying and/or islandwalk.|
@@ -21087,7 +21087,7 @@ Reverse Damage|Revised Edition|219|R|{1}{W}{W}|Instant|||The next time a source
Howl from Beyond|Revised Edition|22|C|{X}{B}|Instant|||Target creature gets +X/+0 until end of turn.|
Reverse Polarity|Revised Edition|220|U|{W}{W}|Instant|||You gain X life, where X is twice the damage dealt to you so far this turn by artifacts.|
Righteousness|Revised Edition|221|R|{W}|Instant|||Target blocking creature gets +7/+7 until end of turn.|
-Samite Healer|Revised Edition|222|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Samite Healer|Revised Edition|222|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.|
Savannah Lions|Revised Edition|223|R|{W}|Creature - Cat|2|1||
Savannah|Revised Edition|297|R||Land - Forest Plains||||
Serra Angel|Revised Edition|224|U|{3}{W}{W}|Creature - Angel|4|4|Flying$Vigilance (Attacking doesn't cause this creature to tap.)|
@@ -21099,14 +21099,14 @@ White Ward|Revised Edition|229|U|{W}|Enchantment - Aura|||Enchant creature$Encha
Hypnotic Specter|Revised Edition|23|U|{1}{B}{B}|Creature - Specter|2|2|Flying$Whenever Hypnotic Specter deals damage to an opponent, that player discards a card at random.|
Wrath of God|Revised Edition|230|R|{2}{W}{W}|Sorcery|||Destroy all creatures. They can't be regenerated.|
Aladdin's Lamp|Revised Edition|231|R|{10}|Artifact|||{X}, {tap}: The next time you would draw a card this turn, instead look at the top X cards of your library, put all but one of them on the bottom of your library in a random order, then draw a card. X can't be 0.|
-Aladdin's Ring|Revised Edition|232|R|{8}|Artifact|||{8}, {tap}: Aladdin's Ring deals 4 damage to target creature or player.|
+Aladdin's Ring|Revised Edition|232|R|{8}|Artifact|||{8}, {tap}: Aladdin's Ring deals 4 damage to any target.|
Ankh of Mishra|Revised Edition|233|R|{2}|Artifact|||Whenever a land enters the battlefield, Ankh of Mishra deals 2 damage to that land's controller.|
Armageddon Clock|Revised Edition|234|R|{6}|Artifact|||At the beginning of your upkeep, put a doom counter on Armageddon Clock.$At the beginning of your draw step, Armageddon Clock deals damage equal to the number of doom counters on it to each player.${4}: Remove a doom counter from Armageddon Clock. Any player may activate this ability but only during any upkeep step.|
Basalt Monolith|Revised Edition|235|U|{3}|Artifact|||Basalt Monolith doesn't untap during your untap step.${tap}: Add {C}{C}{C}.${3}: Untap Basalt Monolith.|
Black Vise|Revised Edition|236|U|{1}|Artifact|||As Black Vise enters the battlefield, choose an opponent.$At the beginning of the chosen player's upkeep, Black Vise deals X damage to that player, where X is the number of cards in his or her hand minus 4.|
Bottle of Suleiman|Revised Edition|237|R|{4}|Artifact|||{1}, Sacrifice Bottle of Suleiman: Flip a coin. If you lose the flip, Bottle of Suleiman deals 5 damage to you. If you win the flip, put a 5/5 colorless Djinn artifact creature token with flying onto the battlefield.|
Brass Man|Revised Edition|238|U|{1}|Artifact Creature - Construct|1|3|Brass Man doesn't untap during your untap step.$At the beginning of your upkeep, you may pay {1}. If you do, untap Brass Man.|
-Celestial Prism|Revised Edition|239|U|{3}|Artifact|||{2}, {tap}: Add one mana of any color to your mana pool.|
+Celestial Prism|Revised Edition|239|U|{3}|Artifact|||{2}, {tap}: Add one mana of any color.|
Lord of the Pit|Revised Edition|24|R|{4}{B}{B}{B}|Creature - Demon|7|7|Flying, trample$At the beginning of your upkeep, sacrifice a creature other than Lord of the Pit. If you can't, Lord of the Pit deals 7 damage to you.|
Clockwork Beast|Revised Edition|240|R|{6}|Artifact Creature - Beast|0|4|Clockwork Beast enters the battlefield with seven +1/+0 counters on it.$At end of combat, if Clockwork Beast attacked or blocked this combat, remove a +1/+0 counter from it.${X}, {tap}: Put up to X +1/+0 counters on Clockwork Beast. This ability can't cause the total number of +1/+0 counters on Clockwork Beast to be greater than seven. Activate this ability only during your upkeep.|
Conservator|Revised Edition|241|U|{4}|Artifact|||{3}, {tap}: Prevent the next 2 damage that would be dealt to you this turn.|
@@ -21143,8 +21143,8 @@ Onulet|Revised Edition|269|R|{3}|Artifact Creature - Construct|2|2|When Onulet d
Nettling Imp|Revised Edition|27|U|{2}{B}|Creature - Imp|1|1|{tap}: Choose target non-Wall creature the active player has controlled continuously since the beginning of the turn. That creature attacks this turn if able. If it doesn't, destroy it at the beginning of the next end step. Activate this ability only during an opponent's turn, before attackers are declared.|
Ornithopter|Revised Edition|270|U|{0}|Artifact Creature - Thopter|0|2|Flying|
Primal Clay|Revised Edition|271|R|{4}|Artifact Creature - Shapeshifter|*|*|As Primal Clay enters the battlefield, it becomes your choice of a 3/3 artifact creature, a 2/2 artifact creature with flying, or a 1/6 Wall artifact creature with defender in addition to its other types. (A creature with defender can't attack.)|
-Rocket Launcher|Revised Edition|272|R|{4}|Artifact|||{2}: Rocket Launcher deals 1 damage to target creature or player. Destroy Rocket Launcher at the beginning of the next end step. Activate this ability only if you've controlled Rocket Launcher continuously since the beginning of your most recent turn.|
-Rod of Ruin|Revised Edition|273|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to target creature or player.|
+Rocket Launcher|Revised Edition|272|R|{4}|Artifact|||{2}: Rocket Launcher deals 1 damage to any target. Destroy Rocket Launcher at the beginning of the next end step. Activate this ability only if you've controlled Rocket Launcher continuously since the beginning of your most recent turn.|
+Rod of Ruin|Revised Edition|273|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to any target.|
Sol Ring|Revised Edition|274|U|{1}|Artifact|||{tap}: Add {C}{C}.|
Soul Net|Revised Edition|275|U|{1}|Artifact|||Whenever a creature dies, you may pay {1}. If you do, you gain 1 life.|
Sunglasses of Urza|Revised Edition|276|R|{3}|Artifact|||You may spend white mana as though it were red mana.|
@@ -21214,10 +21214,10 @@ Phantasmal Forces|Revised Edition|69|U|{3}{U}|Creature - Illusion|4|1|Flying$At
Dark Ritual|Revised Edition|7|C|{B}|Instant|||Add {B}{B}{B}.|
Phantasmal Terrain|Revised Edition|70|C|{U}{U}|Enchantment - Aura|||Enchant land$As Phantasmal Terrain enters the battlefield, choose a basic land type.$Enchanted land is the chosen type.|
Phantom Monster|Revised Edition|71|U|{3}{U}|Creature - Illusion|3|3|Flying|
-Pirate Ship|Revised Edition|72|R|{4}{U}|Creature - Human Pirate|4|3|Pirate Ship can't attack unless defending player controls an Island.${tap}: Pirate Ship deals 1 damage to target creature or player.$When you control no Islands, sacrifice Pirate Ship.|
+Pirate Ship|Revised Edition|72|R|{4}{U}|Creature - Human Pirate|4|3|Pirate Ship can't attack unless defending player controls an Island.${tap}: Pirate Ship deals 1 damage to any target.$When you control no Islands, sacrifice Pirate Ship.|
Power Leak|Revised Edition|73|C|{1}{U}|Enchantment - Aura|||Enchant enchantment$At the beginning of the upkeep of enchanted enchantment's controller, that player may pay any amount of mana. Power Leak deals 2 damage to that player. Prevent X of that damage, where X is the amount of mana that player paid this way.|
Power Sink|Revised Edition|74|C|{X}{U}|Instant|||Counter target spell unless its controller pays {X}. If he or she doesn't, that player taps all lands with mana abilities he or she controls and empties his or her mana pool.|
-Prodigal Sorcerer|Revised Edition|75|C|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to target creature or player.|
+Prodigal Sorcerer|Revised Edition|75|C|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to any target.|
Psychic Venom|Revised Edition|76|C|{1}{U}|Enchantment - Aura|||Enchant land$Whenever enchanted land becomes tapped, Psychic Venom deals 2 damage to that land's controller.|
Reconstruction|Revised Edition|77|C|{U}|Sorcery|||Return target artifact card from your graveyard to your hand.|
Sea Serpent|Revised Edition|78|C|{5}{U}|Creature - Serpent|5|5|Sea Serpent can't attack unless defending player controls an Island.$$When you control no Islands, sacrifice Sea Serpent.|
@@ -21238,7 +21238,7 @@ Wall of Air|Revised Edition|90|U|{1}{U}{U}|Creature - Wall|1|5|Defender, flying
Wall of Water|Revised Edition|91|U|{1}{U}{U}|Creature - Wall|0|5|Defender (This creature can't attack.)${U}: Wall of Water gets +1/+0 until end of turn.|
Water Elemental|Revised Edition|92|U|{3}{U}{U}|Creature - Elemental|5|4||
Aspect of Wolf|Revised Edition|93|R|{1}{G}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +X/+Y, where X is half the number of Forests you control, rounded down, and Y is half the number of Forests you control, rounded up.|
-Birds of Paradise|Revised Edition|94|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color to your mana pool.|
+Birds of Paradise|Revised Edition|94|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color.|
Channel|Revised Edition|95|U|{G}{G}|Sorcery|||Until end of turn, any time you could activate a mana ability, you may pay 1 life. If you do, add {C}.|
Cockatrice|Revised Edition|96|R|{3}{G}{G}|Creature - Cockatrice|2|4|Flying$Whenever Cockatrice blocks or becomes blocked by a non-Wall creature, destroy that creature at end of combat.|
Craw Wurm|Revised Edition|97|C|{4}{G}{G}|Creature - Wurm|6|4||
@@ -21283,21 +21283,21 @@ Vendetta|Rise of the Eldrazi|130|C|{B}|Instant|||Destroy target nonblack creatur
Virulent Swipe|Rise of the Eldrazi|131|U|{B}|Instant|||Target creature gets +2/+0 and gains deathtouch until end of turn.$Rebound (If you cast this spell from your hand, exile it as it resolves. At the beginning of your next upkeep, you may cast this card from exile without paying its mana cost.)|
Zof Shade|Rise of the Eldrazi|132|C|{3}{B}|Creature - Shade|2|2|{2}{B}: Zof Shade gets +2/+2 until end of turn.|
Zulaport Enforcer|Rise of the Eldrazi|133|C|{B}|Creature - Human Warrior|1|1|Level up {4} ({4}: Put a level counter on this. Level up only as a sorcery.)$LEVEL 1-2$3/3$$LEVEL 3+$5/5$Zulaport Enforcer can't be blocked except by black creatures.|
-Akoum Boulderfoot|Rise of the Eldrazi|134|U|{4}{R}{R}|Creature - Giant Warrior|4|5|When Akoum Boulderfoot enters the battlefield, it deals 1 damage to target creature or player.|
+Akoum Boulderfoot|Rise of the Eldrazi|134|U|{4}{R}{R}|Creature - Giant Warrior|4|5|When Akoum Boulderfoot enters the battlefield, it deals 1 damage to any target.|
Battle Rampart|Rise of the Eldrazi|135|C|{2}{R}|Creature - Wall|1|3|Defender${tap}: Target creature gains haste until end of turn.|
Battle-Rattle Shaman|Rise of the Eldrazi|136|C|{3}{R}|Creature - Goblin Shaman|2|2|At the beginning of combat on your turn, you may have target creature get +2/+0 until end of turn.|
-Brimstone Mage|Rise of the Eldrazi|137|U|{2}{R}|Creature - Human Shaman|2|2|Level up {3}{R} ({3}{R}: Put a level counter on this. Level up only as a sorcery.)$LEVEL 1-2$2/3${tap}: Brimstone Mage deals 1 damage to target creature or player.$LEVEL 3+$2/4${tap}: Brimstone Mage deals 3 damage to target creature or player.|
+Brimstone Mage|Rise of the Eldrazi|137|U|{2}{R}|Creature - Human Shaman|2|2|Level up {3}{R} ({3}{R}: Put a level counter on this. Level up only as a sorcery.)$LEVEL 1-2$2/3${tap}: Brimstone Mage deals 1 damage to any target.$LEVEL 3+$2/4${tap}: Brimstone Mage deals 3 damage to any target.|
Brood Birthing|Rise of the Eldrazi|138|C|{1}{R}|Sorcery|||If you control an Eldrazi Spawn, put three 0/1 colorless Eldrazi Spawn creature tokens onto the battlefield. They have "Sacrifice this creature: Add {C}." Otherwise, put one of those tokens onto the battlefield.|
Conquering Manticore|Rise of the Eldrazi|139|R|{4}{R}{R}|Creature - Manticore|5|5|Flying$When Conquering Manticore enters the battlefield, gain control of target creature an opponent controls until end of turn. Untap that creature. It gains haste until end of turn.|
Affa Guard Hound|Rise of the Eldrazi|14|U|{2}{W}|Creature - Hound|2|2|Flash$When Affa Guard Hound enters the battlefield, target creature gets +0/+3 until end of turn.|
Devastating Summons|Rise of the Eldrazi|140|R|{R}|Sorcery|||As an additional cost to cast Devastating Summons, sacrifice X lands.$Put two X/X red Elemental creature tokens onto the battlefield.|
Disaster Radius|Rise of the Eldrazi|141|R|{5}{R}{R}|Sorcery|||As an additional cost to cast Disaster Radius, reveal a creature card from your hand.$Disaster Radius deals X damage to each creature your opponents control, where X is the revealed card's converted mana cost.|
Emrakul's Hatcher|Rise of the Eldrazi|142|C|{4}{R}|Creature - Eldrazi Drone|3|3|When Emrakul's Hatcher enters the battlefield, put three 0/1 colorless Eldrazi Spawn creature tokens onto the battlefield. They have "Sacrifice this creature: Add {C}."|
-Explosive Revelation|Rise of the Eldrazi|143|U|{3}{R}{R}|Sorcery|||Choose target creature or player. Reveal cards from the top of your library until you reveal a nonland card. Explosive Revelation deals damage equal to that card's converted mana cost to that creature or player. Put the nonland card into your hand and the rest on the bottom of your library in any order.|
+Explosive Revelation|Rise of the Eldrazi|143|U|{3}{R}{R}|Sorcery|||Choose any target. Reveal cards from the top of your library until you reveal a nonland card. Explosive Revelation deals damage equal to that card's converted mana cost to that creature or player. Put the nonland card into your hand and the rest on the bottom of your library in any order.|
Fissure Vent|Rise of the Eldrazi|144|C|{3}{R}{R}|Sorcery|||Choose one or both - Destroy target artifact; and/or destroy target nonbasic land.|
Flame Slash|Rise of the Eldrazi|145|C|{R}|Sorcery|||Flame Slash deals 4 damage to target creature.|
Forked Bolt|Rise of the Eldrazi|146|U|{R}|Sorcery|||Forked Bolt deals 2 damage divided as you choose among one or two target creatures and/or players.|
-Goblin Arsonist|Rise of the Eldrazi|147|C|{R}|Creature - Goblin Shaman|1|1|When Goblin Arsonist dies, you may have it deal 1 damage to target creature or player.|
+Goblin Arsonist|Rise of the Eldrazi|147|C|{R}|Creature - Goblin Shaman|1|1|When Goblin Arsonist dies, you may have it deal 1 damage to any target.|
Goblin Tunneler|Rise of the Eldrazi|148|C|{1}{R}|Creature - Goblin Rogue|1|1|{tap}: Target creature with power 2 or less is unblockable this turn.|
Grotag Siege-Runner|Rise of the Eldrazi|149|C|{1}{R}|Creature - Goblin Rogue|2|1|{R}, Sacrifice Grotag Siege-Runner: Destroy target creature with defender. Grotag Siege-Runner deals 2 damage to that creature's controller.|
Caravan Escort|Rise of the Eldrazi|15|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|
@@ -21309,16 +21309,16 @@ Lagac Lizard|Rise of the Eldrazi|154|C|{3}{R}|Creature - Lizard|3|3||
Lavafume Invoker|Rise of the Eldrazi|155|C|{2}{R}|Creature - Goblin Shaman|2|2|{8}: Creatures you control get +3/+0 until end of turn.|
Lord of Shatterskull Pass|Rise of the Eldrazi|156|R|{3}{R}|Creature - Minotaur Shaman|3|3|Level up {1}{R} ({1}{R}: Put a level counter on this. Level up only as a sorcery.)$LEVEL 1-5$6/6$$LEVEL 6+$6/6$Whenever Lord of Shatterskull Pass attacks, it deals 6 damage to each creature defending player controls.|
Lust for War|Rise of the Eldrazi|157|U|{2}{R}|Enchantment - Aura|||Enchant creature$Whenever enchanted creature becomes tapped, Lust for War deals 3 damage to that creature's controller.$Enchanted creature attacks each turn if able.|
-Magmaw|Rise of the Eldrazi|158|R|{3}{R}{R}|Creature - Elemental|4|4|{1}, Sacrifice a nonland permanent: Magmaw deals 1 damage to target creature or player.|
+Magmaw|Rise of the Eldrazi|158|R|{3}{R}{R}|Creature - Elemental|4|4|{1}, Sacrifice a nonland permanent: Magmaw deals 1 damage to any target.|
Ogre Sentry|Rise of the Eldrazi|159|C|{1}{R}|Creature - Ogre Warrior|3|3|Defender|
Dawnglare Invoker|Rise of the Eldrazi|16|C|{2}{W}|Creature - Kor Wizard|2|1|Flying${8}: Tap all creatures target player controls.|
Rage Nimbus|Rise of the Eldrazi|160|R|{2}{R}|Creature - Elemental|5|3|Defender, flying${1}{R}: Target creature attacks this turn if able.|
Raid Bombardment|Rise of the Eldrazi|161|C|{2}{R}|Enchantment|||Whenever a creature you control with power 2 or less attacks, Raid Bombardment deals 1 damage to defending player.|
Rapacious One|Rise of the Eldrazi|162|U|{5}{R}|Creature - Eldrazi Drone|5|4|Trample$Whenever Rapacious One deals combat damage to a player, put that many 0/1 colorless Eldrazi Spawn creature tokens onto the battlefield. They have "Sacrifice this creature: Add {C}."|
Soulsurge Elemental|Rise of the Eldrazi|163|U|{3}{R}|Creature - Elemental|*|1|First strike$Soulsurge Elemental's power is equal to the number of creatures you control.|
-Spawning Breath|Rise of the Eldrazi|164|C|{1}{R}|Instant|||Spawning Breath deals 1 damage to target creature or player. Put a 0/1 colorless Eldrazi Spawn creature token onto the battlefield. It has "Sacrifice this creature: Add {C}."|
+Spawning Breath|Rise of the Eldrazi|164|C|{1}{R}|Instant|||Spawning Breath deals 1 damage to any target. Put a 0/1 colorless Eldrazi Spawn creature token onto the battlefield. It has "Sacrifice this creature: Add {C}."|
Splinter Twin|Rise of the Eldrazi|165|R|{2}{R}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{tap}: Put a token that's a copy of this creature onto the battlefield. That token has haste. Exile it at the beginning of the next end step."|
-Staggershock|Rise of the Eldrazi|166|C|{2}{R}|Instant|||Staggershock deals 2 damage to target creature or player.$Rebound (If you cast this spell from your hand, exile it as it resolves. At the beginning of your next upkeep, you may cast this card from exile without paying its mana cost.)|
+Staggershock|Rise of the Eldrazi|166|C|{2}{R}|Instant|||Staggershock deals 2 damage to any target.$Rebound (If you cast this spell from your hand, exile it as it resolves. At the beginning of your next upkeep, you may cast this card from exile without paying its mana cost.)|
Surreal Memoir|Rise of the Eldrazi|167|U|{3}{R}|Sorcery|||Return an instant card at random from your graveyard to your hand.$Rebound (If you cast this spell from your hand, exile it as it resolves. At the beginning of your next upkeep, you may cast this card from exile without paying its mana cost.)|
Traitorous Instinct|Rise of the Eldrazi|168|U|{3}{R}|Sorcery|||Gain control of target creature until end of turn. Untap that creature. Until end of turn, it gets +2/+0 and gains haste.|
Tuktuk the Explorer|Rise of the Eldrazi|169|R|{2}{R}|Legendary Creature - Goblin|1|1|Haste$When Tuktuk the Explorer dies, put a legendary 5/5 colorless Goblin Golem artifact creature token named Tuktuk the Returned onto the battlefield.|
@@ -21353,7 +21353,7 @@ Leaf Arrow|Rise of the Eldrazi|194|C|{G}|Instant|||Leaf Arrow deals 3 damage to
Living Destiny|Rise of the Eldrazi|195|C|{3}{G}|Instant|||As an additional cost to cast Living Destiny, reveal a creature card from your hand.$You gain life equal to the revealed card's converted mana cost.|
Might of the Masses|Rise of the Eldrazi|196|C|{G}|Instant|||Target creature gets +1/+1 until end of turn for each creature you control.|
Momentous Fall|Rise of the Eldrazi|197|R|{2}{G}{G}|Instant|||As an additional cost to cast Momentous Fall, sacrifice a creature.$You draw cards equal to the sacrificed creature's power, then you gain life equal to its toughness.|
-Mul Daya Channelers|Rise of the Eldrazi|198|R|{1}{G}{G}|Creature - Elf Druid Shaman|2|2|Play with the top card of your library revealed.$As long as the top card of your library is a creature card, Mul Daya Channelers gets +3/+3.$As long as the top card of your library is a land card, Mul Daya Channelers has "{tap}: Add two mana of any one color to your mana pool."|
+Mul Daya Channelers|Rise of the Eldrazi|198|R|{1}{G}{G}|Creature - Elf Druid Shaman|2|2|Play with the top card of your library revealed.$As long as the top card of your library is a creature card, Mul Daya Channelers gets +3/+3.$As long as the top card of your library is a land card, Mul Daya Channelers has "{tap}: Add two mana of any one color."|
Naturalize|Rise of the Eldrazi|199|C|{1}{G}|Instant|||Destroy target artifact or enchantment.|
Artisan of Kozilek|Rise of the Eldrazi|2|U|{9}|Creature - Eldrazi|10|9|When you cast Artisan of Kozilek, you may return target creature card from your graveyard to the battlefield.$Annihilator 2 (Whenever this creature attacks, defending player sacrifices two permanents.)|
Emerge Unscathed|Rise of the Eldrazi|20|U|{W}|Instant|||Target creature you control gains protection from the color of your choice until end of turn.$Rebound (If you cast this spell from your hand, exile it as it resolves. At the beginning of your next upkeep, you may cast this card from exile without paying its mana cost.)|
@@ -21381,10 +21381,10 @@ Keening Stone|Rise of the Eldrazi|219|R|{6}|Artifact|||{5}, {tap}: Target player
Glory Seeker|Rise of the Eldrazi|22|C|{1}{W}|Creature - Human Soldier|2|2||
Ogre's Cleaver|Rise of the Eldrazi|220|U|{2}|Artifact - Equipment|||Equipped creature gets +5/+0.$Equip {5}|
Pennon Blade|Rise of the Eldrazi|221|U|{3}|Artifact - Equipment|||Equipped creature gets +1/+1 for each creature you control.$Equip {4}|
-Prophetic Prism|Rise of the Eldrazi|222|C|{2}|Artifact|||When Prophetic Prism enters the battlefield, draw a card.${1}, {tap}: Add one mana of any color to your mana pool.|
+Prophetic Prism|Rise of the Eldrazi|222|C|{2}|Artifact|||When Prophetic Prism enters the battlefield, draw a card.${1}, {tap}: Add one mana of any color.|
Reinforced Bulwark|Rise of the Eldrazi|223|C|{3}|Artifact Creature - Wall|0|4|Defender${tap}: Prevent the next 1 damage that would be dealt to you this turn.|
Runed Servitor|Rise of the Eldrazi|224|U|{2}|Artifact Creature - Construct|2|2|When Runed Servitor dies, each player draws a card.|
-Sphinx-Bone Wand|Rise of the Eldrazi|225|R|{7}|Artifact|||Whenever you cast an instant or sorcery spell, you may put a charge counter on Sphinx-Bone Wand. If you do, Sphinx-Bone Wand deals damage equal to the number of charge counters on it to target creature or player.|
+Sphinx-Bone Wand|Rise of the Eldrazi|225|R|{7}|Artifact|||Whenever you cast an instant or sorcery spell, you may put a charge counter on Sphinx-Bone Wand. If you do, Sphinx-Bone Wand deals damage equal to the number of charge counters on it to any target.|
Warmonger's Chariot|Rise of the Eldrazi|226|U|{2}|Artifact - Equipment|||Equipped creature gets +2/+2.$As long as equipped creature has defender, it can attack as though it didn't have defender.$Equip {3}|
Eldrazi Temple|Rise of the Eldrazi|227|R||Land|||{tap}: Add {C}.${tap}: Add {C}{C}. Spend this mana only to cast colorless Eldrazi spells or activate abilities of colorless Eldrazi.|
Evolving Wilds|Rise of the Eldrazi|228|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.|
@@ -21512,10 +21512,10 @@ Shinen of Fury's Fire|Saviors of Kamigawa|112|C|{2}{R}|Creature - Spirit|2|1|Has
Skyfire Kirin|Saviors of Kamigawa|113|R|{2}{R}{R}|Legendary Creature - Kirin Spirit|3|3|Flying$Whenever you cast a Spirit or Arcane spell, you may gain control of target creature with that spell's converted mana cost until end of turn.|
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.|
Sokenzan Spellblade|Saviors of Kamigawa|115|C|{4}{R}|Creature - Ogre Samurai Shaman|2|3|Bushido 1 (When this blocks or becomes blocked, it gets +1/+1 until end of turn.)${1}{R}: Sokenzan Spellblade gets +X/+0 until end of turn, where X is the number of cards in your hand.|
-Spiraling Embers|Saviors of Kamigawa|116|C|{3}{R}|Sorcery - Arcane|||Spiraling Embers deals damage to target creature or player equal to the number of cards in your hand.|
+Spiraling Embers|Saviors of Kamigawa|116|C|{3}{R}|Sorcery - Arcane|||Spiraling Embers deals damage to any target equal to the number of cards in your hand.|
Sunder from Within|Saviors of Kamigawa|117|U|{2}{R}{R}|Sorcery - Arcane|||Destroy target artifact or land.|
Thoughts of Ruin|Saviors of Kamigawa|118|R|{2}{R}{R}|Sorcery|||Each player sacrifices a land for each card in your hand.|
-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.)|
+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 any target 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.)|
Hand of Honor|Saviors of Kamigawa|12|U|{W}{W}|Creature - Human Samurai|2|2|Protection from black$Bushido 1 (When this blocks or becomes blocked, it gets +1/+1 until end of turn.)|
Yuki-Onna|Saviors of Kamigawa|120|U|{3}{R}|Creature - Spirit|3|1|When Yuki-Onna enters the battlefield, destroy target artifact.$Whenever you cast a Spirit or Arcane spell, you may return Yuki-Onna to its owner's hand.|
Arashi, the Sky Asunder|Saviors of Kamigawa|121|R|{3}{G}{G}|Legendary Creature - Spirit|5|5|{X}{G}, {tap}: Arashi, the Sky Asunder deals X damage to target creature with flying.$Channel - {X}{G}{G}, Discard Arashi: Arashi deals X damage to each creature with flying.|
@@ -21545,7 +21545,7 @@ Reki, the History of Kamigawa|Saviors of Kamigawa|142|R|{2}{G}|Legendary Creatur
Rending Vines|Saviors of Kamigawa|143|C|{1}{G}{G}|Instant - Arcane|||Destroy target artifact or enchantment if its converted mana cost is less than or equal to the number of cards in your hand.$Draw a card.|
Sakura-Tribe Scout|Saviors of Kamigawa|144|C|{G}|Creature - Snake Shaman Scout|1|1|{tap}: You may put a land card from your hand onto the battlefield.|
Sasaya, Orochi Ascendant|Saviors of Kamigawa|145a|R|{1}{G}{G}|Legendary Creature - Snake Monk|2|3|Reveal your hand: If you have seven or more land cards in your hand, flip Sasaya, Orochi Ascendant.$|
-Sasaya's Essence|Saviors of Kamigawa|145b|R|{1}{G}{G}|Legendary Enchantment|2|3|Whenever a land you control is tapped for mana, for each other land you control with the same name, add one mana to your mana pool of any type that land produced.|
+Sasaya's Essence|Saviors of Kamigawa|145b|R|{1}{G}{G}|Legendary Enchantment|2|3|Whenever a land you control is tapped for mana, for each other land you control with the same name, add one mana of any type that land produced.|
Seed the Land|Saviors of Kamigawa|146|R|{2}{G}{G}|Enchantment|||Whenever a land enters the battlefield, its controller puts a 1/1 green Snake creature token onto the battlefield.|
Seek the Horizon|Saviors of Kamigawa|147|U|{3}{G}|Sorcery|||Search your library for up to three basic land cards, reveal them, and put them into your hand. Then shuffle your library.|
Sekki, Seasons' Guide|Saviors of Kamigawa|148|R|{5}{G}{G}{G}|Legendary Creature - Spirit|0|0|Sekki, Seasons' Guide enters the battlefield with eight +1/+1 counters on it.$If damage would be dealt to Sekki, prevent that damage, remove that many +1/+1 counters from Sekki, and put that many 1/1 colorless Spirit creature tokens onto the battlefield.$Sacrifice eight Spirits: Return Sekki from your graveyard to the battlefield.|
@@ -21657,18 +21657,18 @@ Adamaro, First to Desire|Saviors of Kamigawa|91|R|{1}{R}{R}|Legendary Creature -
Akki Drillmaster|Saviors of Kamigawa|92|C|{2}{R}|Creature - Goblin Shaman|2|2|{tap}: Target creature gains haste until end of turn.|
Akki Underling|Saviors of Kamigawa|93|C|{1}{R}|Creature - Goblin Warrior|2|1|As long as you have seven or more cards in hand, Akki Underling gets +2/+1 and has first strike.|
Barrel Down Sokenzan|Saviors of Kamigawa|94|C|{2}{R}|Instant - Arcane|||Sweep - Return any number of Mountains you control to their owner's hand. Barrel Down Sokenzan deals damage to target creature equal to twice the number of Mountains returned this way.|
-Burning-Eye Zubera|Saviors of Kamigawa|95|U|{2}{R}{R}|Creature - Zubera Spirit|3|3|When Burning-Eye Zubera dies, if 4 or more damage was dealt to it this turn, Burning-Eye Zubera deals 3 damage to target creature or player.|
+Burning-Eye Zubera|Saviors of Kamigawa|95|U|{2}{R}{R}|Creature - Zubera Spirit|3|3|When Burning-Eye Zubera dies, if 4 or more damage was dealt to it this turn, Burning-Eye Zubera deals 3 damage to any target.|
Captive Flame|Saviors of Kamigawa|96|U|{2}{R}|Enchantment|||{R}: Target creature gets +1/+0 until end of turn.|
Feral Lightning|Saviors of Kamigawa|97|U|{3}{R}{R}{R}|Sorcery|||Put three 3/1 red Elemental creature tokens with haste onto the battlefield. Exile them at the beginning of the next end step.|
Gaze of Adamaro|Saviors of Kamigawa|98|U|{2}{R}{R}|Instant - Arcane|||Gaze of Adamaro deals damage to target player equal to the number of cards in that player's hand.|
Ghost-Lit Raider|Saviors of Kamigawa|99|U|{2}{R}|Creature - Spirit|2|1|{2}{R}, {tap}: Ghost-Lit Raider deals 2 damage to target creature.$Channel - {3}{R}, Discard Ghost-Lit Raider: Ghost-Lit Raider deals 4 damage to target creature.|
-Abuna Acolyte|Scars of Mirrodin|1|U|{1}{W}|Creature - Cat Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.${tap}: Prevent the next 2 damage that would be dealt to target artifact creature this turn.|
+Abuna Acolyte|Scars of Mirrodin|1|U|{1}{W}|Creature - Cat Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.${tap}: Prevent the next 2 damage that would be dealt to target artifact creature this turn.|
Glint Hawk|Scars of Mirrodin|10|C|{W}|Creature - Bird|2|2|Flying$When Glint Hawk enters the battlefield, sacrifice it unless you return an artifact you control to its owner's hand.|
Oxidda Daredevil|Scars of Mirrodin|100|C|{1}{R}|Creature - Goblin Artificer|2|1|Sacrifice an artifact: Oxidda Daredevil gains haste until end of turn.|
Oxidda Scrapmelter|Scars of Mirrodin|101|U|{3}{R}|Creature - Beast|3|3|When Oxidda Scrapmelter enters the battlefield, destroy target artifact.|
Scoria Elemental|Scars of Mirrodin|102|C|{4}{R}|Creature - Elemental|6|1||
Shatter|Scars of Mirrodin|103|C|{1}{R}|Instant|||Destroy target artifact.|
-Spikeshot Elder|Scars of Mirrodin|104|R|{R}|Creature - Goblin Shaman|1|1|{1}{R}{R}: Spikeshot Elder deals damage equal to its power to target creature or player.|
+Spikeshot Elder|Scars of Mirrodin|104|R|{R}|Creature - Goblin Shaman|1|1|{1}{R}{R}: Spikeshot Elder deals damage equal to its power to any target.|
Tunnel Ignus|Scars of Mirrodin|105|R|{1}{R}|Creature - Elemental|2|1|Whenever a land enters the battlefield under an opponent's control, if that player had another land enter the battlefield under his or her control this turn, Tunnel Ignus deals 3 damage to that player.|
Turn to Slag|Scars of Mirrodin|106|C|{3}{R}{R}|Sorcery|||Turn to Slag deals 5 damage to target creature. Destroy all Equipment attached to that creature.|
Vulshok Heartstoker|Scars of Mirrodin|107|C|{2}{R}|Creature - Human Shaman|2|2|When Vulshok Heartstoker enters the battlefield, target creature gets +2/+0 until end of turn.|
@@ -21734,7 +21734,7 @@ Golem Foundry|Scars of Mirrodin|160|C|{3}|Artifact|||Whenever you cast an artifa
Golem's Heart|Scars of Mirrodin|161|U|{2}|Artifact|||Whenever a player casts an artifact spell, you may gain 1 life.|
Grafted Exoskeleton|Scars of Mirrodin|162|U|{4}|Artifact - Equipment|||Equipped creature gets +2/+2 and has infect. (It deals damage to creatures in the form of -1/-1 counters and to players in the form of poison counters.)$Whenever Grafted Exoskeleton becomes unattached from a permanent, sacrifice that permanent.$Equip {2}|
Grindclock|Scars of Mirrodin|163|R|{2}|Artifact|||{tap}: Put a charge counter on Grindclock.${tap}: Target player puts the top X cards of his or her library into his or her graveyard, where X is the number of charge counters on Grindclock.|
-Heavy Arbalest|Scars of Mirrodin|164|U|{3}|Artifact - Equipment|||Equipped creature doesn't untap during its controller's untap step.$Equipped creature has "{tap}: This creature deals 2 damage to target creature or player."$Equip {4}|
+Heavy Arbalest|Scars of Mirrodin|164|U|{3}|Artifact - Equipment|||Equipped creature doesn't untap during its controller's untap step.$Equipped creature has "{tap}: This creature deals 2 damage to any target."$Equip {4}|
Horizon Spellbomb|Scars of Mirrodin|165|C|{1}|Artifact|||{2}, {tap}, Sacrifice Horizon Spellbomb: Search your library for a basic land card, reveal it, and put it into your hand. Then shuffle your library.$When Horizon Spellbomb is put into a graveyard from the battlefield, you may pay {G}. If you do, draw a card.|
Ichorclaw Myr|Scars of Mirrodin|166|C|{2}|Artifact Creature - Myr|1|1|Infect (This creature deals damage to creatures in the form of -1/-1 counters and to players in the form of poison counters.)$Whenever Ichorclaw Myr becomes blocked, it gets +2/+2 until end of turn.|
Infiltration Lens|Scars of Mirrodin|167|U|{1}|Artifact - Equipment|||Whenever equipped creature becomes blocked by a creature, you may draw two cards.$Equip {1}|
@@ -21743,14 +21743,14 @@ Kuldotha Forgemaster|Scars of Mirrodin|169|R|{5}|Artifact Creature - Construct|3
Razor Hippogriff|Scars of Mirrodin|17|U|{3}{W}{W}|Creature - Hippogriff|3|3|Flying$When Razor Hippogriff enters the battlefield, return target artifact card from your graveyard to your hand. You gain life equal to that card's converted mana cost.|
Leaden Myr|Scars of Mirrodin|170|C|{2}|Artifact Creature - Myr|1|1|{tap}: Add {B}.|
Liquimetal Coating|Scars of Mirrodin|171|U|{2}|Artifact|||{tap}: Target permanent becomes an artifact in addition to its other types until end of turn.|
-Livewire Lash|Scars of Mirrodin|172|R|{2}|Artifact - Equipment|||Equipped creature gets +2/+0 and has "Whenever this creature becomes the target of a spell, this creature deals 2 damage to target creature or player."$Equip {2}|
+Livewire Lash|Scars of Mirrodin|172|R|{2}|Artifact - Equipment|||Equipped creature gets +2/+0 and has "Whenever this creature becomes the target of a spell, this creature deals 2 damage to any target."$Equip {2}|
Lux Cannon|Scars of Mirrodin|173|M|{4}|Artifact|||{tap}: Put a charge counter on Lux Cannon.${tap}, Remove three charge counters from Lux Cannon: Destroy target permanent.|
Memnite|Scars of Mirrodin|174|U|{0}|Artifact Creature - Construct|1|1||
Mimic Vat|Scars of Mirrodin|175|R|{3}|Artifact|||Imprint - Whenever a nontoken creature dies, you may exile that card. If you do, return each other card exiled with Mimic Vat to its owner's graveyard.${3}, {tap}: Put a token onto the battlefield that's a copy of the exiled card. It gains haste. Exile it at the beginning of the next end step.|
Mindslaver|Scars of Mirrodin|176|M|{6}|Legendary Artifact|||{4}, {tap}, Sacrifice Mindslaver: You control target player during that player's next turn. (You see all cards that player could see and make all decisions for the player.)|
-Molten-Tail Masticore|Scars of Mirrodin|177|M|{4}|Artifact Creature - Masticore|4|4|At the beginning of your upkeep, sacrifice Molten-Tail Masticore unless you discard a card.${4}, Exile a creature card from your graveyard: Molten-Tail Masticore deals 4 damage to target creature or player.${2}: Regenerate Molten-Tail Masticore.|
+Molten-Tail Masticore|Scars of Mirrodin|177|M|{4}|Artifact Creature - Masticore|4|4|At the beginning of your upkeep, sacrifice Molten-Tail Masticore unless you discard a card.${4}, Exile a creature card from your graveyard: Molten-Tail Masticore deals 4 damage to any target.${2}: Regenerate Molten-Tail Masticore.|
Moriok Replica|Scars of Mirrodin|178|C|{3}|Artifact Creature - Warrior|2|2|{1}{B}, Sacrifice Moriok Replica: You draw two cards and lose 2 life.|
-Mox Opal|Scars of Mirrodin|179|M|{0}|Legendary Artifact|||Metalcraft - {tap}: Add one mana of any color to your mana pool. Activate this ability only if you control three or more artifacts.|
+Mox Opal|Scars of Mirrodin|179|M|{0}|Legendary Artifact|||Metalcraft - {tap}: Add one mana of any color. Activate this ability only if you control three or more artifacts.|
Revoke Existence|Scars of Mirrodin|18|C|{1}{W}|Sorcery|||Exile target artifact or enchantment.|
Myr Battlesphere|Scars of Mirrodin|180|R|{7}|Artifact Creature - Myr Construct|4|7|When Myr Battlesphere enters the battlefield, put four 1/1 colorless Myr artifact creature tokens onto the battlefield.$Whenever Myr Battlesphere attacks, you may tap X untapped Myr you control. If you do, Myr Battlesphere gets +X/+0 until end of turn and deals X damage to defending player.|
Myr Galvanizer|Scars of Mirrodin|181|U|{3}|Artifact Creature - Myr|2|2|Other Myr creatures you control get +1/+1.${1}, {tap}: Untap each other Myr you control.|
@@ -21765,7 +21765,7 @@ Origin Spellbomb|Scars of Mirrodin|189|C|{1}|Artifact|||{1}, {tap}, Sacrifice Or
Salvage Scout|Scars of Mirrodin|19|C|{W}|Creature - Human Scout|1|1|{W}, Sacrifice Salvage Scout: Return target artifact card from your graveyard to your hand.|
Palladium Myr|Scars of Mirrodin|190|U|{3}|Artifact Creature - Myr|2|2|{tap}: Add {C}{C}.|
Panic Spellbomb|Scars of Mirrodin|191|C|{1}|Artifact|||{tap}, Sacrifice Panic Spellbomb: Target creature can't block this turn.$When Panic Spellbomb is put into a graveyard from the battlefield, you may pay {R}. If you do, draw a card.|
-Perilous Myr|Scars of Mirrodin|192|C|{2}|Artifact Creature - Myr|1|1|When Perilous Myr dies, it deals 2 damage to target creature or player.|
+Perilous Myr|Scars of Mirrodin|192|C|{2}|Artifact Creature - Myr|1|1|When Perilous Myr dies, it deals 2 damage to any target.|
Platinum Emperion|Scars of Mirrodin|193|M|{8}|Artifact Creature - Golem|8|8|Your life total can't change. (You can't gain or lose life. You can't pay any amount of life except 0.)|
Precursor Golem|Scars of Mirrodin|194|R|{5}|Artifact Creature - Golem|3|3|When Precursor Golem enters the battlefield, put two 3/3 colorless Golem artifact creature tokens onto the battlefield.$Whenever a player casts an instant or sorcery spell that targets only a single Golem, that player copies that spell for each other Golem that spell could target. Each copy targets a different one of those Golems.|
Prototype Portal|Scars of Mirrodin|195|R|{4}|Artifact|||Imprint - When Prototype Portal enters the battlefield, you may exile an artifact card from your hand.${X}, {tap}: Put a token that's a copy of the exiled card onto the battlefield. X is the converted mana cost of that card.|
@@ -21891,21 +21891,21 @@ Skinrender|Scars of Mirrodin|78|U|{2}{B}{B}|Creature - Zombie|3|3|When Skinrende
Skithiryx, the Blight Dragon|Scars of Mirrodin|79|M|{3}{B}{B}|Legendary Creature - Dragon Skeleton|4|4|Flying$Infect (This creature deals damage to creatures in the form of -1/-1 counters and to players in the form of poison counters.)${B}: Skithiryx, the Blight Dragon gains haste until end of turn.${B}{B}: Regenerate Skithiryx.|
Ghalma's Warden|Scars of Mirrodin|8|C|{3}{W}|Creature - Elephant Soldier|2|4|Metalcraft - Ghalma's Warden gets +2/+2 as long as you control three or more artifacts.|
Tainted Strike|Scars of Mirrodin|80|C|{B}|Instant|||Target creature gets +1/+0 and gains infect until end of turn. (This creature deals damage to creatures in the form of -1/-1 counters and to players in the form of poison counters.)|
-Arc Trail|Scars of Mirrodin|81|U|{1}{R}|Sorcery|||Arc Trail deals 2 damage to target creature or player and 1 damage to another target creature or player.|
+Arc Trail|Scars of Mirrodin|81|U|{1}{R}|Sorcery|||Arc Trail deals 2 damage to any target and 1 damage to another any target.|
Assault Strobe|Scars of Mirrodin|82|C|{R}|Sorcery|||Target creature gains double strike until end of turn. (It deals both first-strike and regular combat damage.)|
-Barrage Ogre|Scars of Mirrodin|83|U|{3}{R}{R}|Creature - Ogre Warrior|3|3|{tap}, Sacrifice an artifact: Barrage Ogre deals 2 damage to target creature or player.|
+Barrage Ogre|Scars of Mirrodin|83|U|{3}{R}{R}|Creature - Ogre Warrior|3|3|{tap}, Sacrifice an artifact: Barrage Ogre deals 2 damage to any target.|
Blade-Tribe Berserkers|Scars of Mirrodin|84|C|{3}{R}|Creature - Human Berserker|3|3|Metalcraft - When Blade-Tribe Berserkers enters the battlefield, if you control three or more artifacts, Blade-Tribe Berserkers gets +3/+3 and gains haste until end of turn.|
Bloodshot Trainee|Scars of Mirrodin|85|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.|
Cerebral Eruption|Scars of Mirrodin|86|R|{2}{R}{R}|Sorcery|||Target opponent reveals the top card of his or her library. Cerebral Eruption deals damage equal to the revealed card's converted mana cost to that player and each creature he or she controls. If a land card is revealed this way, return Cerebral Eruption to its owner's hand.|
-Embersmith|Scars of Mirrodin|87|U|{1}{R}|Creature - Human Artificer|2|1|Whenever you cast an artifact spell, you may pay {1}. If you do, Embersmith deals 1 damage to target creature or player.|
+Embersmith|Scars of Mirrodin|87|U|{1}{R}|Creature - Human Artificer|2|1|Whenever you cast an artifact spell, you may pay {1}. If you do, Embersmith deals 1 damage to any target.|
Ferrovore|Scars of Mirrodin|88|C|{2}{R}|Creature - Beast|2|2|{R}, Sacrifice an artifact: Ferrovore gets +3/+0 until end of turn.|
Flameborn Hellion|Scars of Mirrodin|89|C|{5}{R}|Creature - Hellion|5|4|Haste$Flameborn Hellion attacks each turn if able.|
Glimmerpoint Stag|Scars of Mirrodin|9|U|{2}{W}{W}|Creature - Elk|3|3|Vigilance$When Glimmerpoint Stag enters the battlefield, exile another target permanent. Return that card to the battlefield under its owner's control at the beginning of the next end step.|
-Furnace Celebration|Scars of Mirrodin|90|U|{1}{R}{R}|Enchantment|||Whenever you sacrifice another permanent, you may pay {2}. If you do, Furnace Celebration deals 2 damage to target creature or player.|
-Galvanic Blast|Scars of Mirrodin|91|C|{R}|Instant|||Galvanic Blast deals 2 damage to target creature or player.$Metalcraft - Galvanic Blast deals 4 damage to that creature or player instead if you control three or more artifacts.|
+Furnace Celebration|Scars of Mirrodin|90|U|{1}{R}{R}|Enchantment|||Whenever you sacrifice another permanent, you may pay {2}. If you do, Furnace Celebration deals 2 damage to any target.|
+Galvanic Blast|Scars of Mirrodin|91|C|{R}|Instant|||Galvanic Blast deals 2 damage to any target.$Metalcraft - Galvanic Blast deals 4 damage to that creature or player instead if you control three or more artifacts.|
Goblin Gaveleer|Scars of Mirrodin|92|C|{R}|Creature - Goblin Warrior|1|1|Trample$Goblin Gaveleer gets +2/+0 for each Equipment attached to it.|
Hoard-Smelter Dragon|Scars of Mirrodin|93|R|{4}{R}{R}|Creature - Dragon|5|5|Flying${3}{R}: Destroy target artifact. Hoard-Smelter Dragon gets +X/+0 until end of turn, where X is that artifact's converted mana cost.|
-Koth of the Hammer|Scars of Mirrodin|94|M|{2}{R}{R}|Legendary Planeswalker - Koth|||+1: Untap target Mountain. It becomes a 4/4 red Elemental creature until end of turn. It's still a land.$-2: Add {R} for each Mountain you control.$-5: You get an emblem with "Mountains you control have {tap}: This land deals 1 damage to target creature or player.'"|
+Koth of the Hammer|Scars of Mirrodin|94|M|{2}{R}{R}|Legendary Planeswalker - Koth|||+1: Untap target Mountain. It becomes a 4/4 red Elemental creature until end of turn. It's still a land.$-2: Add {R} for each Mountain you control.$-5: You get an emblem with "Mountains you control have {tap}: This land deals 1 damage to any target.'"|
Kuldotha Phoenix|Scars of Mirrodin|95|R|{2}{R}{R}{R}|Creature - Phoenix|4|4|Flying, haste$Metalcraft - {4}: Return Kuldotha Phoenix from your graveyard to the battlefield. Activate this ability only during your upkeep and only if you control three or more artifacts.|
Kuldotha Rebirth|Scars of Mirrodin|96|C|{R}|Sorcery|||As an additional cost to cast Kuldotha Rebirth, sacrifice an artifact.$Put three 1/1 red Goblin creature tokens onto the battlefield.|
Melt Terrain|Scars of Mirrodin|97|C|{2}{R}{R}|Sorcery|||Destroy target land. Melt Terrain deals 2 damage to that land's controller.|
@@ -21916,11 +21916,11 @@ Dragon Scales|Scourge|10|C|{1}{W}|Enchantment - Aura|||Enchant creature$Enchante
Pyrostatic Pillar|Scourge|100|U|{1}{R}|Enchantment|||Whenever a player casts a spell with converted mana cost 3 or less, Pyrostatic Pillar deals 2 damage to that player.|
Rock Jockey|Scourge|101|C|{2}{R}|Creature - Goblin|3|3|You can't cast Rock Jockey if you've played a land this turn.$You can't play lands if you've cast Rock Jockey this turn.|
Scattershot|Scourge|102|C|{2}{R}|Instant|||Scattershot deals 1 damage to target creature.$Storm (When you cast this spell, copy it for each spell cast before it this turn. You may choose new targets for the copies.)|
-Siege-Gang Commander|Scourge|103|R|{3}{R}{R}|Creature - Goblin|2|2|When Siege-Gang Commander enters the battlefield, put three 1/1 red Goblin creature tokens onto the battlefield.${1}{R}, Sacrifice a Goblin: Siege-Gang Commander deals 2 damage to target creature or player.|
+Siege-Gang Commander|Scourge|103|R|{3}{R}{R}|Creature - Goblin|2|2|When Siege-Gang Commander enters the battlefield, put three 1/1 red Goblin creature tokens onto the battlefield.${1}{R}, Sacrifice a Goblin: Siege-Gang Commander deals 2 damage to any target.|
Skirk Volcanist|Scourge|104|U|{3}{R}|Creature - Goblin|3|1|Morph-Sacrifice two Mountains. You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Skirk Volcanist is turned face up, it deals 3 damage divided as you choose among one, two, or three target creatures.|
-Spark Spray|Scourge|105|C|{R}|Instant|||Spark Spray deals 1 damage to target creature or player.$Cycling {2} ({2}, Discard this card: Draw a card.)|
+Spark Spray|Scourge|105|C|{R}|Instant|||Spark Spray deals 1 damage to any target.$Cycling {2} ({2}, Discard this card: Draw a card.)|
Sulfuric Vortex|Scourge|106|R|{1}{R}{R}|Enchantment|||At the beginning of each player's upkeep, Sulfuric Vortex deals 2 damage to that player.$If a player would gain life, that player gains no life instead.|
-Torrent of Fire|Scourge|107|C|{3}{R}{R}|Sorcery|||Torrent of Fire deals damage equal to the highest converted mana cost among permanents you control to target creature or player.|
+Torrent of Fire|Scourge|107|C|{3}{R}{R}|Sorcery|||Torrent of Fire deals damage equal to the highest converted mana cost among permanents you control to any target.|
Uncontrolled Infestation|Scourge|108|C|{1}{R}|Enchantment - Aura|||Enchant nonbasic land$When enchanted land becomes tapped, destroy it.|
Accelerated Mutation|Scourge|109|C|{3}{G}{G}|Instant|||Target creature gets +X/+X until end of turn, where X is the highest converted mana cost among permanents you control.|
Dragonstalker|Scourge|11|U|{4}{W}|Creature - Bird Soldier|3|3|Flying, protection from Dragons|
@@ -21930,7 +21930,7 @@ Ancient Ooze|Scourge|112|R|{5}{G}{G}|Creature - Ooze|*|*|Ancient Ooze's power an
Break Asunder|Scourge|113|C|{2}{G}{G}|Sorcery|||Destroy target artifact or enchantment.$Cycling {2} ({2}, Discard this card: Draw a card.)|
Claws of Wirewood|Scourge|114|U|{3}{G}|Sorcery|||Claws of Wirewood deals 3 damage to each creature with flying and each player.$Cycling {2} ({2}, Discard this card: Draw a card.)|
Decree of Savagery|Scourge|115|R|{7}{G}{G}|Instant|||Put four +1/+1 counters on each creature you control.$Cycling {4}{G}{G} ({4}{G}{G}, Discard this card: Draw a card.)$When you cycle Decree of Savagery, you may put four +1/+1 counters on target creature.|
-Divergent Growth|Scourge|116|C|{G}|Instant|||Until end of turn, lands you control gain "{tap}: Add one mana of any color to your mana pool."|
+Divergent Growth|Scourge|116|C|{G}|Instant|||Until end of turn, lands you control gain "{tap}: Add one mana of any color."|
Dragon Fangs|Scourge|117|C|{1}{G}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+1 and has trample.$When a creature with converted mana cost 6 or greater enters the battlefield, you may return Dragon Fangs from your graveyard to the battlefield attached to that creature.|
Elvish Aberration|Scourge|118|U|{5}{G}|Creature - Elf Mutant|4|5|{tap}: Add {G}{G}{G}.$Forestcycling {2} ({2}, Discard this card: Search your library for a Forest card, reveal it, and put it into your hand. Then shuffle your library.)|
Fierce Empath|Scourge|119|C|{2}{G}|Creature - Elf|1|1|When Fierce Empath enters the battlefield, you may search your library for a creature card with converted mana cost 6 or greater, reveal it, put it into your hand, then shuffle your library.|
@@ -22035,8 +22035,8 @@ Unspeakable Symbol|Scourge|79|U|{1}{B}{B}|Enchantment|||Pay 3 life: Put a +1/+1
Decree of Justice|Scourge|8|R|{X}{X}{2}{W}{W}|Sorcery|||Put X 4/4 white Angel creature tokens with flying onto the battlefield.$Cycling {2}{W} ({2}{W}, Discard this card: Draw a card.)$When you cycle Decree of Justice, you may pay {X}. If you do, put X 1/1 white Soldier creature tokens onto the battlefield.|
Vengeful Dead|Scourge|80|C|{3}{B}|Creature - Zombie|3|2|Whenever Vengeful Dead or another Zombie dies, each opponent loses 1 life.|
Zombie Cutthroat|Scourge|81|C|{3}{B}{B}|Creature - Zombie|3|4|Morph-Pay 5 life. You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
-Bonethorn Valesk|Scourge|82|C|{4}{R}|Creature - Beast|4|2|Whenever a permanent is turned face up, Bonethorn Valesk deals 1 damage to target creature or player.|
-Carbonize|Scourge|83|U|{2}{R}|Instant|||Carbonize deals 3 damage to target creature or player. That creature can't be regenerated this turn. If the creature would die this turn, exile it instead.|
+Bonethorn Valesk|Scourge|82|C|{4}{R}|Creature - Beast|4|2|Whenever a permanent is turned face up, Bonethorn Valesk deals 1 damage to any target.|
+Carbonize|Scourge|83|U|{2}{R}|Instant|||Carbonize deals 3 damage to any target. That creature can't be regenerated this turn. If the creature would die this turn, exile it instead.|
Chartooth Cougar|Scourge|84|C|{5}{R}|Creature - Cat Beast|4|4|{R}: Chartooth Cougar gets +1/+0 until end of turn.$Mountaincycling {2} ({2}, Discard this card: Search your library for a Mountain card, reveal it, and put it into your hand. Then shuffle your library.)|
Decree of Annihilation|Scourge|85|R|{8}{R}{R}|Sorcery|||Exile all artifacts, creatures, and lands from the battlefield, all cards from all graveyards, and all cards from all hands.$Cycling {5}{R}{R} ({5}{R}{R}, Discard this card: Draw a card.)$When you cycle Decree of Annihilation, destroy all lands.|
Dragon Breath|Scourge|86|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has haste.${R}: Enchanted creature gets +1/+0 until end of turn.$When a creature with converted mana cost 6 or greater enters the battlefield, you may return Dragon Breath from your graveyard to the battlefield attached to that creature.|
@@ -22046,8 +22046,8 @@ Dragonspeaker Shaman|Scourge|89|U|{1}{R}{R}|Creature - Human Barbarian Shaman|2|
Dimensional Breach|Scourge|9|R|{5}{W}{W}|Sorcery|||Exile all permanents. For as long as any of those cards remain exiled, at the beginning of each player's upkeep, that player returns one of the exiled cards he or she owns to the battlefield.|
Dragonstorm|Scourge|90|R|{8}{R}|Sorcery|||Search your library for a Dragon permanent card and put it onto the battlefield. Then shuffle your library.$Storm (When you cast this spell, copy it for each spell cast before it this turn.)|
Enrage|Scourge|91|U|{X}{R}|Instant|||Target creature gets +X/+0 until end of turn.|
-Extra Arms|Scourge|92|U|{4}{R}|Enchantment - Aura|||Enchant creature$Whenever enchanted creature attacks, it deals 2 damage to target creature or player.|
-Form of the Dragon|Scourge|93|R|{4}{R}{R}{R}|Enchantment|||At the beginning of your upkeep, Form of the Dragon deals 5 damage to target creature or player.$At the beginning of each end step, your life total becomes 5.$Creatures without flying can't attack you.|
+Extra Arms|Scourge|92|U|{4}{R}|Enchantment - Aura|||Enchant creature$Whenever enchanted creature attacks, it deals 2 damage to any target.|
+Form of the Dragon|Scourge|93|R|{4}{R}{R}{R}|Enchantment|||At the beginning of your upkeep, Form of the Dragon deals 5 damage to any target.$At the beginning of each end step, your life total becomes 5.$Creatures without flying can't attack you.|
Goblin Brigand|Scourge|94|C|{1}{R}|Creature - Goblin Warrior|2|2|Goblin Brigand attacks each turn if able.|
Goblin Psychopath|Scourge|95|U|{3}{R}|Creature - Goblin Mutant|5|5|Whenever Goblin Psychopath attacks or blocks, flip a coin. If you lose the flip, the next time it would deal combat damage this turn, it deals that damage to you instead.|
Goblin War Strike|Scourge|96|C|{R}|Sorcery|||Goblin War Strike deals damage equal to the number of Goblins you control to target player.|
@@ -22082,7 +22082,7 @@ Bereavement|Seventh Edition|120|U|{1}{B}|Enchantment|||Whenever a green creature
Blood Pet|Seventh Edition|121|C|{B}|Creature - Thrull|1|1|Sacrifice Blood Pet: Add {B}.|
Bog Imp|Seventh Edition|122|C|{1}{B}|Creature - Imp|1|1|Flying (This creature can't be blocked except by creatures with flying or reach.)|
Bog Wraith|Seventh Edition|123|U|{3}{B}|Creature - Wraith|3|3|Swampwalk (This creature is unblockable as long as defending player controls a Swamp.)|
-Corrupt|Seventh Edition|124|C|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to target creature or player. You gain life equal to the damage dealt this way.|
+Corrupt|Seventh Edition|124|C|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to any target. You gain life equal to the damage dealt this way.|
Crypt Rats|Seventh Edition|125|U|{2}{B}|Creature - Rat|1|1|{X}: Crypt Rats deals X damage to each creature and each player. Spend only black mana this way.|
Dakmor Lancer|Seventh Edition|126|U|{4}{B}{B}|Creature - Human Knight|3|3|When Dakmor Lancer enters the battlefield, destroy target nonblack creature.|
Dark Banishing|Seventh Edition|127|C|{2}{B}|Instant|||Destroy target nonblack creature. It can't be regenerated.|
@@ -22138,17 +22138,17 @@ Yawgmoth's Edict|Seventh Edition|171|U|{1}{B}|Enchantment|||Whenever an opponent
AEther Flash|Seventh Edition|172|U|{2}{R}{R}|Enchantment|||Whenever a creature enters the battlefield, Æther Flash deals 2 damage to it.|
Balduvian Barbarians|Seventh Edition|173|C|{1}{R}{R}|Creature - Human Barbarian|3|2||
Bedlam|Seventh Edition|174|R|{2}{R}{R}|Enchantment|||Creatures can't block.|
-Blaze|Seventh Edition|175|U|{X}{R}|Sorcery|||Blaze deals X damage to target creature or player.|
-Bloodshot Cyclops|Seventh Edition|176|R|{5}{R}|Creature - Cyclops Giant|4|4|{tap}, Sacrifice a creature: Bloodshot Cyclops deals damage equal to the sacrificed creature's power to target creature or player.|
+Blaze|Seventh Edition|175|U|{X}{R}|Sorcery|||Blaze deals X damage to any target.|
+Bloodshot Cyclops|Seventh Edition|176|R|{5}{R}|Creature - Cyclops Giant|4|4|{tap}, Sacrifice a creature: Bloodshot Cyclops deals damage equal to the sacrificed creature's power to any target.|
Boil|Seventh Edition|177|U|{3}{R}|Instant|||Destroy all Islands.|
Crimson Hellkite|Seventh Edition|178|R|{6}{R}{R}{R}|Creature - Dragon|6|6|Flying${X}, {tap}: Crimson Hellkite deals X damage to target creature. Spend only red mana this way.|
Disorder|Seventh Edition|179|U|{1}{R}|Sorcery|||Disorder deals 2 damage to each white creature and each player who controls a white creature.|
-Healing Salve|Seventh Edition|18|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to target creature or player this turn.|
+Healing Salve|Seventh Edition|18|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to any target this turn.|
Earthquake|Seventh Edition|180|R|{X}{R}|Sorcery|||Earthquake deals X damage to each creature without flying and each player.|
Fervor|Seventh Edition|181|R|{2}{R}|Enchantment|||Creatures you control have haste. (They can attack and {tap} as soon as they come under your control.)|
Final Fortune|Seventh Edition|182|R|{R}{R}|Instant|||Take an extra turn after this one. At the beginning of that turn's end step, you lose the game.|
Fire Elemental|Seventh Edition|183|U|{3}{R}{R}|Creature - Elemental|5|4||
-Ghitu Fire-Eater|Seventh Edition|184|U|{2}{R}|Creature - Human Nomad|2|2|{tap}, Sacrifice Ghitu Fire-Eater: Ghitu Fire-Eater deals damage equal to its power to target creature or player.|
+Ghitu Fire-Eater|Seventh Edition|184|U|{2}{R}|Creature - Human Nomad|2|2|{tap}, Sacrifice Ghitu Fire-Eater: Ghitu Fire-Eater deals damage equal to its power to any target.|
Goblin Chariot|Seventh Edition|185|C|{2}{R}|Creature - Goblin Warrior|2|2|Haste (This creature can attack the turn it comes under your control.)|
Goblin Digging Team|Seventh Edition|186|C|{R}|Creature - Goblin|1|1|{tap}, Sacrifice Goblin Digging Team: Destroy target Wall.|
Goblin Elite Infantry|Seventh Edition|187|C|{1}{R}|Creature - Goblin Warrior|2|2|Whenever Goblin Elite Infantry blocks or becomes blocked, it gets -1/-1 until end of turn.|
@@ -22167,12 +22167,12 @@ Inferno|Seventh Edition|198|R|{5}{R}{R}|Instant|||Inferno deals 6 damage to each
Lava Axe|Seventh Edition|199|C|{4}{R}|Sorcery|||Lava Axe deals 5 damage to target player.|
Ardent Militia|Seventh Edition|2|U|{4}{W}|Creature - Human Soldier|2|5|Vigilance|
Holy Strength|Seventh Edition|20|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+2.|
-Lightning Blast|Seventh Edition|200|C|{3}{R}|Instant|||Lightning Blast deals 4 damage to target creature or player.|
+Lightning Blast|Seventh Edition|200|C|{3}{R}|Instant|||Lightning Blast deals 4 damage to any target.|
Lightning Elemental|Seventh Edition|201|C|{3}{R}|Creature - Elemental|4|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)|
Mana Clash|Seventh Edition|202|R|{R}|Sorcery|||You and target opponent each flip a coin. Mana Clash deals 1 damage to each player whose coin comes up tails. Repeat this process until both players' coins come up heads on the same flip.|
Ogre Taskmaster|Seventh Edition|203|U|{3}{R}|Creature - Ogre|4|3|Ogre Taskmaster can't block.|
Okk|Seventh Edition|204|R|{1}{R}|Creature - Goblin|4|4|Okk can't attack unless a creature with greater power also attacks.$Okk can't block unless a creature with greater power also blocks.|
-Orcish Artillery|Seventh Edition|205|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Artillery deals 2 damage to target creature or player and 3 damage to you.|
+Orcish Artillery|Seventh Edition|205|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Artillery deals 2 damage to any target and 3 damage to you.|
Orcish Oriflamme|Seventh Edition|206|U|{3}{R}|Enchantment|||Attacking creatures you control get +1/+0.|
Pillage|Seventh Edition|207|U|{1}{R}{R}|Sorcery|||Destroy target artifact or land. It can't be regenerated.|
Pygmy Pyrosaur|Seventh Edition|208|C|{1}{R}|Creature - Lizard|1|1|Pygmy Pyrosaur can't block.$${R}: Pygmy Pyrosaur gets +1/+0 until end of turn.|
@@ -22180,14 +22180,14 @@ Pyroclasm|Seventh Edition|209|U|{1}{R}|Sorcery|||Pyroclasm deals 2 damage to eac
Honor Guard|Seventh Edition|21|C|{W}|Creature - Human Soldier|1|1|{W}: Honor Guard gets +0/+1 until end of turn.|
Pyrotechnics|Seventh Edition|210|U|{4}{R}|Sorcery|||Pyrotechnics deals 4 damage divided as you choose among any number of target creatures and/or players.|
Raging Goblin|Seventh Edition|211|C|{R}|Creature - Goblin Berserker|1|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)|
-Reckless Embermage|Seventh Edition|212|R|{3}{R}|Creature - Human Wizard|2|2|{1}{R}: Reckless Embermage deals 1 damage to target creature or player and 1 damage to itself.|
+Reckless Embermage|Seventh Edition|212|R|{3}{R}|Creature - Human Wizard|2|2|{1}{R}: Reckless Embermage deals 1 damage to any target and 1 damage to itself.|
Reflexes|Seventh Edition|213|C|{R}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Enchanted creature has first strike. (It deals combat damage before creatures without first strike.)|
Relentless Assault|Seventh Edition|214|R|{2}{R}{R}|Sorcery|||Untap all creatures that attacked this turn. After this main phase, there is an additional combat phase followed by an additional main phase.|
Sabretooth Tiger|Seventh Edition|215|C|{2}{R}|Creature - Cat|2|1|First strike|
-Seismic Assault|Seventh Edition|216|R|{R}{R}{R}|Enchantment|||Discard a land card: Seismic Assault deals 2 damage to target creature or player.|
+Seismic Assault|Seventh Edition|216|R|{R}{R}{R}|Enchantment|||Discard a land card: Seismic Assault deals 2 damage to any target.|
Shatter|Seventh Edition|217|C|{1}{R}|Instant|||Destroy target artifact.|
Shivan Dragon|Seventh Edition|218|R|{4}{R}{R}|Creature - Dragon|5|5|Flying${R}: Shivan Dragon gets +1/+0 until end of turn.|
-Shock|Seventh Edition|219|C|{R}|Instant|||Shock deals 2 damage to target creature or player.|
+Shock|Seventh Edition|219|C|{R}|Instant|||Shock deals 2 damage to any target.|
Intrepid Hero|Seventh Edition|22|R|{2}{W}|Creature - Human Soldier|1|1|{tap}: Destroy target creature with power 4 or greater.|
Spitting Earth|Seventh Edition|220|C|{1}{R}|Sorcery|||Spitting Earth deals damage to target creature equal to the number of Mountains you control.|
Stone Rain|Seventh Edition|221|C|{2}{R}|Sorcery|||Destroy target land.|
@@ -22195,13 +22195,13 @@ Storm Shaman|Seventh Edition|222|U|{2}{R}|Creature - Human Cleric Shaman|0|4|{R}
Sudden Impact|Seventh Edition|223|U|{3}{R}|Instant|||Sudden Impact deals damage to target player equal to the number of cards in that player's hand.|
Trained Orgg|Seventh Edition|224|R|{6}{R}|Creature - Orgg|6|6||
Tremor|Seventh Edition|225|C|{R}|Sorcery|||Tremor deals 1 damage to each creature without flying.|
-Volcanic Hammer|Seventh Edition|226|C|{1}{R}|Sorcery|||Volcanic Hammer deals 3 damage to target creature or player.|
+Volcanic Hammer|Seventh Edition|226|C|{1}{R}|Sorcery|||Volcanic Hammer deals 3 damage to any target.|
Wall of Fire|Seventh Edition|227|U|{1}{R}{R}|Creature - Wall|0|5|Defender (This creature can't attack.)${R}: Wall of Fire gets +1/+0 until end of turn.|
Wildfire|Seventh Edition|228|R|{4}{R}{R}|Sorcery|||Each player sacrifices four lands. Wildfire deals 4 damage to each creature.|
Anaconda|Seventh Edition|229|U|{3}{G}|Creature - Snake|3|3|Swampwalk (This creature is unblockable as long as defending player controls a Swamp.)|
Kjeldoran Royal Guard|Seventh Edition|23|R|{3}{W}{W}|Creature - Human Soldier|2|5|{tap}: All combat damage that would be dealt to you by unblocked creatures this turn is dealt to Kjeldoran Royal Guard instead.|
Ancient Silverback|Seventh Edition|230|R|{4}{G}{G}|Creature - Ape|6|5|{G}: Regenerate Ancient Silverback. (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.)|
-Birds of Paradise|Seventh Edition|231|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color to your mana pool.|
+Birds of Paradise|Seventh Edition|231|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color.|
Blanchwood Armor|Seventh Edition|232|U|{2}{G}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Enchanted creature gets +1/+1 for each Forest you control.|
Bull Hippo|Seventh Edition|233|U|{3}{G}|Creature - Hippo|3|3|Islandwalk|
Canopy Spider|Seventh Edition|234|C|{1}{G}|Creature - Spider|1|3|Reach (This creature can block creatures with flying.)|
@@ -22243,7 +22243,7 @@ Rowen|Seventh Edition|266|R|{2}{G}{G}|Enchantment|||Reveal the first card you dr
Scavenger Folk|Seventh Edition|267|U|{G}|Creature - Human|1|1|{G}, {tap}, Sacrifice Scavenger Folk: Destroy target artifact.|
Seeker of Skybreak|Seventh Edition|268|C|{1}{G}|Creature - Elf|2|1|{tap}: Untap target creature.|
Shanodin Dryads|Seventh Edition|269|C|{G}|Creature - Nymph Dryad|1|1|Forestwalk|
-Master Healer|Seventh Edition|27|R|{4}{W}|Creature - Human Cleric|1|4|{tap}: Prevent the next 4 damage that would be dealt to target creature or player this turn.|
+Master Healer|Seventh Edition|27|R|{4}{W}|Creature - Human Cleric|1|4|{tap}: Prevent the next 4 damage that would be dealt to any target this turn.|
Spined Wurm|Seventh Edition|270|C|{4}{G}|Creature - Wurm|5|4||
Squall|Seventh Edition|271|C|{2}{G}|Sorcery|||Squall deals 2 damage to each creature with flying.|
Stream of Life|Seventh Edition|272|C|{X}{G}|Sorcery|||Target player gains X life.|
@@ -22261,7 +22261,7 @@ Wild Growth|Seventh Edition|282|C|{G}|Enchantment - Aura|||Enchant land$Whenever
Wing Snare|Seventh Edition|283|U|{2}{G}|Sorcery|||Destroy target creature with flying.|
Wood Elves|Seventh Edition|284|C|{2}{G}|Creature - Elf Scout|1|1|When Wood Elves enters the battlefield, search your library for a Forest card and put that card onto the battlefield. Then shuffle your library.|
Yavimaya Enchantress|Seventh Edition|285|U|{2}{G}|Creature - Human Druid|2|2|Yavimaya Enchantress gets +1/+1 for each enchantment on the battlefield.|
-Aladdin's Ring|Seventh Edition|286|R|{8}|Artifact|||{8}, {tap}: Aladdin's Ring deals 4 damage to target creature or player.|
+Aladdin's Ring|Seventh Edition|286|R|{8}|Artifact|||{8}, {tap}: Aladdin's Ring deals 4 damage to any target.|
Beast of Burden|Seventh Edition|287|R|{6}|Artifact Creature - Golem|*|*|Beast of Burden's power and toughness are each equal to the number of creatures on the battlefield.|
Caltrops|Seventh Edition|288|U|{3}|Artifact|||Whenever a creature attacks, Caltrops deals 1 damage to it.|
Charcoal Diamond|Seventh Edition|289|U|{2}|Artifact|||Charcoal Diamond enters the battlefield tapped.${tap}: Add {B}.|
@@ -22293,7 +22293,7 @@ Patagia Golem|Seventh Edition|310|U|{4}|Artifact Creature - Golem|2|3|{3}: Patag
Phyrexian Colossus|Seventh Edition|311|R|{7}|Artifact Creature - Golem|8|8|Phyrexian Colossus doesn't untap during your untap step.$Pay 8 life: Untap Phyrexian Colossus.$Phyrexian Colossus can't be blocked except by three or more creatures.|
Phyrexian Hulk|Seventh Edition|312|U|{6}|Artifact Creature - Golem|5|4||
Pit Trap|Seventh Edition|313|U|{2}|Artifact|||{2}, {tap}, Sacrifice Pit Trap: Destroy target attacking creature without flying. It can't be regenerated.|
-Rod of Ruin|Seventh Edition|314|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to target creature or player.|
+Rod of Ruin|Seventh Edition|314|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to any target.|
Sisay's Ring|Seventh Edition|315|U|{4}|Artifact|||{tap}: Add {C}{C}.|
Sky Diamond|Seventh Edition|316|U|{2}|Artifact|||Sky Diamond enters the battlefield tapped.${tap}: Add {U}.|
Soul Net|Seventh Edition|317|U|{1}|Artifact|||Whenever a creature dies, you may pay {1}. If you do, you gain 1 life.|
@@ -22307,7 +22307,7 @@ Wall of Spears|Seventh Edition|323|U|{3}|Artifact Creature - Wall|2|3|Defender <
Wooden Sphere|Seventh Edition|324|U|{1}|Artifact|||Whenever a player casts a green spell, you may pay {1}. If you do, you gain 1 life.|
Adarkar Wastes|Seventh Edition|325|R||Land|||{tap}: Add {C}.${tap}: Add {W} or {U}. Adarkar Wastes deals 1 damage to you.|
Brushland|Seventh Edition|326|R||Land|||{tap}: Add {C}.${tap}: Add {G} or {W}. Brushland deals 1 damage to you.|
-City of Brass|Seventh Edition|327|R||Land|||Whenever City of Brass becomes tapped, it deals 1 damage to you.${tap}: Add one mana of any color to your mana pool.|
+City of Brass|Seventh Edition|327|R||Land|||Whenever City of Brass becomes tapped, it deals 1 damage to you.${tap}: Add one mana of any color.|
Forest|Seventh Edition|328|L||Basic Land - Forest|||G|
Forest|Seventh Edition|329|L||Basic Land - Forest|||G|
Reprisal|Seventh Edition|33|U|{1}{W}|Instant|||Destroy target creature with power 4 or greater. It can't be regenerated.|
@@ -22336,7 +22336,7 @@ Rolling Stones|Seventh Edition|35|R|{1}{W}|Enchantment|||Wall creatures can atta
Underground River|Seventh Edition|350|R||Land|||{tap}: Add {C}.${tap}: Add {U} or {B}. Underground River deals 1 damage to you.|
Sacred Ground|Seventh Edition|36|R|{1}{W}|Enchantment|||Whenever a spell or ability an opponent controls causes a land to be put into your graveyard from the battlefield, return that card to the battlefield.|
Sacred Nectar|Seventh Edition|37|C|{1}{W}|Sorcery|||You gain 4 life.|
-Samite Healer|Seventh Edition|38|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Samite Healer|Seventh Edition|38|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.|
Sanctimony|Seventh Edition|39|U|{1}{W}|Enchantment|||Whenever an opponent taps a Mountain for mana, you may gain 1 life.|
Breath of Life|Seventh Edition|4|U|{3}{W}|Sorcery|||Return target creature card from your graveyard to the battlefield.|
Seasoned Marshal|Seventh Edition|40|U|{2}{W}{W}|Creature - Human Soldier|2|2|Whenever Seasoned Marshal attacks, you may tap target creature.|
@@ -22390,7 +22390,7 @@ Lord of Atlantis|Seventh Edition|83|R|{U}{U}|Creature - Merfolk|2|2|Other Merfol
Mahamoti Djinn|Seventh Edition|84|R|{4}{U}{U}|Creature - Djinn|5|6|Flying (This creature can't be blocked except by creatures with flying or reach.)|
Mana Breach|Seventh Edition|85|U|{2}{U}|Enchantment|||Whenever a player casts a spell, that player returns a land he or she controls to its owner's hand.|
Mana Short|Seventh Edition|86|R|{2}{U}|Instant|||Tap all lands target player controls and empty his or her mana pool.|
-Mawcor|Seventh Edition|87|R|{3}{U}|Creature - Beast|3|3|Flying$${tap}: Mawcor deals 1 damage to target creature or player.|
+Mawcor|Seventh Edition|87|R|{3}{U}|Creature - Beast|3|3|Flying$${tap}: Mawcor deals 1 damage to any target.|
Memory Lapse|Seventh Edition|88|C|{1}{U}|Instant|||Counter target spell. If that spell is countered this way, put it on top of its owner's library instead of into that player's graveyard.|
Merfolk Looter|Seventh Edition|89|U|{1}{U}|Creature - Merfolk Rogue|1|1|{tap}: Draw a card, then discard a card.|
Circle of Protection: Red|Seventh Edition|9|C|{1}{W}|Enchantment|||{1}: The next time a red source of your choice would deal damage to you this turn, prevent that damage.|
@@ -22398,7 +22398,7 @@ Merfolk of the Pearl Trident|Seventh Edition|90|C|{U}|Creature - Merfolk|1|1||
Opportunity|Seventh Edition|91|U|{4}{U}{U}|Instant|||Target player draws four cards.|
Opposition|Seventh Edition|92|R|{2}{U}{U}|Enchantment|||Tap an untapped creature you control: Tap target artifact, creature, or land.|
Phantom Warrior|Seventh Edition|93|U|{1}{U}{U}|Creature - Illusion Warrior|2|2|Phantom Warrior is unblockable.|
-Prodigal Sorcerer|Seventh Edition|94|C|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to target creature or player.|
+Prodigal Sorcerer|Seventh Edition|94|C|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to any target.|
Remove Soul|Seventh Edition|95|C|{1}{U}|Instant|||Counter target creature spell.|
Sage Owl|Seventh Edition|96|C|{1}{U}|Creature - Bird|1|1|Flying$When Sage Owl enters the battlefield, look at the top four cards of your library, then put them back in any order.|
Sea Monster|Seventh Edition|97|C|{4}{U}{U}|Creature - Serpent|6|6|Sea Monster can't attack unless defending player controls an Island.|
@@ -22407,7 +22407,7 @@ Steal Artifact|Seventh Edition|99|U|{2}{U}{U}|Enchantment - Aura|||Enchant artif
Apothecary Initiate|Shadowmoor|1|C|{W}|Creature - Kithkin Cleric|1|1|Whenever a player casts a white spell, you may pay {1}. If you do, you gain 1 life.|
Kithkin Shielddare|Shadowmoor|10|C|{1}{W}|Creature - Kithkin Soldier|1|1|{W}, {tap}: Target blocking creature gets +2/+2 until end of turn.|
Mudbrawler Cohort|Shadowmoor|100|C|{1}{R}|Creature - Goblin Warrior|1|1|Haste$Mudbrawler Cohort gets +1/+1 as long as you control another red creature.|
-Power of Fire|Shadowmoor|101|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{tap}: This creature deals 1 damage to target creature or player."|
+Power of Fire|Shadowmoor|101|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{tap}: This creature deals 1 damage to any target."|
Puncture Bolt|Shadowmoor|102|C|{1}{R}|Instant|||Puncture Bolt deals 1 damage to target creature. Put a -1/-1 counter on that creature.|
Pyre Charger|Shadowmoor|103|U|{R}{R}|Creature - Elemental Warrior|1|1|Haste${R}: Pyre Charger gets +1/+0 until end of turn.|
Rage Reflection|Shadowmoor|104|R|{4}{R}{R}|Enchantment|||Creatures you control have double strike.|
@@ -22507,7 +22507,7 @@ Grief Tyrant|Shadowmoor|189|U|{5}{BR}|Creature - Horror|8|8|Grief Tyrant enters
Resplendent Mentor|Shadowmoor|19|U|{4}{W}|Creature - Kithkin Cleric|2|2|White creatures you control have "{tap}: You gain 1 life."|
Kulrath Knight|Shadowmoor|190|U|{3}{BR}{BR}|Creature - Elemental Knight|3|3|Flying$Wither (This deals damage to creatures in the form of -1/-1 counters.)$Creatures your opponents control with counters on them can't attack or block.|
Manaforge Cinder|Shadowmoor|191|C|{BR}|Creature - Elemental Shaman|1|1|{1}: Add {B} or {R}. Activate this ability no more than three times each turn.|
-Murderous Redcap|Shadowmoor|192|U|{2}{BR}{BR}|Creature - Goblin Assassin|2|2|When Murderous Redcap enters the battlefield, it deals damage equal to its power to target creature or player.$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.)|
+Murderous Redcap|Shadowmoor|192|U|{2}{BR}{BR}|Creature - Goblin Assassin|2|2|When Murderous Redcap enters the battlefield, it deals damage equal to its power to any target.$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.)|
Poison the Well|Shadowmoor|193|C|{2}{BR}{BR}|Sorcery|||Destroy target land. Poison the Well deals 2 damage to that land's controller.|
Scar|Shadowmoor|194|C|{BR}|Instant|||Put a -1/-1 counter on target creature.|
Sootstoke Kindler|Shadowmoor|195|C|{1}{BR}|Creature - Elemental Shaman|1|1|Haste${tap}: Target black or red creature gains haste until end of turn.|
@@ -22529,8 +22529,8 @@ Guttural Response|Shadowmoor|208|U|{RG}|Instant|||Counter target blue instant sp
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.|
Runed Halo|Shadowmoor|21|R|{W}{W}|Enchantment|||As Runed Halo enters the battlefield, name a card.$You have protection from the chosen name. (You can't be targeted, dealt damage, or enchanted by anything with that name.)|
Loamdragger Giant|Shadowmoor|210|C|{4}{RG}{RG}{RG}|Creature - Giant Warrior|7|6||
-Manamorphose|Shadowmoor|211|C|{1}{RG}|Instant|||Add two mana in any combination of colors to your mana pool.$Draw a card.|
-Morselhoarder|Shadowmoor|212|C|{4}{RG}{RG}|Creature - Elemental|6|4|Morselhoarder enters the battlefield with two -1/-1 counters on it.$Remove a -1/-1 counter from Morselhoarder: Add one mana of any color to your mana pool.|
+Manamorphose|Shadowmoor|211|C|{1}{RG}|Instant|||Add two mana in any combination of colors.$Draw a card.|
+Morselhoarder|Shadowmoor|212|C|{4}{RG}{RG}|Creature - Elemental|6|4|Morselhoarder enters the battlefield with two -1/-1 counters on it.$Remove a -1/-1 counter from Morselhoarder: Add one mana of any color.|
Mudbrawler Raiders|Shadowmoor|213|C|{2}{RG}{RG}|Creature - Goblin Warrior|3|3|Mudbrawler Raiders can't be blocked by blue creatures.|
Rosheen Meanderer|Shadowmoor|214|R|{3}{RG}|Legendary Creature - Giant Shaman|4|4|{tap}: Add {C}{C}{C}{C}. Spend this mana only on costs that contain {X}.|
Runes of the Deus|Shadowmoor|215|C|{4}{RG}|Enchantment - Aura|||Enchant creature$As long as enchanted creature is red, it gets +1/+1 and has double strike. (It deals both first-strike and regular combat damage.)$As long as enchanted creature is green, it gets +1/+1 and has trample.|
@@ -22580,13 +22580,13 @@ Illuminated Folio|Shadowmoor|254|U|{5}|Artifact|||{1}, {tap}, Reveal two cards f
Lockjaw Snapper|Shadowmoor|255|U|{4}|Artifact Creature - Scarecrow|2|2|Wither (This deals damage to creatures in the form of -1/-1 counters.)$When Lockjaw Snapper dies, put a -1/-1 counter on each creature with a -1/-1 counter on it.|
Lurebound Scarecrow|Shadowmoor|256|U|{3}|Artifact Creature - Scarecrow|4|4|As Lurebound Scarecrow enters the battlefield, choose a color.$When you control no permanents of the chosen color, sacrifice Lurebound Scarecrow.|
Painter's Servant|Shadowmoor|257|R|{2}|Artifact Creature - Scarecrow|1|3|As Painter's Servant enters the battlefield, choose a color.$All cards that aren't on the battlefield, spells, and permanents are the chosen color in addition to their other colors.|
-Pili-Pala|Shadowmoor|258|C|{2}|Artifact Creature - Scarecrow|1|1|Flying${2}, {untap}: Add one mana of any color to your mana pool. ({untap} is the untap symbol.)|
+Pili-Pala|Shadowmoor|258|C|{2}|Artifact Creature - Scarecrow|1|1|Flying${2}, {untap}: Add one mana of any color. ({untap} is the untap symbol.)|
Rattleblaze Scarecrow|Shadowmoor|259|C|{6}|Artifact Creature - Scarecrow|5|3|Rattleblaze Scarecrow has persist as long as you control a black creature. (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.)$Rattleblaze Scarecrow has haste as long as you control a red creature.|
Windbrisk Raptor|Shadowmoor|26|R|{5}{W}{W}|Creature - Bird|5|7|Flying$Attacking creatures you control have lifelink.|
Reaper King|Shadowmoor|260|R|{2W}{2U}{2B}{2R}{2G}|Legendary Artifact Creature - Scarecrow|6|6|({2W} can be paid with any two mana or with {W}. This card's converted mana cost is 10.)$Other Scarecrow creatures you control get +1/+1.$Whenever another Scarecrow enters the battlefield under your control, destroy target permanent.|
Revelsong Horn|Shadowmoor|261|U|{2}|Artifact|||{1}, {tap}, Tap an untapped creature you control: Target creature gets +1/+1 until end of turn.|
Scrapbasket|Shadowmoor|262|C|{4}|Artifact Creature - Scarecrow|3|2|{1}: Scrapbasket becomes all colors until end of turn.|
-Scuttlemutt|Shadowmoor|263|C|{3}|Artifact Creature - Scarecrow|2|2|{tap}: Add one mana of any color to your mana pool.${tap}: Target creature becomes the color or colors of your choice until end of turn.|
+Scuttlemutt|Shadowmoor|263|C|{3}|Artifact Creature - Scarecrow|2|2|{tap}: Add one mana of any color.${tap}: Target creature becomes the color or colors of your choice until end of turn.|
Tatterkite|Shadowmoor|264|U|{3}|Artifact Creature - Scarecrow|2|1|Flying$Tatterkite can't have counters placed on it.|
Thornwatch Scarecrow|Shadowmoor|265|C|{6}|Artifact Creature - Scarecrow|4|4|Thornwatch Scarecrow has wither as long as you control a green creature. (It deals damage to creatures in the form of -1/-1 counters.)$Thornwatch Scarecrow has vigilance as long as you control a white creature.|
Trip Noose|Shadowmoor|266|U|{2}|Artifact|||{2}, {tap}: Tap target creature.|
@@ -22602,7 +22602,7 @@ Madblind Mountain|Shadowmoor|274|U||Land - Mountain|||({tap}: Add {R}.)$M
Mistveil Plains|Shadowmoor|275|U||Land - Plains|||({tap}: Add {W}.)$Mistveil Plains enters the battlefield tapped.${W}, {tap}: Put target card from your graveyard on the bottom of your library. Activate this ability only if you control two or more white permanents.|
Moonring Island|Shadowmoor|276|U||Land - Island|||({tap}: Add {U}.)$Moonring Island enters the battlefield tapped.${U}, {tap}: Look at the top card of target player's library. Activate this ability only if you control two or more blue permanents.|
Mystic Gate|Shadowmoor|277|R||Land|||{tap}: Add {C}.${WU}, {tap}: Add {W}{W}, {W}{U}, or {U}{U}.|
-Reflecting Pool|Shadowmoor|278|R||Land|||{tap}: Add to your mana pool one mana of any type that a land you control could produce.|
+Reflecting Pool|Shadowmoor|278|R||Land|||{tap}: Add one mana of any type that a land you control could produce.|
Sapseep Forest|Shadowmoor|279|U||Land - Forest|||({tap}: Add {G}.)$Sapseep Forest enters the battlefield tapped.${G}, {tap}: You gain 1 life. Activate this ability only if you control two or more green permanents.|
Advice from the Fae|Shadowmoor|28|U|{2U}{2U}{2U}|Sorcery|||({2U} can be paid with any two mana or with {U}. This card's converted mana cost is 6.)$Look at the top five cards of your library. If you control more creatures than each other player, put two of those cards into your hand. Otherwise, put one of them into your hand. Then put the rest on the bottom of your library in any order.|
Sunken Ruins|Shadowmoor|280|R||Land|||{tap}: Add {C}.${UB}, {tap}: Add {U}{U}, {U}{B}, or {B}{B}.|
@@ -22639,7 +22639,7 @@ Drowner Initiate|Shadowmoor|36|C|{U}|Creature - Merfolk Wizard|1|1|Whenever a pl
Faerie Swarm|Shadowmoor|37|U|{3}{U}|Creature - Faerie|*|*|Flying$Faerie Swarm's power and toughness are each equal to the number of blue permanents you control.|
Flow of Ideas|Shadowmoor|38|U|{5}{U}|Sorcery|||Draw a card for each Island you control.|
Ghastly Discovery|Shadowmoor|39|C|{2}{U}|Sorcery|||Draw two cards, then discard a card.$Conspire (As you cast this spell, you may tap two untapped creatures you control that share a color with it. When you do, copy it.)|
-Barrenton Medic|Shadowmoor|4|C|{4}{W}|Creature - Kithkin Cleric|0|4|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.$Put a -1/-1 counter on Barrenton Medic: Untap Barrenton Medic.|
+Barrenton Medic|Shadowmoor|4|C|{4}{W}|Creature - Kithkin Cleric|0|4|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.$Put a -1/-1 counter on Barrenton Medic: Untap Barrenton Medic.|
Isleback Spawn|Shadowmoor|40|R|{5}{U}{U}|Creature - Kraken|4|8|Shroud$Isleback Spawn gets +4/+8 as long as a library has twenty or fewer cards in it.|
Kinscaer Harpoonist|Shadowmoor|41|C|{3}{U}|Creature - Kithkin Soldier|2|2|Flying$Whenever Kinscaer Harpoonist attacks, you may have target creature lose flying until end of turn.|
Knacksaw Clique|Shadowmoor|42|R|{3}{U}|Creature - Faerie Rogue|1|4|Flying${1}{U}, {untap}: Target opponent exiles the top card of his or her library. Until end of turn, you may play that card. ({untap} is the untap symbol.)|
@@ -22664,7 +22664,7 @@ Cinderbones|Shadowmoor|59|C|{2}{B}|Creature - Elemental Skeleton|1|1|Wither (
Goldenglow Moth|Shadowmoor|6|C|{W}|Creature - Insect|0|1|Flying$Whenever Goldenglow Moth blocks, you may gain 4 life.|
Cinderhaze Wretch|Shadowmoor|60|C|{4}{B}|Creature - Elemental Shaman|3|2|{tap}: Target player discards a card. Activate this ability only during your turn.$Put a -1/-1 counter on Cinderhaze Wretch: Untap Cinderhaze Wretch.|
Corrosive Mentor|Shadowmoor|61|U|{2}{B}|Creature - Elemental Rogue|1|3|Black creatures you control have wither. (They deal damage to creatures in the form of -1/-1 counters.)|
-Corrupt|Shadowmoor|62|U|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to target creature or player. You gain life equal to the damage dealt this way.|
+Corrupt|Shadowmoor|62|U|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to any target. You gain life equal to the damage dealt this way.|
Crowd of Cinders|Shadowmoor|63|U|{3}{B}|Creature - Elemental|*|*|Fear (This creature can't be blocked except by artifact creatures and/or black creatures.)$Crowd of Cinders's power and toughness are each equal to the number of black permanents you control.|
Disturbing Plot|Shadowmoor|64|C|{1}{B}|Sorcery|||Return target creature card from a graveyard to its owner's hand.$Conspire (As you cast this spell, you may tap two untapped creatures you control that share a color with it. When you do, copy it and you may choose a new target for the copy.)|
Dusk Urchins|Shadowmoor|65|R|{2}{B}|Creature - Ouphe|4|3|Whenever Dusk Urchins attacks or blocks, put a -1/-1 counter on it.$When Dusk Urchins dies, draw a card for each -1/-1 counter on it.|
@@ -22690,24 +22690,24 @@ Blistering Dieflyn|Shadowmoor|82|C|{3}{R}|Creature - Imp|0|1|Flying${BR}: Bliste
Bloodmark Mentor|Shadowmoor|83|U|{1}{R}|Creature - Goblin Warrior|1|1|Red creatures you control have first strike.|
Bloodshed Fever|Shadowmoor|84|C|{R}|Enchantment - Aura|||Enchant creature$Enchanted creature attacks each turn if able.|
Boggart Arsonists|Shadowmoor|85|C|{2}{R}|Creature - Goblin Rogue|2|1|Plainswalk${2}{R}, Sacrifice Boggart Arsonists: Destroy target Scarecrow or Plains.|
-Burn Trail|Shadowmoor|86|C|{3}{R}|Sorcery|||Burn Trail deals 3 damage to target creature or player.$Conspire (As you cast this spell, you may tap two untapped creatures you control that share a color with it. When you do, copy it and you may choose a new target for the copy.)|
+Burn Trail|Shadowmoor|86|C|{3}{R}|Sorcery|||Burn Trail deals 3 damage to any target.$Conspire (As you cast this spell, you may tap two untapped creatures you control that share a color with it. When you do, copy it and you may choose a new target for the copy.)|
Cragganwick Cremator|Shadowmoor|87|R|{2}{R}{R}|Creature - Giant Shaman|5|4|When Cragganwick Cremator enters the battlefield, discard a card at random. If you discard a creature card this way, Cragganwick Cremator deals damage equal to that card's power to target player.|
Crimson Wisps|Shadowmoor|88|C|{R}|Instant|||Target creature becomes red and gains haste until end of turn.$Draw a card.|
Deep-Slumber Titan|Shadowmoor|89|R|{2}{R}{R}|Creature - Giant Warrior|7|7|Deep-Slumber Titan enters the battlefield tapped.$Deep-Slumber Titan doesn't untap during your untap step.$Whenever Deep-Slumber Titan is dealt damage, untap it.|
Kithkin Rabble|Shadowmoor|9|U|{3}{W}|Creature - Kithkin|*|*|Vigilance$Kithkin Rabble's power and toughness are each equal to the number of white permanents you control.|
Elemental Mastery|Shadowmoor|90|R|{3}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{tap}: Put X 1/1 red Elemental creature tokens with haste onto the battlefield, where X is this creature's power. Exile them at the beginning of the next end step."|
Ember Gale|Shadowmoor|91|C|{3}{R}|Sorcery|||Creatures target player controls can't block this turn. Ember Gale deals 1 damage to each white and/or blue creature that player controls.|
-Flame Javelin|Shadowmoor|92|U|{2R}{2R}{2R}|Instant|||({2R} can be paid with any two mana or with {R}. This card's converted mana cost is 6.)$Flame Javelin deals 4 damage to target creature or player.|
-Furystoke Giant|Shadowmoor|93|R|{3}{R}{R}|Creature - Giant Warrior|3|3|When Furystoke Giant enters the battlefield, other creatures you control gain "{tap}: This creature deals 2 damage to target creature or player" until end of turn.$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.)|
+Flame Javelin|Shadowmoor|92|U|{2R}{2R}{2R}|Instant|||({2R} can be paid with any two mana or with {R}. This card's converted mana cost is 6.)$Flame Javelin deals 4 damage to any target.|
+Furystoke Giant|Shadowmoor|93|R|{3}{R}{R}|Creature - Giant Warrior|3|3|When Furystoke Giant enters the battlefield, other creatures you control gain "{tap}: This creature deals 2 damage to any target" until end of turn.$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.)|
Horde of Boggarts|Shadowmoor|94|U|{3}{R}|Creature - Goblin|*|*|Horde of Boggarts's power and toughness are each equal to the number of red permanents you control.$Horde of Boggarts can't be blocked except by two or more creatures.|
Inescapable Brute|Shadowmoor|95|C|{5}{R}|Creature - Giant Warrior|3|3|Wither (This deals damage to creatures in the form of -1/-1 counters.)$Inescapable Brute must be blocked if able.|
Intimidator Initiate|Shadowmoor|96|C|{R}|Creature - Goblin Shaman|1|1|Whenever a player casts a red spell, you may pay {1}. If you do, target creature can't block this turn.|
Jaws of Stone|Shadowmoor|97|U|{5}{R}|Sorcery|||Jaws of Stone deals X damage divided as you choose among any number of target creatures and/or players, where X is the number of Mountains you control as you cast Jaws of Stone.|
Knollspine Dragon|Shadowmoor|98|R|{5}{R}{R}|Creature - Dragon|7|5|Flying$When Knollspine Dragon enters the battlefield, you may discard your hand and draw cards equal to the damage dealt to target opponent this turn.|
-Knollspine Invocation|Shadowmoor|99|R|{1}{R}{R}|Enchantment|||{X}, Discard a card with converted mana cost X: Knollspine Invocation deals X damage to target creature or player.|
+Knollspine Invocation|Shadowmoor|99|R|{1}{R}{R}|Enchantment|||{X}, Discard a card with converted mana cost X: Knollspine Invocation deals X damage to any target.|
Akrasan Squire|Shards of Alara|1|C|{W}|Creature - Human Soldier|1|1|Exalted (Whenever a creature you control attacks alone, that creature gets +1/+1 until end of turn.)|
Ethersworn Canonist|Shards of Alara|10|R|{1}{W}|Artifact Creature - Human Cleric|2|2|Each player who has cast a nonartifact spell this turn can't cast additional nonartifact spells.|
-Flameblast Dragon|Shards of Alara|100|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.|
+Flameblast Dragon|Shards of Alara|100|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 any target.|
Goblin Assault|Shards of Alara|101|R|{2}{R}|Enchantment|||At the beginning of your upkeep, put a 1/1 red Goblin creature token with haste onto the battlefield.$Goblin creatures attack each turn if able.|
Goblin Mountaineer|Shards of Alara|102|C|{R}|Creature - Goblin Scout|1|1|Mountainwalk|
Hell's Thunder|Shards of Alara|103|R|{1}{R}{R}|Creature - Elemental|4|4|Flying, haste$At the beginning of the end step, sacrifice Hell's Thunder.$Unearth {4}{R} ({4}{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.)|
@@ -22718,20 +22718,20 @@ Lightning Talons|Shards of Alara|107|C|{2}{R}|Enchantment - Aura|||Enchant creat
Magma Spray|Shards of Alara|108|C|{R}|Instant|||Magma Spray deals 2 damage to target creature. If that creature would die this turn, exile it instead.|
Predator Dragon|Shards of Alara|109|R|{3}{R}{R}{R}|Creature - Dragon|4|4|Flying, haste$Devour 2 (As this enters the battlefield, you may sacrifice any number of creatures. This creature enters the battlefield with twice that many +1/+1 counters on it.)|
Excommunicate|Shards of Alara|11|C|{2}{W}|Sorcery|||Put target creature on top of its owner's library.|
-Resounding Thunder|Shards of Alara|110|C|{2}{R}|Instant|||Resounding Thunder deals 3 damage to target creature or player.$Cycling {5}{B}{R}{G} ({5}{B}{R}{G}, Discard this card: Draw a card.)$When you cycle Resounding Thunder, it deals 6 damage to target creature or player.|
+Resounding Thunder|Shards of Alara|110|C|{2}{R}|Instant|||Resounding Thunder deals 3 damage to any target.$Cycling {5}{B}{R}{G} ({5}{B}{R}{G}, Discard this card: Draw a card.)$When you cycle Resounding Thunder, it deals 6 damage to any target.|
Ridge Rannet|Shards of Alara|111|C|{5}{R}{R}|Creature - Beast|6|4|Cycling {2} ({2}, Discard this card: Draw a card.)|
Rockslide Elemental|Shards of Alara|112|U|{2}{R}|Creature - Elemental|1|1|First strike$Whenever another creature dies, you may put a +1/+1 counter on Rockslide Elemental.|
Scourge Devil|Shards of Alara|113|U|{4}{R}|Creature - Devil|3|3|When Scourge Devil enters the battlefield, creatures you control get +1/+0 until end of turn.$Unearth {2}{R} ({2}{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.)|
Skeletonize|Shards of Alara|114|U|{4}{R}|Instant|||Skeletonize deals 3 damage to target creature. When a creature dealt damage this way dies this turn, put a 1/1 black Skeleton creature token onto the battlefield with "{B}: Regenerate this creature."|
-Soul's Fire|Shards of Alara|115|C|{2}{R}|Instant|||Target creature you control on the battlefield deals damage equal to its power to target creature or player.|
+Soul's Fire|Shards of Alara|115|C|{2}{R}|Instant|||Target creature you control on the battlefield deals damage equal to its power to any target.|
Thorn-Thrash Viashino|Shards of Alara|116|C|{3}{R}|Creature - Viashino Warrior|2|2|Devour 2 (As this enters the battlefield, you may sacrifice any number of creatures. This creature enters the battlefield with twice that many +1/+1 counters on it.)${G}: Thorn-Thrash Viashino gains trample until end of turn.|
Thunder-Thrash Elder|Shards of Alara|117|U|{2}{R}|Creature - Viashino Warrior|1|1|Devour 3 (As this enters the battlefield, you may sacrifice any number of creatures. This creature enters the battlefield with three times that many +1/+1 counters on it.)|
Viashino Skeleton|Shards of Alara|118|C|{3}{R}|Creature - Viashino Skeleton|2|1|{1}{B}, Discard a card: Regenerate Viashino Skeleton.|
Vicious Shadows|Shards of Alara|119|R|{6}{R}|Enchantment|||Whenever a creature dies, you may have Vicious Shadows deal damage to target player equal to the number of cards in that player's hand.|
Guardians of Akrasa|Shards of Alara|12|C|{2}{W}|Creature - Human Soldier|0|4|Defender (This creature can't attack.)$Exalted (Whenever a creature you control attacks alone, that creature gets +1/+1 until end of turn.)|
-Vithian Stinger|Shards of Alara|120|C|{2}{R}|Creature - Human Shaman|0|1|{tap}: Vithian Stinger deals 1 damage to target creature or player.$Unearth {1}{R} ({1}{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.)|
+Vithian Stinger|Shards of Alara|120|C|{2}{R}|Creature - Human Shaman|0|1|{tap}: Vithian Stinger deals 1 damage to any target.$Unearth {1}{R} ({1}{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.)|
Volcanic Submersion|Shards of Alara|121|C|{4}{R}|Sorcery|||Destroy target artifact or land.$Cycling {2} ({2}, Discard this card: Draw a card.)|
-Where Ancients Tread|Shards of Alara|122|R|{4}{R}|Enchantment|||Whenever a creature with power 5 or greater enters the battlefield under your control, you may have Where Ancients Tread deal 5 damage to target creature or player.|
+Where Ancients Tread|Shards of Alara|122|R|{4}{R}|Enchantment|||Whenever a creature with power 5 or greater enters the battlefield under your control, you may have Where Ancients Tread deal 5 damage to any target.|
Algae Gharial|Shards of Alara|123|U|{3}{G}|Creature - Crocodile|1|1|Shroud$Whenever another creature dies, you may put a +1/+1 counter on Algae Gharial.|
Behemoth's Herald|Shards of Alara|124|U|{G}|Creature - Elf Shaman|1|1|{2}{G}, {tap}, Sacrifice a red creature, a green creature, and a white creature: Search your library for a card named Godsire and put it onto the battlefield. Then shuffle your library.|
Cavern Thoctar|Shards of Alara|125|C|{5}{G}|Creature - Beast|5|5|{1}{R}: Cavern Thoctar gets +1/+0 until end of turn.|
@@ -22766,7 +22766,7 @@ Spearbreaker Behemoth|Shards of Alara|150|R|{5}{G}{G}|Creature - Beast|5|5|Spear
Topan Ascetic|Shards of Alara|151|U|{2}{G}|Creature - Human Monk|2|2|Tap an untapped creature you control: Topan Ascetic gets +1/+1 until end of turn.|
Wild Nacatl|Shards of Alara|152|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.|
Agony Warp|Shards of Alara|153|C|{U}{B}|Instant|||Target creature gets -3/-0 until end of turn.$Target creature gets -0/-3 until end of turn.|
-Ajani Vengeant|Shards of Alara|154|M|{2}{R}{W}|Legendary 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.|
+Ajani Vengeant|Shards of Alara|154|M|{2}{R}{W}|Legendary Planeswalker - Ajani|||+1: Target permanent doesn't untap during its controller's next untap step.$-2: Ajani Vengeant deals 3 damage to any target and you gain 3 life.$-7: Destroy all lands target player controls.|
Bant Charm|Shards of Alara|155|U|{G}{W}{U}|Instant|||Choose one - Destroy target artifact; or put target creature on the bottom of its owner's library; or counter target instant spell.|
Blightning|Shards of Alara|156|C|{1}{B}{R}|Sorcery|||Blightning deals 3 damage to target player. That player discards two cards.|
Blood Cultist|Shards of Alara|157|U|{1}{B}{R}|Creature - Human Wizard|1|1|{tap}: Blood Cultist deals 1 damage to target creature.$Whenever a creature dealt damage by Blood Cultist this turn dies, put a +1/+1 counter on Blood Cultist.|
@@ -22973,7 +22973,7 @@ Mons's Goblin Raiders|Starter 1999|112|R|{R}|Creature - Goblin|1|1||
Ogre Warrior|Starter 1999|113|C|{3}{R}|Creature - Ogre Warrior|3|3||
Raging Goblin|Starter 1999|114|C|{R}|Creature - Goblin Berserker|1|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)|
Relentless Assault|Starter 1999|115|R|{2}{R}{R}|Sorcery|||Untap all creatures that attacked this turn. After this main phase, there is an additional combat phase followed by an additional main phase.|
-Scorching Spear|Starter 1999|116|C|{R}|Sorcery|||Scorching Spear deals 1 damage to target creature or player.|
+Scorching Spear|Starter 1999|116|C|{R}|Sorcery|||Scorching Spear deals 1 damage to any target.|
Spitting Earth|Starter 1999|117|U|{1}{R}|Sorcery|||Spitting Earth deals damage to target creature equal to the number of Mountains you control.|
Stone Rain|Starter 1999|118|C|{2}{R}|Sorcery|||Destroy target land.|
Thunder Dragon|Starter 1999|119|R|{5}{R}{R}|Creature - Dragon|5|5|Flying$When Thunder Dragon enters the battlefield, it deals 3 damage to each creature without flying.|
@@ -22981,7 +22981,7 @@ Charging Paladin|Starter 1999|12|U|{2}{W}|Creature - Human Knight|2|2|Whenever C
Trained Orgg|Starter 1999|120|R|{6}{R}|Creature - Orgg|6|6||
Tremor|Starter 1999|121|C|{R}|Sorcery|||Tremor deals 1 damage to each creature without flying.|
Volcanic Dragon|Starter 1999|122|R|{4}{R}{R}|Creature - Dragon|4|4|Flying$Haste (This creature can attack and {tap} as soon as it comes under your control.)|
-Volcanic Hammer|Starter 1999|123|C|{1}{R}|Sorcery|||Volcanic Hammer deals 3 damage to target creature or player.|
+Volcanic Hammer|Starter 1999|123|C|{1}{R}|Sorcery|||Volcanic Hammer deals 3 damage to any target.|
Alluring Scent|Starter 1999|124|R|{1}{G}{G}|Sorcery|||All creatures able to block target creature this turn do so.|
Barbtooth Wurm|Starter 1999|125|C|{5}{G}|Creature - Wurm|6|4||
Bull Hippo|Starter 1999|126|U|{3}{G}|Creature - Hippo|3|3|Islandwalk|
@@ -23120,7 +23120,7 @@ Border Guard|Starter 1999|9|C|{2}{W}|Creature - Human Soldier|1|4||
Soul Feast|Starter 1999|90|U|{3}{B}{B}|Sorcery|||Target player loses 4 life and you gain 4 life.|
Stream of Acid|Starter 1999|91|U|{2}{B}{B}|Sorcery|||Destroy target land or nonblack creature.|
Wicked Pact|Starter 1999|92|R|{1}{B}{B}|Sorcery|||Destroy two target nonblack creatures. You lose 5 life.|
-Cinder Storm|Starter 1999|93|U|{6}{R}|Sorcery|||Cinder Storm deals 7 damage to target creature or player.|
+Cinder Storm|Starter 1999|93|U|{6}{R}|Sorcery|||Cinder Storm deals 7 damage to any target.|
Devastation|Starter 1999|94|R|{5}{R}{R}|Sorcery|||Destroy all creatures and lands.|
Earth Elemental|Starter 1999|95|U|{3}{R}{R}|Creature - Elemental|4|5||
Fire Elemental|Starter 1999|96|U|{3}{R}{R}|Creature - Elemental|5|4||
@@ -23128,7 +23128,7 @@ Fire Tempest|Starter 1999|97|R|{5}{R}{R}|Sorcery|||Fire Tempest deals 6 damage t
Goblin Cavaliers|Starter 1999|98|C|{2}{R}|Creature - Goblin|3|2||
Goblin Chariot|Starter 1999|99|C|{2}{R}|Creature - Goblin Warrior|2|2|Haste (This creature can attack the turn it comes under your control.)|
Angelic Blessing|Starter 2000|1|C|{2}{W}|Sorcery|||Target creature gets +3/+3 and gains flying until end of turn. (It can't be blocked except by creatures with flying or reach.)|
-Shock|Starter 2000|1|C|{R}|Instant|||Shock deals 2 damage to target creature or player.|
+Shock|Starter 2000|1|C|{R}|Instant|||Shock deals 2 damage to any target.|
Monstrous Growth|Starter 2000|10|C|{1}{G}|Sorcery|||Target creature gets +4/+4 until end of turn.|
Mountain|Starter 2000|102|L||Basic Land - Mountain|||R|
Goblin Hero|Starter 2000|103|C|{2}{R}|Creature - Goblin|2|2||
@@ -23154,16 +23154,16 @@ Breath of Life|Starter 2000|2|U|{3}{W}|Sorcery|||Return target creature card fro
Flight|Starter 2000|2|C|{U}|Enchantment - Aura|||Enchant creature$Enchanted creature has flying.|
Willow Elf|Starter 2000|20|C|{G}|Creature - Elf|1|1||
Orcish Oriflamme|Starter 2000|206|U|{3}{R}|Enchantment|||Attacking creatures you control get +1/+0.|
-Rod of Ruin|Starter 2000|219|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to target creature or player.|
+Rod of Ruin|Starter 2000|219|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to any target.|
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.)|
Stone Rain|Starter 2000|221|C|{2}{R}|Sorcery|||Destroy target land.|
Counterspell|Starter 2000|24|C|{U}{U}|Instant|||Counter target spell.|
Hero's Resolve|Starter 2000|24|C|{1}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+5.|
-Samite Healer|Starter 2000|244|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Samite Healer|Starter 2000|244|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.|
Island|Starter 2000|253|L||Basic Land - Island|||U|
Forest|Starter 2000|262|L||Basic Land - Forest|||G|
Plains|Starter 2000|275|L||Basic Land - Plains|||W|
-Prodigal Sorcerer|Starter 2000|29|C|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to target creature or player.|
+Prodigal Sorcerer|Starter 2000|29|C|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to any target.|
Durkwood Boars|Starter 2000|3|C|{4}{G}|Creature - Boar|4|4||
Obsianus Golem|Starter 2000|303|U|{6}|Artifact Creature - Golem|4|6||
Soul Net|Starter 2000|317|U|{1}|Artifact|||Whenever a creature dies, you may pay {1}. If you do, you gain 1 life.|
@@ -23258,9 +23258,9 @@ Amok|Stronghold|76|R|{1}{R}|Enchantment|||{1}, Discard a card at random: Put a +
Convulsing Licid|Stronghold|77|U|{2}{R}|Creature - Licid|2|2|{R}, {tap}: Convulsing Licid loses this ability and becomes an Aura enchantment with enchant creature. Attach it to target creature. You may pay {R} to end this effect.$Enchanted creature can't block.|
Craven Giant|Stronghold|78|C|{2}{R}|Creature - Giant|4|1|Craven Giant can't block.|
Duct Crawler|Stronghold|79|C|{R}|Creature - Insect|1|1|{1}{R}: Target creature can't block Duct Crawler this turn.|
-Fanning the Flames|Stronghold|80|U|{X}{R}{R}|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.)$Fanning the Flames deals X damage to target creature or player.|
+Fanning the Flames|Stronghold|80|U|{X}{R}{R}|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.)$Fanning the Flames deals X damage to any target.|
Flame Wave|Stronghold|81|U|{3}{R}{R}{R}{R}|Sorcery|||Flame Wave deals 4 damage to target player and each creature he or she controls.|
-Fling|Stronghold|82|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.|
+Fling|Stronghold|82|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 any target.|
Flowstone Blade|Stronghold|83|C|{R}|Enchantment - Aura|||Enchant creature${R}: Enchanted creature gets +1/-1 until end of turn.|
Flowstone Hellion|Stronghold|84|U|{4}{R}|Creature - Hellion Beast|3|3|Haste${0}: Flowstone Hellion gets +1/-1 until end of turn.|
Flowstone Mauler|Stronghold|85|R|{4}{R}{R}|Creature - Beast|4|5|Trample${R}: Flowstone Mauler gets +1/-1 until end of turn.|
@@ -23276,10 +23276,10 @@ Mogg Maniac|Stronghold|94|U|{1}{R}|Creature - Goblin|1|1|Whenever Mogg Maniac is
Ruination|Stronghold|95|R|{3}{R}|Sorcery|||Destroy all nonbasic lands.|
Seething Anger|Stronghold|96|C|{R}|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.)$Target creature gets +3/+0 until end of turn.|
Shard Phoenix|Stronghold|97|R|{4}{R}|Creature - Phoenix|2|2|Flying (This creature can't be blocked except by creatures with flying or reach.)$Sacrifice Shard Phoenix: Shard Phoenix deals 2 damage to each creature without flying.${R}{R}{R}: Return Shard Phoenix from your graveyard to your hand. Activate this ability only during your upkeep.|
-Shock|Stronghold|98|C|{R}|Instant|||Shock deals 2 damage to target creature or player.|
+Shock|Stronghold|98|C|{R}|Instant|||Shock deals 2 damage to any target.|
Spitting Hydra|Stronghold|99|R|{3}{R}{R}|Creature - Hydra|0|0|Spitting Hydra enters the battlefield with four +1/+1 counters on it.${1}{R}, Remove a +1/+1 counter from Spitting Hydra: Spitting Hydra deals 1 damage to target creature.|
Wall of Razors|Stronghold|100|U|{1}{R}|Creature - Wall|4|1|Defender (This creature can't attack.)$First strike|
-Bandage|Stronghold|101|C|{W}|Instant|||Prevent the next 1 damage that would be dealt to target creature or player this turn.$Draw a card.|
+Bandage|Stronghold|101|C|{W}|Instant|||Prevent the next 1 damage that would be dealt to any target this turn.$Draw a card.|
Calming Licid|Stronghold|102|U|{2}{W}|Creature - Licid|2|2|{W}, {tap}: Calming Licid loses this ability and becomes an Aura enchantment with enchant creature. Attach it to target creature. You may pay {W} to end this effect.$Enchanted creature can't attack.|
Change of Heart|Stronghold|103|C|{W}|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.)$Target creature can't attack this turn.|
Contemplation|Stronghold|104|U|{1}{W}{W}|Enchantment|||Whenever you cast a spell, you gain 1 life.|
@@ -23310,13 +23310,13 @@ Heartstone|Stronghold|128|U|{3}|Artifact|||Activated abilities of creatures cost
Horn of Greed|Stronghold|129|R|{3}|Artifact|||Whenever a player plays a land, that player draws a card.|
Hornet Cannon|Stronghold|130|U|{4}|Artifact|||{3}, {tap}: Put a 1/1 colorless Insect artifact creature token with flying and haste named Hornet onto the battlefield. Destroy it at the beginning of the next end step.|
Jinxed Ring|Stronghold|131|R|{2}|Artifact|||Whenever a nontoken permanent is put into your graveyard from the battlefield, Jinxed Ring deals 1 damage to you.$Sacrifice a creature: Target opponent gains control of Jinxed Ring. (This effect lasts indefinitely.)|
-Mox Diamond|Stronghold|132|R|{0}|Artifact|||If Mox Diamond would enter the battlefield, you may discard a land card instead. If you do, put Mox Diamond onto the battlefield. If you don't, put it into its owner's graveyard.${tap}: Add one mana of any color to your mana pool.|
+Mox Diamond|Stronghold|132|R|{0}|Artifact|||If Mox Diamond would enter the battlefield, you may discard a land card instead. If you do, put Mox Diamond onto the battlefield. If you don't, put it into its owner's graveyard.${tap}: Add one mana of any color.|
Portcullis|Stronghold|133|R|{4}|Artifact|||Whenever a creature enters the battlefield, if there are two or more other creatures on the battlefield, exile that creature. Return that card to the battlefield under its owner's control when Portcullis leaves the battlefield.|
Shifting Wall|Stronghold|134|U|{X}|Artifact Creature - Wall|0|0|Defender (This creature can't attack.)$Shifting Wall enters the battlefield with X +1/+1 counters on it.|
Sword of the Chosen|Stronghold|135|R|{2}|Legendary Artifact|||{tap}: Target legendary creature gets +2/+2 until end of turn.|
Volrath's Laboratory|Stronghold|136|R|{5}|Artifact|||As Volrath's Laboratory enters the battlefield, choose a color and a creature type.${5}, {tap}: Put a 2/2 creature token of the chosen color and type onto the battlefield.|
Volrath's Stronghold|Stronghold|137|R||Legendary Land|||{tap}: Add {C}.$${1}{B}, {tap}: Put target creature card from your graveyard on top of your library.|
-Acidic Sliver|Stronghold|138|U|{B}{R}|Creature - Sliver|2|2|All Slivers have "{2}, Sacrifice this permanent: This permanent deals 2 damage to target creature or player."|
+Acidic Sliver|Stronghold|138|U|{B}{R}|Creature - Sliver|2|2|All Slivers have "{2}, Sacrifice this permanent: This permanent deals 2 damage to any target."|
Crystalline Sliver|Stronghold|139|U|{W}{U}|Creature - Sliver|2|2|All Slivers have shroud. (They can't be the targets of spells or abilities.)|
Hibernation Sliver|Stronghold|140|U|{U}{B}|Creature - Sliver|2|2|All Slivers have "Pay 2 life: Return this permanent to its owner's hand."|
Sliver Queen|Stronghold|141|R|{W}{U}{B}{R}{G}|Legendary Creature - Sliver|7|7|{2}: Put a 1/1 colorless Sliver creature token onto the battlefield.|
@@ -23396,14 +23396,14 @@ Legacy's Allure|Tempest|71|U|{U}{U}|Enchantment|||At the beginning of your upkee
Legerdemain|Tempest|72|U|{2}{U}{U}|Sorcery|||Exchange control of target artifact or creature and another target permanent that shares one of those types with it. (This effect lasts indefinitely.)|
Mana Severance|Tempest|73|R|{1}{U}|Sorcery|||Search your library for any number of land cards and exile them. Then shuffle your library.|
Manta Riders|Tempest|74|C|{U}|Creature - Merfolk|1|1|{U}: Manta Riders gains flying until end of turn.|
-Mawcor|Tempest|75|R|{3}{U}|Creature - Beast|3|3|Flying$${tap}: Mawcor deals 1 damage to target creature or player.|
+Mawcor|Tempest|75|R|{3}{U}|Creature - Beast|3|3|Flying$${tap}: Mawcor deals 1 damage to any target.|
Meditate|Tempest|76|R|{2}{U}|Instant|||Draw four cards. You skip your next turn.|
Mnemonic Sliver|Tempest|77|U|{2}{U}|Creature - Sliver|2|2|All Slivers have "{2}, Sacrifice this permanent: Draw a card."|
Power Sink|Tempest|78|C|{X}{U}|Instant|||Counter target spell unless its controller pays {X}. If he or she doesn't, that player taps all lands with mana abilities he or she controls and empties his or her mana pool.|
Precognition|Tempest|79|R|{4}{U}|Enchantment|||At the beginning of your upkeep, you may look at the top card of target opponent's library. If you do, you may put that card on the bottom of that player's library.|
Propaganda|Tempest|80|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.|
Rootwater Diver|Tempest|81|U|{U}|Creature - Merfolk|1|1|{tap}, Sacrifice Rootwater Diver: Return target artifact card from your graveyard to your hand.|
-Rootwater Hunter|Tempest|82|C|{2}{U}|Creature - Merfolk|1|1|{tap}: Rootwater Hunter deals 1 damage to target creature or player.|
+Rootwater Hunter|Tempest|82|C|{2}{U}|Creature - Merfolk|1|1|{tap}: Rootwater Hunter deals 1 damage to any target.|
Rootwater Matriarch|Tempest|83|R|{2}{U}{U}|Creature - Merfolk|2|3|{tap}: Gain control of target creature for as long as that creature is enchanted.|
Rootwater Shaman|Tempest|84|R|{2}{U}|Creature - Merfolk Shaman|2|2|You may cast Aura cards with enchant creature as though they had flash.|
Sea Monster|Tempest|85|C|{4}{U}{U}|Creature - Serpent|6|6|Sea Monster can't attack unless defending player controls an Island.|
@@ -23494,24 +23494,24 @@ Crown of Flames|Tempest|169|C|{R}|Enchantment - Aura|||Enchant creature${R}: Enc
Deadshot|Tempest|170|R|{3}{R}|Sorcery|||Tap target creature. It deals damage equal to its power to another target creature.|
Enraging Licid|Tempest|171|U|{1}{R}|Creature - Licid|1|1|{R}, {tap}: Enraging Licid loses this ability and becomes an Aura enchantment with enchant creature. Attach it to target creature. You may pay {R} to end this effect.$Enchanted creature has haste.|
Firefly|Tempest|172|U|{3}{R}|Creature - Insect|1|1|Flying${R}: Firefly gets +1/+0 until end of turn.|
-Fireslinger|Tempest|173|C|{1}{R}|Creature - Human Wizard|1|1|{tap}: Fireslinger deals 1 damage to target creature or player and 1 damage to you.|
+Fireslinger|Tempest|173|C|{1}{R}|Creature - Human Wizard|1|1|{tap}: Fireslinger deals 1 damage to any target and 1 damage to you.|
Flowstone Giant|Tempest|174|C|{2}{R}{R}|Creature - Giant|3|3|{R}: Flowstone Giant gets +2/-2 until end of turn.|
Flowstone Salamander|Tempest|175|U|{3}{R}{R}|Creature - Salamander|3|4|{R}: Flowstone Salamander deals 1 damage to target creature blocking it.|
Flowstone Wyvern|Tempest|176|R|{3}{R}{R}|Creature - Drake|3|3|Flying${R}: Flowstone Wyvern gets +2/-2 until end of turn.|
Furnace of Rath|Tempest|177|R|{1}{R}{R}{R}|Enchantment|||If a source would deal damage to a creature or player, it deals double that damage to that creature or player instead.|
Giant Strength|Tempest|178|C|{R}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2.|
-Goblin Bombardment|Tempest|179|U|{1}{R}|Enchantment|||Sacrifice a creature: Goblin Bombardment deals 1 damage to target creature or player.|
+Goblin Bombardment|Tempest|179|U|{1}{R}|Enchantment|||Sacrifice a creature: Goblin Bombardment deals 1 damage to any target.|
Hand to Hand|Tempest|180|R|{2}{R}|Enchantment|||During combat, players can't cast instant spells or activate abilities that aren't mana abilities.|
Havoc|Tempest|181|U|{1}{R}|Enchantment|||Whenever an opponent casts a white spell, he or she loses 2 life.|
Heart Sliver|Tempest|182|C|{1}{R}|Creature - Sliver|1|1|All Sliver creatures have haste.|
Jackal Pup|Tempest|183|U|{R}|Creature - Hound|2|1|Whenever Jackal Pup is dealt damage, it deals that much damage to you.|
-Kindle|Tempest|184|C|{1}{R}|Instant|||Kindle deals X damage to target creature or player, where X is 2 plus the number of cards named Kindle in all graveyards.|
-Lightning Blast|Tempest|185|C|{3}{R}|Instant|||Lightning Blast deals 4 damage to target creature or player.|
+Kindle|Tempest|184|C|{1}{R}|Instant|||Kindle deals X damage to any target, where X is 2 plus the number of cards named Kindle in all graveyards.|
+Lightning Blast|Tempest|185|C|{3}{R}|Instant|||Lightning Blast deals 4 damage to any target.|
Lightning Elemental|Tempest|186|C|{3}{R}|Creature - Elemental|4|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)|
Lowland Giant|Tempest|187|C|{2}{R}{R}|Creature - Giant|4|3||
Magmasaur|Tempest|188|R|{3}{R}{R}|Creature - Elemental Lizard|0|0|Magmasaur enters the battlefield with five +1/+1 counters on it.$At the beginning of your upkeep, you may remove a +1/+1 counter from Magmasaur. If you don't, sacrifice Magmasaur and it deals damage equal to the number of +1/+1 counters on it to each creature without flying and each player.|
Mogg Conscripts|Tempest|189|C|{R}|Creature - Goblin|2|2|Mogg Conscripts can't attack unless you've cast a creature spell this turn.|
-Mogg Fanatic|Tempest|190|C|{R}|Creature - Goblin|1|1|Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to target creature or player.|
+Mogg Fanatic|Tempest|190|C|{R}|Creature - Goblin|1|1|Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to any target.|
Mogg Raider|Tempest|191|C|{R}|Creature - Goblin|1|1|Sacrifice a Goblin: Target creature gets +1/+1 until end of turn.|
Mogg Squad|Tempest|192|U|{1}{R}|Creature - Goblin|3|3|Mogg Squad gets -1/-1 for each other creature on the battlefield.|
No Quarter|Tempest|193|R|{3}{R}|Enchantment|||Whenever a creature becomes blocked by a creature with lesser power, destroy the blocking creature.$$Whenever a creature blocks a creature with lesser power, destroy the attacking creature.|
@@ -23522,7 +23522,7 @@ Renegade Warlord|Tempest|197|U|{4}{R}|Creature - Human Soldier|3|3|First strike$
Rolling Thunder|Tempest|198|C|{X}{R}{R}|Sorcery|||Rolling Thunder deals X damage divided as you choose among any number of target creatures and/or players.|
Sandstone Warrior|Tempest|199|C|{2}{R}{R}|Creature - Human Soldier Warrior|1|3|First strike (This creature deals combat damage before creatures without first strike.)${R}: Sandstone Warrior gets +1/+0 until end of turn.|
Scorched Earth|Tempest|200|R|{X}{R}|Sorcery|||As an additional cost to cast Scorched Earth, discard X land cards.$Destroy X target lands.|
-Searing Touch|Tempest|201|U|{R}|Instant|||Buyback {4} (You may pay an additional {4} as you cast this spell. If you do, put this card into your hand as it resolves.)$Searing Touch deals 1 damage to target creature or player.|
+Searing Touch|Tempest|201|U|{R}|Instant|||Buyback {4} (You may pay an additional {4} as you cast this spell. If you do, put this card into your hand as it resolves.)$Searing Touch deals 1 damage to any target.|
Shadowstorm|Tempest|202|U|{R}|Sorcery|||Shadowstorm deals 2 damage to each creature with shadow.|
Shatter|Tempest|203|C|{1}{R}|Instant|||Destroy target artifact.|
Shocker|Tempest|204|R|{1}{R}|Creature - Insect|1|1|Whenever Shocker deals damage to a player, that player discards all the cards in his or her hand, then draws that many cards.|
@@ -23547,7 +23547,7 @@ Circle of Protection: Green|Tempest|222|C|{1}{W}|Enchantment|||{1}: The next tim
Circle of Protection: Red|Tempest|223|C|{1}{W}|Enchantment|||{1}: The next time a red source of your choice would deal damage to you this turn, prevent that damage.|
Circle of Protection: Shadow|Tempest|224|C|{1}{W}|Enchantment|||{1}: The next time a creature of your choice with shadow would deal damage to you this turn, prevent that damage.|
Circle of Protection: White|Tempest|225|C|{1}{W}|Enchantment|||{1}: The next time a white source of your choice would deal damage to you this turn, prevent that damage.|
-Clergy en-Vec|Tempest|226|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Clergy en-Vec|Tempest|226|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.|
Cloudchaser Eagle|Tempest|227|C|{3}{W}|Creature - Bird|2|2|Flying$When Cloudchaser Eagle enters the battlefield, destroy target enchantment.|
Disenchant|Tempest|228|C|{1}{W}|Instant|||Destroy target artifact or enchantment.|
Elite Javelineer|Tempest|229|C|{2}{W}|Creature - Human Soldier|2|2|Whenever Elite Javelineer blocks, it deals 1 damage to target attacking creature.|
@@ -23565,7 +23565,7 @@ Marble Titan|Tempest|240|R|{3}{W}|Creature - Giant|3|3|Creatures with power 3 or
Master Decoy|Tempest|241|C|{1}{W}|Creature - Human Soldier|1|2|{W}, {tap}: Tap target creature.|
Mounted Archers|Tempest|242|C|{3}{W}|Creature - Human Soldier Archer|2|3|Reach (This creature can block creatures with flying.)${W}: Mounted Archers can block an additional creature this turn.|
Oracle en-Vec|Tempest|243|R|{1}{W}|Creature - Human Wizard|1|1|{tap}: Target opponent chooses any number of creatures he or she controls. During that player's next turn, the chosen creatures attack if able, and other creatures can't attack. At the beginning of that turn's end step, destroy each of the chosen creatures that didn't attack. Activate this ability only during your turn.|
-Orim, Samite Healer|Tempest|244|R|{1}{W}{W}|Legendary Creature - Human Cleric|1|3|{tap}: Prevent the next 3 damage that would be dealt to target creature or player this turn.|
+Orim, Samite Healer|Tempest|244|R|{1}{W}{W}|Legendary Creature - Human Cleric|1|3|{tap}: Prevent the next 3 damage that would be dealt to any target this turn.|
Orim's Prayer|Tempest|245|U|{1}{W}{W}|Enchantment|||Whenever one or more creatures attack you, you gain 1 life for each attacking creature.|
Pacifism|Tempest|246|C|{1}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature can't attack or block.|
Pegasus Refuge|Tempest|247|R|{3}{W}|Enchantment|||{2}, Discard a card: Put a 1/1 white Pegasus creature token with flying onto the battlefield.|
@@ -23592,7 +23592,7 @@ Booby Trap|Tempest|267|R|{6}|Artifact|||As Booby Trap enters the battlefield, na
Bottle Gnomes|Tempest|268|U|{3}|Artifact Creature - Gnome|1|3|Sacrifice Bottle Gnomes: You gain 3 life.|
Coiled Tinviper|Tempest|269|C|{3}|Artifact Creature - Snake|2|1|First strike|
Cold Storage|Tempest|270|R|{4}|Artifact|||{3}: Exile target creature you control.$Sacrifice Cold Storage: Return each creature card exiled with Cold Storage to the battlefield under your control.|
-Cursed Scroll|Tempest|271|R|{1}|Artifact|||{3}, {tap}: Name a card. Reveal a card at random from your hand. If it's the named card, Cursed Scroll deals 2 damage to target creature or player.|
+Cursed Scroll|Tempest|271|R|{1}|Artifact|||{3}, {tap}: Name a card. Reveal a card at random from your hand. If it's the named card, Cursed Scroll deals 2 damage to any target.|
Echo Chamber|Tempest|272|R|{4}|Artifact|||{4}, {tap}: An opponent chooses target creature he or she controls. Put a token that's a copy of that creature onto the battlefield. That token gains haste until end of turn. Exile the token at the beginning of the next end step. Activate this ability only any time you could cast a sorcery.|
Emerald Medallion|Tempest|273|R|{2}|Artifact|||Green spells you cast cost {1} less to cast.|
Emmessi Tome|Tempest|274|R|{4}|Artifact|||{5}, {tap}: Draw two cards, then discard a card.|
@@ -23605,7 +23605,7 @@ Grindstone|Tempest|280|R|{1}|Artifact|||{3}, {tap}: Target player puts the top t
Helm of Possession|Tempest|281|R|{4}|Artifact|||You may choose not to untap Helm of Possession during your untap step.${2}, {tap}, Sacrifice a creature: Gain control of target creature for as long as you control Helm of Possession and Helm of Possession remains tapped.|
Jet Medallion|Tempest|282|R|{2}|Artifact|||Black spells you cast cost {1} less to cast.|
Jinxed Idol|Tempest|283|R|{2}|Artifact|||At the beginning of your upkeep, Jinxed Idol deals 2 damage to you.$Sacrifice a creature: Target opponent gains control of Jinxed Idol.|
-Lotus Petal|Tempest|284|C|{0}|Artifact|||{tap}, Sacrifice Lotus Petal: Add one mana of any color to your mana pool.|
+Lotus Petal|Tempest|284|C|{0}|Artifact|||{tap}, Sacrifice Lotus Petal: Add one mana of any color.|
Magnetic Web|Tempest|285|R|{2}|Artifact|||If a creature with a magnet counter on it attacks, all creatures with magnet counters on them attack if able.$Whenever a creature with a magnet counter on it attacks, all creatures with magnet counters on them block that creature this turn if able.${1}, {tap}: Put a magnet counter on target creature.|
Manakin|Tempest|286|C|{2}|Artifact Creature - Construct|1|1|{tap}: Add {C}.|
Metallic Sliver|Tempest|287|C|{1}|Artifact Creature - Sliver|1|1||
@@ -23649,7 +23649,7 @@ Plains|Tempest|324|L||Basic Land - Plains|||W|
Plains|Tempest|325|L||Basic Land - Plains|||W|
Plains|Tempest|326|L||Basic Land - Plains|||W|
Plains|Tempest|327|L||Basic Land - Plains|||W|
-Reflecting Pool|Tempest|328|R||Land|||{tap}: Add to your mana pool one mana of any type that a land you control could produce.|
+Reflecting Pool|Tempest|328|R||Land|||{tap}: Add one mana of any type that a land you control could produce.|
Rootwater Depths|Tempest|329|U||Land|||{tap}: Add {C}.${tap}: Add {U} or {B}. Rootwater Depths doesn't untap during your next untap step.|
Salt Flats|Tempest|330|R||Land|||Salt Flats enters the battlefield tapped.${tap}: Add {C}.${tap}: Add {W} or {B}. Salt Flats deals 1 damage to you.|
Scabland|Tempest|331|R||Land|||Scabland enters the battlefield tapped.${tap}: Add {C}.${tap}: Add {R} or {W}. Scabland deals 1 damage to you.|
@@ -23678,7 +23678,7 @@ Anoint|Tempest Remastered|3|C|{W}|Instant|||Buyback {3} (You may pay an addit
Armor Sliver|Tempest Remastered|4|C|{2}{W}|Creature - Sliver|2|2|All Sliver creatures have "{2}: This creature gets +0/+1 until end of turn."|
Armored Pegasus|Tempest Remastered|5|C|{1}{W}|Creature - Pegasus|1|2|Flying|
Avenging Angel|Tempest Remastered|6|U|{3}{W}{W}|Creature - Angel|3|3|Flying$When Avenging Angel dies, you may put it on top of its owner's library.|
-Bandage|Tempest Remastered|7|C|{W}|Instant|||Prevent the next 1 damage that would be dealt to target creature or player this turn.$Draw a card.|
+Bandage|Tempest Remastered|7|C|{W}|Instant|||Prevent the next 1 damage that would be dealt to any target this turn.$Draw a card.|
Cataclysm|Tempest Remastered|8|M|{2}{W}{W}|Sorcery|||Each player chooses from among the permanents he or she controls an artifact, a creature, an enchantment, and a land, then sacrifices the rest.|
Charging Paladin|Tempest Remastered|9|C|{2}{W}|Creature - Human Knight|2|2|Whenever Charging Paladin attacks, it gets +0/+3 until end of turn.|
Conviction|Tempest Remastered|10|C|{1}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+3.${W}: Return Conviction to its owner's hand.|
@@ -23692,7 +23692,7 @@ Kor Chant|Tempest Remastered|17|U|{2}{W}|Instant|||All damage that would be deal
Master Decoy|Tempest Remastered|18|C|{1}{W}|Creature - Human Soldier|1|2|{W}, {tap}: Tap target creature.|
Mounted Archers|Tempest Remastered|19|C|{3}{W}|Creature - Human Soldier Archer|2|3|Reach (This creature can block creatures with flying.)${W}: Mounted Archers can block an additional creature this turn.|
Nomads en-Kor|Tempest Remastered|20|C|{W}|Creature - Kor Nomad Soldier|1|1|{0}: The next 1 damage that would be dealt to Nomads en-Kor this turn is dealt to target creature you control instead.|
-Orim, Samite Healer|Tempest Remastered|21|R|{1}{W}{W}|Legendary Creature - Human Cleric|1|3|{tap}: Prevent the next 3 damage that would be dealt to target creature or player this turn.|
+Orim, Samite Healer|Tempest Remastered|21|R|{1}{W}{W}|Legendary Creature - Human Cleric|1|3|{tap}: Prevent the next 3 damage that would be dealt to any target this turn.|
Pacifism|Tempest Remastered|22|U|{1}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature can't attack or block.|
Paladin en-Vec|Tempest Remastered|23|R|{1}{W}{W}|Creature - Human Knight|2|2|First strike, protection from black and from red|
Pegasus Stampede|Tempest Remastered|24|U|{1}{W}|Sorcery|||Buyback - Sacrifice a land. (You may sacrifice a land in addition to any other costs as you cast this spell. If you do, put this card into your hand as it resolves.)$Put a 1/1 white Pegasus creature token with flying onto the battlefield.|
@@ -23730,11 +23730,11 @@ Killer Whale|Tempest Remastered|55|U|{3}{U}{U}|Creature - Whale|3|5|{U}: Killer
Legacy's Allure|Tempest Remastered|57|R|{U}{U}|Enchantment|||At the beginning of your upkeep, you may put a treasure counter on Legacy's Allure.$Sacrifice Legacy's Allure: Gain control of target creature with power less than or equal to the number of treasure counters on Legacy's Allure.|
Legerdemain|Tempest Remastered|57|U|{2}{U}{U}|Sorcery|||Exchange control of target artifact or creature and another target permanent that shares one of those types with it.|
Mana Leak|Tempest Remastered|58|C|{1}{U}|Instant|||Counter target spell unless its controller pays {3}.|
-Mawcor|Tempest Remastered|59|R|{3}{U}{U}|Creature - Beast|3|3|Flying$${tap}: Mawcor deals 1 damage to target creature or player.|
+Mawcor|Tempest Remastered|59|R|{3}{U}{U}|Creature - Beast|3|3|Flying$${tap}: Mawcor deals 1 damage to any target.|
Meditate|Tempest Remastered|60|R|{2}{U}|Instant|||Draw four cards. You skip your next turn.|
Merfolk Looter|Tempest Remastered|61|C|{1}{U}|Creature - Merfolk Rogue|1|1|{T}: Draw a card, then discard a card.|
Mnemonic Sliver|Tempest Remastered|62|C|{2}{U}|Creature - Sliver|2|2|All Slivers have "{2}, Sacrifice this permanent: Draw a card."|
-Rootwater Hunter|Tempest Remastered|63|U|{2}{U}|Creature - Merfolk|1|1|{tap}: Rootwater Hunter deals 1 damage to target creature or player.|
+Rootwater Hunter|Tempest Remastered|63|U|{2}{U}|Creature - Merfolk|1|1|{tap}: Rootwater Hunter deals 1 damage to any target.|
Scrivener|Tempest Remastered|64|C|{4}{U}|Creature - Human Wizard|2|2|When Scrivener enters the battlefield, you may return target instant card from your graveyard to your hand.|
Sea Monster|Tempest Remastered|65|C|{4}{U}{U}|Creature - Serpent|6|6|Sea Monster can't attack unless defending player controls an Island.|
Shadow Rift|Tempest Remastered|66|C|{U}|Instant|||Target creature gains shadow until end of turn. (It can block or be blocked by only creatures with shadow.)$Draw a card.|
@@ -23801,32 +23801,32 @@ Barbed Sliver|Tempest Remastered|126|C|{2}{R}|Creature - Sliver|2|2|All Sliver c
Canyon Wildcat|Tempest Remastered|127|C|{1}{R}|Creature - Cat|2|1|Mountainwalk (This creature can't be blocked as long as defending player controls a Mountain.)|
Craven Giant|Tempest Remastered|128|C|{2}{R}|Creature - Giant|4|1|Craven Giant can't block.|
Deadshot|Tempest Remastered|129|U|{3}{R}|Sorcery|||Tap target creature. It deals damage equal to its power to another target creature.|
-Fanning the Flames|Tempest Remastered|130|R|{X}{R}{R}|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.)$Fanning the Flames deals X damage to target creature or player.|
+Fanning the Flames|Tempest Remastered|130|R|{X}{R}{R}|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.)$Fanning the Flames deals X damage to any target.|
Flame Wave|Tempest Remastered|131|R|{3}{R}{R}{R}{R}|Sorcery|||Flame Wave deals 4 damage to target player and each creature he or she controls.|
Flowstone Blade|Tempest Remastered|132|C|{R}|Enchantment - Aura|||Enchant creature|||{R}: Enchanted creature gets +1/-1 until end of turn.|
Flowstone Mauler|Tempest Remastered|133|U|{4}{R}{R}|Creature - Beast|4|5|Trample${R}: Flowstone Mauler gets +1/-1 until end of turn.|
Flowstone Wyvern|Tempest Remastered|134|U|{3}{R}{R}|Creature - Drake|3|3|Flying${R}: Flowstone Wyvern gets +2/-2 until end of turn.|
Furnace Brood|Tempest Remastered|135|C|{3}{R}|Creature - Elemental|3|3|{R}: Target creature can't be regenerated this turn.|
-Goblin Bombardment|Tempest Remastered|136|U|{1}{R}|Enchantment|||Sacrifice a creature: Goblin Bombardment deals 1 damage to target creature or player.|
-Kindle|Tempest Remastered|137|C|{1}{R}|Instant|||Kindle deals X damage to target creature or player, where X is 2 plus the number of cards named Kindle in all graveyards.|
-Lightning Blast|Tempest Remastered|138|C|{3}{R}|Instant|||Lightning Blast deals 4 damage to target creature or player.|
+Goblin Bombardment|Tempest Remastered|136|U|{1}{R}|Enchantment|||Sacrifice a creature: Goblin Bombardment deals 1 damage to any target.|
+Kindle|Tempest Remastered|137|C|{1}{R}|Instant|||Kindle deals X damage to any target, where X is 2 plus the number of cards named Kindle in all graveyards.|
+Lightning Blast|Tempest Remastered|138|C|{3}{R}|Instant|||Lightning Blast deals 4 damage to any target.|
Lowland Giant|Tempest Remastered|139|C|{2}{R}{R}|Creature - Giant|4|3||
-Mage il-Vec|Tempest Remastered|140|U|{2}{R}|Creature - Human Wizard|2|2|{T}, Discard a card at random: Mage il-Vec deals 1 damage to target creature or player.|
+Mage il-Vec|Tempest Remastered|140|U|{2}{R}|Creature - Human Wizard|2|2|{T}, Discard a card at random: Mage il-Vec deals 1 damage to any target.|
Magmasaur|Tempest Remastered|141|R|{3}{R}{R}|Creature - Elemental Lizard|0|0|Magmasaur enters the battlefield with five +1/+1 counters on it.$At the beginning of your upkeep, you may remove a +1/+1 counter from Magmasaur. If you don't, sacrifice Magmasaur and it deals damage equal to the number of +1/+1 counters on it to each creature without flying and each player.|
Maniacal Rage|Tempest Remastered|142|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2 and can't block.|
Mogg Conscripts|Tempest Remastered|143|C|{R}|Creature - Goblin|2|2|Mogg Conscripts can't attack unless you've cast a creature spell this turn.|
-Mogg Fanatic|Tempest Remastered|144|C|{R}|Creature - Goblin|1|1|Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to target creature or player.|
+Mogg Fanatic|Tempest Remastered|144|C|{R}|Creature - Goblin|1|1|Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to any target.|
Mogg Flunkies|Tempest Remastered|145|C|{1}{R}|Creature - Goblin|3|3|Mogg Flunkies can't attack or block alone.|
Mogg Infestation|Tempest Remastered|146|R|{3}{R}{R}|Sorcery|||Destroy all creatures target player controls. For each creature that died this way, put two 1/1 red Goblin creature tokens onto the battlefield under that player's control.|
Mogg Maniac|Tempest Remastered|147|U|{1}{R}|Creature - Goblin|1|1|Whenever Mogg Maniac is dealt damage, it deals that much damage to target opponent.|
-Ogre Shaman|Tempest Remastered|148|R|{3}{R}{R}|Creature - Ogre Shaman|3|3|{2}, Discard a card at random: Ogre Shaman deals 2 damage to target creature or player.|
-Pandemonium|Tempest Remastered|149|R|{3}{R}|Enchantment|||Whenever a creature enters the battlefield, that creature's controller may have it deal damage equal to its power to target creature or player of his or her choice.|
+Ogre Shaman|Tempest Remastered|148|R|{3}{R}{R}|Creature - Ogre Shaman|3|3|{2}, Discard a card at random: Ogre Shaman deals 2 damage to any target.|
+Pandemonium|Tempest Remastered|149|R|{3}{R}|Enchantment|||Whenever a creature enters the battlefield, that creature's controller may have it deal damage equal to its power to any target of his or her choice.|
Rathi Dragon|Tempest Remastered|150|R|{2}{R}{R}|Creature - Dragon|5|5|Flying$When Rathi Dragon enters the battlefield, sacrifice it unless you sacrifice two Mountains.|
Renegade Warlord|Tempest Remastered|151|U|{4}{R}|Creature - Human Soldier|3|3|First strike$Whenever Renegade Warlord attacks, each other attacking creature gets +1/+0 until end of turn.|
Rolling Thunder|Tempest Remastered|152|U|{X}{R}{R}|Sorcery|||Rolling Thunder deals X damage divided as you choose among any number of target creatures and/or players.|
Sabertooth Wyvern|Tempest Remastered|153|U|{4}{R}|3|2|Flying, first strike|
Sandstone Warrior|Tempest Remastered|154|C|{2}{R}{R}|Creature - Human Soldier Warrior|1|3|First strike${R}: Sandstone Warrior gets +1/+0 until end of turn.|
-Searing Touch|Tempest Remastered|155|U|{R}|Instant|||Buyback {4} (You may pay an additional {4} as you cast this spell. If you do, put this card into your hand as it resolves.)$Searing Touch deals 1 damage to target creature or player.|
+Searing Touch|Tempest Remastered|155|U|{R}|Instant|||Buyback {4} (You may pay an additional {4} as you cast this spell. If you do, put this card into your hand as it resolves.)$Searing Touch deals 1 damage to any target.|
Seething Anger|Tempest Remastered|156|C|{R}|Sorcery|||Buyback {3}(You may pay an additional {4} as you cast this spell. If you do, put this card into your hand as it resolves.)$Target creature gets +3/+0 until end of turn.|
Shadowstorm|Tempest Remastered|157|U|{R}|Sorcery|||Shadowstorm deals 2 damage to each creature with shadow.|
Shard Phoenix|Tempest Remastered|158|M|{4}{R}|Creature - Phoenix|2|2|Flying$Sacrifice Shard Phoenix: Shard Phoenix deals 2 damage to each creature without flying.${R}{R}{R}: Return Shard Phoenix from your graveyard to your hand. Activate this ability only during your upkeep.|
@@ -23877,7 +23877,7 @@ Verdant Force|Tempest Remastered|202|R|{5}{G}{G}{G}|Creature - Elemental|7|7|At
Verdant Touch|Tempest Remastered|203|U|{1}{G}|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.)$Target land becomes a 2/2 creature that's still a land.|
Verdigris|Tempest Remastered|204|C|{2}{G}|Instant|||Destroy target artifact.|
Wall of Blossoms|Tempest Remastered|205|U|{1}{G}|Creature - Plant Wall|0|4|Defender$When Wall of Blossoms enters the battlefield, draw a card.|
-Acidic Sliver|Tempest Remastered|206|U|{B}{R}|Creature - Sliver|2|2|All Slivers have "{2}, Sacrifice this permanent: This permanent dealls 2 damage to target creature or player."|
+Acidic Sliver|Tempest Remastered|206|U|{B}{R}|Creature - Sliver|2|2|All Slivers have "{2}, Sacrifice this permanent: This permanent dealls 2 damage to any target."|
Crystalline Sliver|Tempest Remastered|207|U|{W}{U}|Creature - Sliver|2|2|All Slivers have shroud. (They can't be the targets of spells or abilities.)|
Dracoplasm|Tempest Remastered|208|R|{U}{R}|Creature - Shapeshifter|0|0|Flying$As Dracoplasm enters the battlefield, sacrifice any number of creatures. Dracoplasm's power becomes the total power of those creatures and its toughness becomes their total toughness.${R}: Dracoplasm gets +1/+0 until end of turn.|
Hibernation Sliver|Tempest Remastered|209|U|{U}{B}|Creature - Sliver|2|2|All Slivers have "Pay 2 life: Return this permanent to its owner's hand."|
@@ -23891,15 +23891,15 @@ Wood Sage|Tempest Remastered|216|R|{G}{U}|Creature - Human Druid|1|1|{tap}: Name
Bottle Gnomes|Tempest Remastered|217|C|{3}|Artifact Creature - Gnome|1|3|Sacrifice Bottle Gnomes: You gain 3 life.|
Coat of Arms|Tempest Remastered|218|R|{5}|Artifact|||Each creature gets +1/+1 for each other creature on the battlefield that shares at least one creature type with it. (For example, if two Goblin Warriors and a Goblin Shaman are on the battlefield, each gets +2/+2.)|
Coiled Tinviper|Tempest Remastered|219|C|{3}|Artifact Creature - Snake|2|1|First strike|
-Cursed Scroll|Tempest Remastered|220|M|{1}|Artifact|||{3}, {tap}: Name a card. Reveal a card at random from your hand. If it's the named card, Cursed Scroll deals 2 damage to target creature or player.|
+Cursed Scroll|Tempest Remastered|220|M|{1}|Artifact|||{3}, {tap}: Name a card. Reveal a card at random from your hand. If it's the named card, Cursed Scroll deals 2 damage to any target.|
Emmessi Tome|Tempest Remastered|221|U|{4}|Artifact|||{5}, {tap}: Draw two cards, then discard a card.|
Erratic Portal|Tempest Remastered|222|R|{4}|Artifact|||{1}, {T}: Return target creature to its owner's hand unless its controller pays {1}.|
Grindstone|Tempest Remastered|223|M|{1}|Artifact|||{3}, {tap}: Target player puts the top two cards of his or her library into his or her graveyard. If both cards share a color, repeat this process.|
Jinxed Idol|Tempest Remastered|224|R|{2}|Artifact|||At the beginning of your upkeep, Jinxed Idol deals 2 damage to you.$Sacrifice a creature: Target opponent gains control of Jinxed Idol.|
-Lotus Petal|Tempest Remastered|225|U|{0}|Artifact|||{tap}, Sacrifice Lotus Petal: Add one mana of any color to your mana pool.|
+Lotus Petal|Tempest Remastered|225|U|{0}|Artifact|||{tap}, Sacrifice Lotus Petal: Add one mana of any color.|
Metallic Sliver|Tempest Remastered|226|C|{1}|Artifact Creature - Sliver|1|1||
Mindless Automaton|Tempest Remastered|227|R|{4}|Artifact Creature - Construct|0|0|Mindless Automaton enters the battlefield with two +1/+1 counters on it.${1}, Discard a card: Put a +1/+1 counter on Mindless Automaton.$Remove two +1/+1 counters from Mindless Automaton: Draw a card.|
-Mox Diamond|Tempest Remastered|228|M|{0}|Artifact|||If Mox Diamond would enter the battlefield, you may discard a land card instead. If you do, put Mox Diamond onto the battlefield. If you don't, put it into its owner's graveyard.${T}: Add one mana of any color to your mana pool.|
+Mox Diamond|Tempest Remastered|228|M|{0}|Artifact|||If Mox Diamond would enter the battlefield, you may discard a land card instead. If you do, put Mox Diamond onto the battlefield. If you don't, put it into its owner's graveyard.${T}: Add one mana of any color.|
Patchwork Gnomes|Tempest Remastered|229|C|{3}|Artifact Creature - Gnome|2|1|Discard a card: Regenerate Patchwork Gnomes.|
Phyrexian Hulk|Tempest Remastered|230|U|{6}|Artifact Creature - Golem|5|4||
Skyshaper|Tempest Remastered|231|C|{2}|Artifact|||Sacrifice Skyshaper: Creatures you control gain flying until end of turn.|
@@ -23977,7 +23977,7 @@ Assassinate|Tenth Edition|128|C|{2}{B}|Sorcery|||Destroy target tapped creature.
Beacon of Unrest|Tenth Edition|129|R|{3}{B}{B}|Sorcery|||Put target artifact or creature card from a graveyard onto the battlefield under your control. Shuffle Beacon of Unrest into its owner's library.|
Condemn|Tenth Edition|13|U|{W}|Instant|||Put target attacking creature on the bottom of its owner's library. Its controller gains life equal to its toughness.|
Bog Wraith|Tenth Edition|130|U|{3}{B}|Creature - Wraith|3|3|Swampwalk (This creature is unblockable as long as defending player controls a Swamp.)|
-Consume Spirit|Tenth Edition|131|U|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Consume Spirit deals X damage to target creature or player and you gain X life.|
+Consume Spirit|Tenth Edition|131|U|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Consume Spirit deals X damage to any target and you gain X life.|
Contaminated Bond|Tenth Edition|132|C|{1}{B}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Whenever enchanted creature attacks or blocks, its controller loses 3 life.|
Cruel Edict|Tenth Edition|133|U|{1}{B}|Sorcery|||Target opponent sacrifices a creature.|
Deathmark|Tenth Edition|134|U|{B}|Sorcery|||Destroy target green or white creature.|
@@ -23988,7 +23988,7 @@ Dross Crocodile|Tenth Edition|138|C|{3}{B}|Creature - Zombie Crocodile|5|1||
Drudge Skeletons|Tenth Edition|139|U|{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.)|
Demystify|Tenth Edition|14|C|{W}|Instant|||Destroy target enchantment.|
Dusk Imp|Tenth Edition|140|C|{2}{B}|Creature - Imp|2|1|Flying|
-Essence Drain|Tenth Edition|141|C|{4}{B}|Sorcery|||Essence Drain deals 3 damage to target creature or player and you gain 3 life.|
+Essence Drain|Tenth Edition|141|C|{4}{B}|Sorcery|||Essence Drain deals 3 damage to any target and you gain 3 life.|
Fear|Tenth Edition|142|C|{B}{B}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Enchanted creature has fear. (It can't be blocked except by artifact creatures and/or black creatures.)|
Festering Goblin|Tenth Edition|143|C|{B}|Creature - Zombie Goblin|1|1|When Festering Goblin dies, target creature gets -1/-1 until end of turn.|
Grave Pact|Tenth Edition|144|R|{1}{B}{B}{B}|Enchantment|||Whenever a creature you control dies, each other player sacrifices a creature.|
@@ -24039,14 +24039,14 @@ Underworld Dreams|Tenth Edition|184|R|{B}{B}{B}|Enchantment|||Whenever an oppone
Unholy Strength|Tenth Edition|185|C|{B}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+1.|
Vampire Bats|Tenth Edition|186|C|{B}|Creature - Bat|0|1|Flying (This creature can't be blocked except by creatures with flying or reach.)${B}: Vampire Bats gets +1/+0 until end of turn. Activate this ability no more than twice each turn.|
Anaba Bodyguard|Tenth Edition|187|C|{3}{R}|Creature - Minotaur|2|3|First strike (This creature deals combat damage before creatures without first strike.)|
-Arcane Teachings|Tenth Edition|188|U|{2}{R}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Enchanted creature gets +2/+2 and has "{tap}: This creature deals 1 damage to target creature or player."|
-Beacon of Destruction|Tenth Edition|189|R|{3}{R}{R}|Instant|||Beacon of Destruction deals 5 damage to target creature or player. Shuffle Beacon of Destruction into its owner's library.|
+Arcane Teachings|Tenth Edition|188|U|{2}{R}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Enchanted creature gets +2/+2 and has "{tap}: This creature deals 1 damage to any target."|
+Beacon of Destruction|Tenth Edition|189|R|{3}{R}{R}|Instant|||Beacon of Destruction deals 5 damage to any target. Shuffle Beacon of Destruction into its owner's library.|
Heart of Light|Tenth Edition|19|C|{2}{W}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Prevent all damage that would be dealt to and dealt by enchanted creature.|
-Blaze|Tenth Edition|190|U|{X}{R}|Sorcery|||Blaze deals X damage to target creature or player.|
+Blaze|Tenth Edition|190|U|{X}{R}|Sorcery|||Blaze deals X damage to any target.|
Bloodfire Colossus|Tenth Edition|191|R|{6}{R}{R}|Creature - Giant|6|6|{R}, Sacrifice Bloodfire Colossus: Bloodfire Colossus deals 6 damage to each creature and each player.|
Bloodrock Cyclops|Tenth Edition|192|C|{2}{R}|Creature - Cyclops|3|3|Bloodrock Cyclops attacks each turn if able.|
Bogardan Firefiend|Tenth Edition|193|C|{2}{R}|Creature - Elemental Spirit|2|1|When Bogardan Firefiend dies, it deals 2 damage to target creature.|
-Cone of Flame|Tenth Edition|194|U|{3}{R}{R}|Sorcery|||Cone of Flame deals 1 damage to target creature or player, 2 damage to another target creature or player, and 3 damage to a third target creature or player.|
+Cone of Flame|Tenth Edition|194|U|{3}{R}{R}|Sorcery|||Cone of Flame deals 1 damage to any target, 2 damage to another any target, and 3 damage to a third any target.|
Cryoclasm|Tenth Edition|195|U|{2}{R}|Sorcery|||Destroy target Plains or Island. Cryoclasm deals 3 damage to that land's controller.|
Demolish|Tenth Edition|196|C|{3}{R}|Sorcery|||Destroy target artifact or land.|
Dragon Roost|Tenth Edition|197|R|{4}{R}{R}|Enchantment|||{5}{R}{R}: Put a 5/5 red Dragon creature token with flying onto the battlefield. (It can't be blocked except by creatures with flying or reach.)|
@@ -24066,34 +24066,34 @@ Goblin Lore|Tenth Edition|208|U|{1}{R}|Sorcery|||Draw four cards, then discard t
Goblin Piker|Tenth Edition|209|C|{1}{R}|Creature - Goblin Warrior|2|1||
Holy Day|Tenth Edition|21|C|{W}|Instant|||Prevent all combat damage that would be dealt this turn.|
Goblin Sky Raider|Tenth Edition|210|C|{2}{R}|Creature - Goblin Warrior|1|2|Flying (This creature can't be blocked except by creatures with flying or reach.)|
-Guerrilla Tactics|Tenth Edition|211|U|{1}{R}|Instant|||Guerrilla Tactics deals 2 damage to target creature or player.$When a spell or ability an opponent controls causes you to discard Guerrilla Tactics, Guerrilla Tactics deals 4 damage to target creature or player.|
+Guerrilla Tactics|Tenth Edition|211|U|{1}{R}|Instant|||Guerrilla Tactics deals 2 damage to any target.$When a spell or ability an opponent controls causes you to discard Guerrilla Tactics, Guerrilla Tactics deals 4 damage to any target.|
Hill Giant|Tenth Edition|212|C|{3}{R}|Creature - Giant|3|3||
-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.|
-Kamahl, Pit Fighter|Tenth Edition|214|R|{4}{R}{R}|Legendary Creature - Human Barbarian|6|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)${tap}: Kamahl, Pit Fighter deals 3 damage to target creature or player.|
+Incinerate|Tenth Edition|213|C|{1}{R}|Instant|||Incinerate deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.|
+Kamahl, Pit Fighter|Tenth Edition|214|R|{4}{R}{R}|Legendary Creature - Human Barbarian|6|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)${tap}: Kamahl, Pit Fighter deals 3 damage to any target.|
Lava Axe|Tenth Edition|215|C|{4}{R}|Sorcery|||Lava Axe deals 5 damage to target player.|
Lavaborn Muse|Tenth Edition|216|R|{3}{R}|Creature - Spirit|3|3|At the beginning of each opponent's upkeep, if that player has two or fewer cards in hand, Lavaborn Muse deals 3 damage to him or her.|
Lightning Elemental|Tenth Edition|217|C|{3}{R}|Creature - Elemental|4|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)|
Manabarbs|Tenth Edition|218|R|{3}{R}|Enchantment|||Whenever a player taps a land for mana, Manabarbs deals 1 damage to that player.|
-Mogg Fanatic|Tenth Edition|219|U|{R}|Creature - Goblin|1|1|Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to target creature or player.|
+Mogg Fanatic|Tenth Edition|219|U|{R}|Creature - Goblin|1|1|Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to any target.|
Holy Strength|Tenth Edition|22|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+2.|
-Orcish Artillery|Tenth Edition|220|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Artillery deals 2 damage to target creature or player and 3 damage to you.|
-Prodigal Pyromancer|Tenth Edition|221|C|{2}{R}|Creature - Human Wizard|1|1|{tap}: Prodigal Pyromancer deals 1 damage to target creature or player.|
+Orcish Artillery|Tenth Edition|220|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Artillery deals 2 damage to any target and 3 damage to you.|
+Prodigal Pyromancer|Tenth Edition|221|C|{2}{R}|Creature - Human Wizard|1|1|{tap}: Prodigal Pyromancer deals 1 damage to any target.|
Pyroclasm|Tenth Edition|222|U|{1}{R}|Sorcery|||Pyroclasm deals 2 damage to each creature.|
Rage Weaver|Tenth Edition|223|U|{1}{R}|Creature - Human Wizard|2|1|{2}: Target black or green creature gains haste until end of turn. (It can attack and {tap} this turn.)|
Raging Goblin|Tenth Edition|224|C|{R}|Creature - Goblin Berserker|1|1|Haste (This creature can attack and {tap} as soon as it comes under your control.)|
Relentless Assault|Tenth Edition|225|R|{2}{R}{R}|Sorcery|||Untap all creatures that attacked this turn. After this main phase, there is an additional combat phase followed by an additional main phase.|
Rock Badger|Tenth Edition|226|C|{4}{R}|Creature - Badger Beast|3|3|Mountainwalk (This creature is unblockable as long as defending player controls a Mountain.)|
Scoria Wurm|Tenth Edition|227|R|{4}{R}|Creature - Wurm|7|7|At the beginning of your upkeep, flip a coin. If you lose the flip, return Scoria Wurm to its owner's hand.|
-Seismic Assault|Tenth Edition|228|R|{R}{R}{R}|Enchantment|||Discard a land card: Seismic Assault deals 2 damage to target creature or player.|
+Seismic Assault|Tenth Edition|228|R|{R}{R}{R}|Enchantment|||Discard a land card: Seismic Assault deals 2 damage to any target.|
Shatterstorm|Tenth Edition|229|U|{2}{R}{R}|Sorcery|||Destroy all artifacts. They can't be regenerated.|
Honor Guard|Tenth Edition|23|C|{W}|Creature - Human Soldier|1|1|{W}: Honor Guard gets +0/+1 until end of turn.|
Shivan Dragon|Tenth Edition|230|R|{4}{R}{R}|Creature - Dragon|5|5|Flying${R}: Shivan Dragon gets +1/+0 until end of turn.|
-Shivan Hellkite|Tenth Edition|231|R|{5}{R}{R}|Creature - Dragon|5|5|Flying (This creature can't be blocked except by creatures with flying or reach.)${1}{R}: Shivan Hellkite deals 1 damage to target creature or player.|
-Shock|Tenth Edition|232|C|{R}|Instant|||Shock deals 2 damage to target creature or player.|
+Shivan Hellkite|Tenth Edition|231|R|{5}{R}{R}|Creature - Dragon|5|5|Flying (This creature can't be blocked except by creatures with flying or reach.)${1}{R}: Shivan Hellkite deals 1 damage to any target.|
+Shock|Tenth Edition|232|C|{R}|Instant|||Shock deals 2 damage to any target.|
Shunt|Tenth Edition|233|R|{1}{R}{R}|Instant|||Change the target of target spell with a single target.|
-Siege-Gang Commander|Tenth Edition|234|R|{3}{R}{R}|Creature - Goblin|2|2|When Siege-Gang Commander enters the battlefield, put three 1/1 red Goblin creature tokens onto the battlefield.${1}{R}, Sacrifice a Goblin: Siege-Gang Commander deals 2 damage to target creature or player.|
+Siege-Gang Commander|Tenth Edition|234|R|{3}{R}{R}|Creature - Goblin|2|2|When Siege-Gang Commander enters the battlefield, put three 1/1 red Goblin creature tokens onto the battlefield.${1}{R}, Sacrifice a Goblin: Siege-Gang Commander deals 2 damage to any target.|
Smash|Tenth Edition|235|C|{2}{R}|Instant|||Destroy target artifact.$Draw a card.|
-Soulblast|Tenth Edition|236|R|{3}{R}{R}{R}|Instant|||As an additional cost to cast Soulblast, sacrifice all creatures you control.$Soulblast deals damage to target creature or player equal to the total power of the sacrificed creatures.|
+Soulblast|Tenth Edition|236|R|{3}{R}{R}{R}|Instant|||As an additional cost to cast Soulblast, sacrifice all creatures you control.$Soulblast deals damage to any target equal to the total power of the sacrificed creatures.|
Spark Elemental|Tenth Edition|237|U|{R}|Creature - Elemental|3|1|Trample, haste (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. This creature can attack and {tap} as soon as it comes under your control.)$At the beginning of the end step, sacrifice Spark Elemental.|
Spitting Earth|Tenth Edition|238|C|{1}{R}|Sorcery|||Spitting Earth deals damage to target creature equal to the number of Mountains you control.|
Squee, Goblin Nabob|Tenth Edition|239|R|{2}{R}|Legendary Creature - Goblin|1|1|At the beginning of your upkeep, you may return Squee, Goblin Nabob from your graveyard to your hand.|
@@ -24111,7 +24111,7 @@ Abundance|Tenth Edition|249|R|{2}{G}{G}|Enchantment|||If you would draw a card,
Kjeldoran Royal Guard|Tenth Edition|25|R|{3}{W}{W}|Creature - Human Soldier|2|5|{tap}: All combat damage that would be dealt to you by unblocked creatures this turn is dealt to Kjeldoran Royal Guard instead.|
Aggressive Urge|Tenth Edition|250|C|{1}{G}|Instant|||Target creature gets +1/+1 until end of turn.$Draw a card.|
Avatar of Might|Tenth Edition|251|R|{6}{G}{G}|Creature - Avatar|8|8|If an opponent controls at least four more creatures than you, Avatar of Might costs {6} less to cast.$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.)|
-Birds of Paradise|Tenth Edition|252|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color to your mana pool.|
+Birds of Paradise|Tenth Edition|252|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color.|
Blanchwood Armor|Tenth Edition|253|U|{2}{G}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Enchanted creature gets +1/+1 for each Forest you control.|
Canopy Spider|Tenth Edition|254|C|{1}{G}|Creature - Spider|1|3|Reach (This creature can block creatures with flying.)|
Civic Wayfinder|Tenth Edition|255|C|{2}{G}|Creature - Elf Warrior Druid|2|2|When Civic Wayfinder enters the battlefield, you may search your library for a basic land card, reveal it, and put it into your hand. If you do, shuffle your library.|
@@ -24132,7 +24132,7 @@ Grizzly Bears|Tenth Edition|268|C|{1}{G}|Creature - Bear|2|2||
Hunted Wumpus|Tenth Edition|269|U|{3}{G}|Creature - Beast|6|6|When Hunted Wumpus enters the battlefield, each other player may put a creature card from his or her hand onto the battlefield.|
Loyal Sentry|Tenth Edition|27|R|{W}|Creature - Human Soldier|1|1|When Loyal Sentry blocks a creature, destroy that creature and Loyal Sentry.|
Hurricane|Tenth Edition|270|R|{X}{G}|Sorcery|||Hurricane deals X damage to each creature with flying and each player.|
-Joiner Adept|Tenth Edition|271|R|{1}{G}|Creature - Elf Druid|2|1|Lands you control have "{tap}: Add one mana of any color to your mana pool."|
+Joiner Adept|Tenth Edition|271|R|{1}{G}|Creature - Elf Druid|2|1|Lands you control have "{tap}: Add one mana of any color."|
Karplusan Strider|Tenth Edition|272|U|{3}{G}|Creature - Yeti|3|4|Karplusan Strider can't be the target of blue or black spells.|
Kavu Climber|Tenth Edition|273|C|{3}{G}{G}|Creature - Kavu|3|3|When Kavu Climber enters the battlefield, draw a card.|
Llanowar Elves|Tenth Edition|274|C|{G}|Creature - Elf Druid|1|1|{tap}: Add {G}.|
@@ -24180,7 +24180,7 @@ Yavimaya Enchantress|Tenth Edition|310|U|{2}{G}|Creature - Human Druid|2|2|Yavim
Angel's Feather|Tenth Edition|311|U|{2}|Artifact|||Whenever a player casts a white spell, you may gain 1 life.|
Bottle Gnomes|Tenth Edition|312|U|{3}|Artifact Creature - Gnome|1|3|Sacrifice Bottle Gnomes: You gain 3 life.|
Chimeric Staff|Tenth Edition|313|R|{4}|Artifact|||{X}: Chimeric Staff becomes an X/X Construct artifact creature until end of turn.|
-Chromatic Star|Tenth Edition|314|U|{1}|Artifact|||{1}, {tap}, Sacrifice Chromatic Star: Add one mana of any color to your mana pool.$When Chromatic Star is put into a graveyard from the battlefield, draw a card.|
+Chromatic Star|Tenth Edition|314|U|{1}|Artifact|||{1}, {tap}, Sacrifice Chromatic Star: Add one mana of any color.$When Chromatic Star is put into a graveyard from the battlefield, draw a card.|
Citanul Flute|Tenth Edition|315|R|{5}|Artifact|||{X}, {tap}: Search your library for a creature card with converted mana cost X or less, reveal it, and put it into your hand. Then shuffle your library.|
Coat of Arms|Tenth Edition|316|R|{5}|Artifact|||Each creature gets +1/+1 for each other creature on the battlefield that shares at least one creature type with it. (For example, if two Goblin Warriors and a Goblin Shaman are on the battlefield, each gets +2/+2.)|
Colossus of Sardia|Tenth Edition|317|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.|
@@ -24210,7 +24210,7 @@ Pithing Needle|Tenth Edition|338|R|{1}|Artifact|||As Pithing Needle enters the b
Platinum Angel|Tenth Edition|339|R|{7}|Artifact Creature - Angel|4|4|Flying$You can't lose the game and your opponents can't win the game.|
Reviving Dose|Tenth Edition|34|C|{2}{W}|Instant|||You gain 3 life.$Draw a card.|
Razormane Masticore|Tenth Edition|340|R|{5}|Artifact Creature - Masticore|5|5|First strike (This creature deals combat damage before creatures without first strike.)$At the beginning of your upkeep, sacrifice Razormane Masticore unless you discard a card.$At the beginning of your draw step, you may have Razormane Masticore deal 3 damage to target creature.|
-Rod of Ruin|Tenth Edition|341|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to target creature or player.|
+Rod of Ruin|Tenth Edition|341|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to any target.|
Sculpting Steel|Tenth Edition|342|R|{3}|Artifact|||You may have Sculpting Steel enter the battlefield as a copy of any artifact on the battlefield.|
Spellbook|Tenth Edition|343|U|{0}|Artifact|||You have no maximum hand size.|
Steel Golem|Tenth Edition|344|U|{3}|Artifact Creature - Golem|3|4|You can't cast creature spells.|
@@ -24252,7 +24252,7 @@ Mountain|Tenth Edition|376|L||Basic Land - Mountain|||R|
Mountain|Tenth Edition|377|L||Basic Land - Mountain|||R|
Mountain|Tenth Edition|378|L||Basic Land - Mountain|||R|
Mountain|Tenth Edition|379|L||Basic Land - Mountain|||R|
-Samite Healer|Tenth Edition|38|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Samite Healer|Tenth Edition|38|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.|
Forest|Tenth Edition|380|L||Basic Land - Forest|||G|
Forest|Tenth Edition|381|L||Basic Land - Forest|||G|
Forest|Tenth Edition|382|L||Basic Land - Forest|||G|
@@ -24313,7 +24313,7 @@ Fugitive Wizard|Tenth Edition|86|C|{U}|Creature - Human Wizard|1|1||
Horseshoe Crab|Tenth Edition|87|C|{2}{U}|Creature - Crab|1|3|{U}: Untap Horseshoe Crab.|
Hurkyl's Recall|Tenth Edition|88|R|{1}{U}|Instant|||Return all artifacts target player owns to his or her hand.|
Lumengrid Warden|Tenth Edition|89|C|{1}{U}|Creature - Human Wizard|1|3||
-Bandage|Tenth Edition|9|C|{W}|Instant|||Prevent the next 1 damage that would be dealt to target creature or player this turn.$Draw a card.|
+Bandage|Tenth Edition|9|C|{W}|Instant|||Prevent the next 1 damage that would be dealt to any target this turn.$Draw a card.|
Mahamoti Djinn|Tenth Edition|90|R|{4}{U}{U}|Creature - Djinn|5|6|Flying (This creature can't be blocked except by creatures with flying or reach.)|
March of the Machines|Tenth Edition|91|R|{3}{U}|Enchantment|||Each noncreature artifact is an artifact creature with power and toughness each equal to its converted mana cost. (Equipment that's a creature can't equip a creature.)|
Merfolk Looter|Tenth Edition|92|C|{1}{U}|Creature - Merfolk Rogue|1|1|{tap}: Draw a card, then discard a card.|
@@ -24332,7 +24332,7 @@ Lurker|The Dark|101|R|{2}{G}|Creature - Beast|2|3|Lurker can't be the target of
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.|
Skull of Orm|The Dark|106|U|{3}|Artifact|||{5}, {tap}: Return target enchantment card from your graveyard to your hand.|
-Standing Stones|The Dark|107|U|{3}|Artifact|||{1}, {tap}, Pay 1 life: Add one mana of any color to your mana pool.|
+Standing Stones|The Dark|107|U|{3}|Artifact|||{1}, {tap}, Pay 1 life: Add one mana of any color.|
Stone Calendar|The Dark|108|R|{5}|Artifact|||Spells you cast cost up to {1} less to cast.|
Tormod's Crypt|The Dark|109|U|{0}|Artifact|||{tap}, Sacrifice Tormod's Crypt: Exile all cards from target player's graveyard.|
Murk Dwellers|The Dark|11|C|{3}{B}|Creature - Zombie|2|2|Whenever Murk Dwellers attacks and isn't blocked, it gets +2/+0 until end of combat.|
@@ -24355,7 +24355,7 @@ Word of Binding|The Dark|17|C|{X}{B}{B}|Sorcery|||Tap X target creatures.|
Worms of the Earth|The Dark|18|R|{2}{B}{B}{B}|Enchantment|||Players can't play lands.$Lands can't enter the battlefield.$At the beginning of each upkeep, any player may sacrifice two lands or have Worms of the Earth deal 5 damage to him or her. If a player does either, destroy Worms of the Earth.|
Amnesia|The Dark|19|U|{3}{U}{U}{U}|Sorcery|||Target player reveals his or her hand and discards all nonland cards.|
Tracker|The Dark|194|R|{2}{G}|Creature - Human|2|2|{G}{G}, {tap}: Tracker deals damage equal to its power to target creature. That creature deals damage equal to its power to Tracker.|
-Banshee|The Dark|2|U|{2}{B}{B}|Creature - Spirit|0|1|{X}, {tap}: Banshee deals half X damage, rounded down, to target creature or player, and half X damage, rounded up, to you.|
+Banshee|The Dark|2|U|{2}{B}{B}|Creature - Spirit|0|1|{X}, {tap}: Banshee deals half X damage, rounded down, to any target, and half X damage, rounded up, to you.|
Apprentice Wizard|The Dark|20|R|{1}{U}{U}|Creature - Human Wizard|0|1|{U}, {tap}: Add {C}{C}{C}.|
Dance of Many|The Dark|21|R|{U}{U}|Enchantment|||When Dance of Many enters the battlefield, put a token that's a copy of target nontoken creature onto the battlefield.$When Dance of Many leaves the battlefield, exile the token.$When the token leaves the battlefield, sacrifice Dance of Many.$At the beginning of your upkeep, sacrifice Dance of Many unless you pay {U}{U}.|
Deep Water|The Dark|22|C|{U}{U}|Enchantment|||{U}: Until end of turn, if you tap a land you control for mana, it produces {U} instead of any other type.|
@@ -24396,7 +24396,7 @@ Whippoorwill|The Dark|54|U|{G}|Creature - Bird|1|1|{G}{G}, {tap}: Target creatur
Wormwood Treefolk|The Dark|55|R|{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.|
Ball Lightning|The Dark|56|R|{R}{R}{R}|Creature - Elemental|6|1|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.)$Haste (This creature can attack and {tap} as soon as it comes under your control.)$At the beginning of the end step, sacrifice Ball Lightning.|
Blood Moon|The Dark|57|R|{2}{R}|Enchantment|||Nonbasic lands are Mountains.|
-Brothers of Fire|The Dark|58|U|{1}{R}{R}|Creature - Human Shaman|2|2|{1}{R}{R}: Brothers of Fire deals 1 damage to target creature or player and 1 damage to you.|
+Brothers of Fire|The Dark|58|U|{1}{R}{R}|Creature - Human Shaman|2|2|{1}{R}{R}: Brothers of Fire deals 1 damage to any target and 1 damage to you.|
Cave People|The Dark|59|U|{1}{R}{R}|Creature - Human|1|4|Whenever Cave People attacks, it gets +1/-2 until end of turn.${1}{R}{R}, {tap}: Target creature gains mountainwalk until end of turn.|
Eater of the Dead|The Dark|6|U|{4}{B}|Creature - Horror|3|4|{0}: If Eater of the Dead is tapped, exile target creature card from a graveyard and untap Eater of the Dead.|
Eternal Flame|The Dark|60|R|{2}{R}{R}|Sorcery|||Eternal Flame deals X damage to target opponent, where X is the number of Mountains you control. It deals half X damage, rounded up, to you.|
@@ -24442,7 +24442,7 @@ Book of Rass|The Dark|95|U|{6}|Artifact|||{2}, Pay 2 life: Draw a card.|
Coal Golem|The Dark|96|U|{5}|Artifact Creature - Golem|3|3|{3}, Sacrifice Coal Golem: Add {R}{R}{R}.|
Dark Sphere|The Dark|97|U|{0}|Artifact|||{tap}, Sacrifice Dark Sphere: The next time a source of your choice would deal damage to you this turn, prevent half that damage, rounded down.|
Diabolic Machine|The Dark|98|U|{7}|Artifact Creature - Construct|4|4|{3}: Regenerate Diabolic Machine.|
-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.|
+Fellwar Stone|The Dark|99|U|{2}|Artifact|||{tap}: Add one mana of any color that a land an opponent controls could produce.|
Battlewise Valor|Theros|1|C|{1}{W}|Instant|||Target creature gets +2/+2 until end of turn. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)|
Ephara's Warden|Theros|10|C|{3}{W}|Creature - Human Cleric|1|2|{tap}: Tap target creature with power 3 or less.|
Pharika's Cure|Theros|100|C|{B}{B}|Instant|||Pharika's Cure deals 2 damage to target creature and you gain 2 life.|
@@ -24473,13 +24473,13 @@ Firedrinker Satyr|Theros|122|R|{R}|Creature - Satyr Shaman|2|1|Whenever Firedrin
Flamespeaker Adept|Theros|123|U|{2}{R}|Creature - Human Shaman|2|3|Whenever you scry, Flamespeaker Adept gets +2/+0 and gains first strike until end of turn.|
Hammer of Purphoros|Theros|124|R|{1}{R}{R}|Legendary Enchantment Artifact|||Creatures you control have haste.${2}{R}, {tap}, Sacrifice a land: Put a 3/3 colorless Golem enchantment artifact creature token onto the battlefield.|
Ill-Tempered Cyclops|Theros|125|C|{3}{R}|Creature - Cyclops|3|3|Trample${5}{R}: Monstrosity 3. (If this creature isn't monstrous, put three +1/+1 counters on it and it becomes monstrous.)|
-Labyrinth Champion|Theros|126|R|{3}{R}|Creature - Human Warrior|2|2|Heroic - Whenever you cast a spell that targets Labyrinth Champion, Labyrinth Champion deals 2 damage to target creature or player.|
-Lightning Strike|Theros|127|C|{1}{R}|Instant|||Lightning Strike deals 3 damage to target creature or player.|
-Magma Jet|Theros|128|U|{1}{R}|Instant|||Magma Jet deals 2 damage to target creature or player. Scry 2. (Look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)|
+Labyrinth Champion|Theros|126|R|{3}{R}|Creature - Human Warrior|2|2|Heroic - Whenever you cast a spell that targets Labyrinth Champion, Labyrinth Champion deals 2 damage to any target.|
+Lightning Strike|Theros|127|C|{1}{R}|Instant|||Lightning Strike deals 3 damage to any target.|
+Magma Jet|Theros|128|U|{1}{R}|Instant|||Magma Jet deals 2 damage to any target. Scry 2. (Look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)|
Messenger's Speed|Theros|129|C|{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has trample and haste.|
Favored Hoplite|Theros|13|U|{W}|Creature - Human Soldier|1|2|Heroic - Whenever you cast a spell that targets Favored Hoplite, put a +1/+1 counter on Favored Hoplite and prevent all damage that would be dealt to it this turn.|
Minotaur Skullcleaver|Theros|130|C|{2}{R}|Creature - Minotaur Berserker|2|2|Haste$When Minotaur Skullcleaver enters the battlefield, it gets +2/+0 until end of turn.|
-Ordeal of Purphoros|Theros|131|U|{1}{R}|Enchantment - Aura|||Enchant creature$Whenever enchanted creature attacks, put a +1/+1 counter on it. Then if it has three or more +1/+1 counters on it, sacrifice Ordeal of Purphoros.$When you sacrifice Ordeal of Purphoros, it deals 3 damage to target creature or player.|
+Ordeal of Purphoros|Theros|131|U|{1}{R}|Enchantment - Aura|||Enchant creature$Whenever enchanted creature attacks, put a +1/+1 counter on it. Then if it has three or more +1/+1 counters on it, sacrifice Ordeal of Purphoros.$When you sacrifice Ordeal of Purphoros, it deals 3 damage to any target.|
Peak Eruption|Theros|132|U|{2}{R}|Sorcery|||Destroy target Mountain. Peak Eruption deals 3 damage to that land's controller.|
Portent of Betrayal|Theros|133|C|{3}{R}|Sorcery|||Gain control of target creature until end of turn. Untap that creature. It gains haste until end of turn. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)|
Priest of Iroas|Theros|134|C|{R}|Creature - Human Cleric|1|1|{3}{W}, Sacrifice Priest of Iroas: Destroy target enchantment.|
@@ -24489,11 +24489,11 @@ Rage of Purphoros|Theros|137|C|{4}{R}|Sorcery|||Rage of Purphoros deals 4 damage
Rageblood Shaman|Theros|138|R|{1}{R}{R}|Creature - Minotaur Shaman|2|3|Trample$Other Minotaur creatures you control get +1/+1 and have trample.|
Satyr Rambler|Theros|139|C|{1}{R}|Creature - Satyr|2|1|Trample|
Gift of Immortality|Theros|14|R|{2}{W}|Enchantment - Aura|||Enchant creature$When enchanted creature dies, return that card to the battlefield under its owner's control. Return Gift of Immortality to the battlefield attached to that creature at the beginning of the next end step.|
-Spark Jolt|Theros|140|C|{R}|Instant|||Spark Jolt deals 1 damage to target creature or player. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)|
+Spark Jolt|Theros|140|C|{R}|Instant|||Spark Jolt deals 1 damage to any target. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)|
Spearpoint Oread|Theros|141|C|{2}{R}|Enchantment Creature - Nymph|2|2|Bestow {5}{R} (If you cast this card for its bestow cost, it's an Aura spell with enchant creature. It becomes a creature again if it's not attached to a creature.)$First strike$Enchanted creature gets +2/+2 and has first strike.|
Stoneshock Giant|Theros|142|U|{3}{R}{R}|Creature - Giant|5|4|{6}{R}{R}: Monstrosity 3. (If this creature isn't monstrous, put three +1/+1 counters on it and it becomes monstrous.)$When Stoneshock Giant becomes monstrous, creatures without flying your opponents control can't block this turn.|
Stormbreath Dragon|Theros|143|M|{3}{R}{R}|Creature - Dragon|4|4|Flying, haste, protection from white${5}{R}{R}: Monstrosity 3. (If this creature isn't monstrous, put three +1/+1 counters on it and it becomes monstrous.)$When Stormbreath Dragon becomes monstrous, it deals damage to each opponent equal to the number of cards in that player's hand.|
-Titan of Eternal Fire|Theros|144|R|{5}{R}|Creature - Giant|5|6|Each Human creature you control has "{R}, {tap}: This creature deals 1 damage to target creature or player."|
+Titan of Eternal Fire|Theros|144|R|{5}{R}|Creature - Giant|5|6|Each Human creature you control has "{R}, {tap}: This creature deals 1 damage to any target."|
Titan's Strength|Theros|145|C|{R}|Instant|||Target creature gets +3/+1 until end of turn. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)|
Two-Headed Cerberus|Theros|146|C|{1}{R}{R}|Creature - Hound|1|2|Double strike (This creature deals both first-strike and regular combat damage.)|
Wild Celebrants|Theros|147|C|{3}{R}{R}|Creature - Satyr|5|3|When Wild Celebrants enters the battlefield, you may destroy target artifact.|
@@ -24533,7 +24533,7 @@ Sedge Scorpion|Theros|177|C|{G}|Creature - Scorpion|1|1|Deathtouch (Any amoun
Shredding Winds|Theros|178|C|{2}{G}|Instant|||Shredding Winds deals 7 damage to target creature with flying.|
Staunch-Hearted Warrior|Theros|179|C|{3}{G}|Creature - Human Warrior|2|2|Heroic - Whenever you cast a spell that targets Staunch-Hearted Warrior, put two +1/+1 counters on Staunch-Hearted Warrior.|
Heliod's Emissary|Theros|18|U|{3}{W}|Enchantment Creature - Elk|3|3|Bestow {6}{W} (If you cast this card for its bestow cost, it's an Aura spell with enchant creature. It becomes a creature again if it's not attached to a creature.)$Whenever Heliod's Emissary or enchanted creature attacks, tap target creature an opponent controls.$Enchanted creature gets +3/+3.|
-Sylvan Caryatid|Theros|180|R|{1}{G}|Creature - Plant|0|3|Defender, hexproof${tap}: Add one mana of any color to your mana pool.|
+Sylvan Caryatid|Theros|180|R|{1}{G}|Creature - Plant|0|3|Defender, hexproof${tap}: Add one mana of any color.|
Time to Feed|Theros|181|C|{2}{G}|Sorcery|||Choose target creature an opponent controls. When that creature dies this turn, you gain 3 life. Target creature you control fights that$creature. (Each deals damage equal to its power to the other.)|
Voyaging Satyr|Theros|182|C|{1}{G}|Creature - Satyr Druid|1|2|{tap}: Untap target land.|
Vulpine Goliath|Theros|183|C|{4}{G}{G}|Creature - Fox|6|5|Trample|
@@ -24575,19 +24575,19 @@ Colossus of Akros|Theros|214|R|{8}|Artifact Creature - Golem|10|10|Defender, ind
Flamecast Wheel|Theros|215|U|{1}|Artifact|||{5}, {tap}, Sacrifice Flamecast Wheel: Flamecast Wheel deals 3 damage to target creature.|
Fleetfeather Sandals|Theros|216|C|{2}|Artifact - Equipment|||Equipped creature has flying and haste.$Equip {2} ({2}: Attach to target creature you control. Equip only as a sorcery.)|
Guardians of Meletis|Theros|217|C|{3}|Artifact Creature - Golem|0|6|Defender|
-Opaline Unicorn|Theros|218|C|{3}|Artifact Creature - Unicorn|1|2|{tap}: Add one mana of any color to your mana pool.|
+Opaline Unicorn|Theros|218|C|{3}|Artifact Creature - Unicorn|1|2|{tap}: Add one mana of any color.|
Prowler's Helm|Theros|219|U|{2}|Artifact - Equipment|||Equipped creature can't be blocked except by Walls.$Equip {2}|
Last Breath|Theros|22|C|{1}{W}|Instant|||Exile target creature with power 2 or less. Its controller gains 4 life.|
Pyxis of Pandemonium|Theros|220|R|{1}|Artifact|||{tap}: Each player exiles the top card of his or her library face down.${7}, {tap}, Sacrifice Pyxis of Pandemonium: Each player turns face up all cards he or she owns exiled with Pyxis of Pandemonium, then puts all permanent cards among them onto the battlefield.|
Traveler's Amulet|Theros|221|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.|
Witches' Eye|Theros|222|U|{1}|Artifact - Equipment|||Equipped creature has "{1}, {tap}: Scry 1." (To scry 1, look at the top card of your library, then you may put that card on the bottom of your library.)$Equip {1}|
-Nykthos, Shrine to Nyx|Theros|223|R||Legendary Land|||{tap}: Add {C}.${2}, {tap}: Choose a color. Add to your mana pool an amount of mana of that color equal to your devotion to that color. (Your devotion to a color is the number of mana symbols of that color in the mana costs of permanents you control.)|
+Nykthos, Shrine to Nyx|Theros|223|R||Legendary Land|||{tap}: Add {C}.${2}, {tap}: Choose a color. Add an amount of mana of that color equal to your devotion to that color. (Your devotion to a color is the number of mana symbols of that color in the mana costs of permanents you control.)|
Temple of Abandon|Theros|224|R||Land|||Temple of Abandon enters the battlefield tapped.$When Temple of Abandon enters the battlefield, scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)${tap}: Add {R} or {G}.|
Temple of Deceit|Theros|225|R||Land|||Temple of Deceit enters the battlefield tapped.$When Temple of Deceit enters the battlefield, scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)${tap}: Add {U} or {B}.|
Temple of Mystery|Theros|226|R||Land|||Temple of Mystery enters the battlefield tapped.$When Temple of Mystery enters the battlefield, scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)${tap}: Add {G} or {U}.|
Temple of Silence|Theros|227|R||Land|||Temple of Silence enters the battlefield tapped.$When Temple of Silence enters the battlefield, scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)${tap}: Add {W} or {B}.|
Temple of Triumph|Theros|228|R||Land|||Temple of Triumph enters the battlefield tapped.$When Temple of Triumph enters the battlefield, scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)${tap}: Add {R} or {W}.|
-Unknown Shores|Theros|229|C||Land|||{tap}: Add {C}.${1}, {tap}: Add one mana of any color to your mana pool.|
+Unknown Shores|Theros|229|C||Land|||{tap}: Add {C}.${1}, {tap}: Add one mana of any color.|
Leonin Snarecaster|Theros|23|C|{1}{W}|Creature - Cat Soldier|2|1|When Leonin Snarecaster enters the battlefield, you may tap target creature.|
Plains|Theros|230|L||Basic Land - Plains|||W|
Plains|Theros|231|L||Basic Land - Plains|||W|
@@ -24632,7 +24632,7 @@ Benthic Giant|Theros|41|C|{5}{U}|Creature - Giant|4|5|Hexproof (This creature
Bident of Thassa|Theros|42|R|{2}{U}{U}|Legendary Enchantment Artifact|||Whenever a creature you control deals combat damage to a player, you may draw a card.${1}{U}, {tap}: Creatures your opponents control attack this turn if able.|
Breaching Hippocamp|Theros|43|C|{3}{U}|Creature - Horse Fish|3|2|Flash (You may cast this spell any time you could cast an instant.)$When Breaching Hippocamp enters the battlefield, untap another target creature you control.|
Coastline Chimera|Theros|44|C|{3}{U}|Creature - Chimera|1|5|Flying${1}{W}: Coastline Chimera can block an additional creature this turn.|
-Crackling Triton|Theros|45|C|{2}{U}|Creature - Merfolk Wizard|2|3|{2}{R}, Sacrifice Crackling Triton: Crackling Triton deals 2 damage to target creature or player.|
+Crackling Triton|Theros|45|C|{2}{U}|Creature - Merfolk Wizard|2|3|{2}{R}, Sacrifice Crackling Triton: Crackling Triton deals 2 damage to any target.|
Curse of the Swine|Theros|46|R|{X}{U}{U}|Sorcery|||Exile X target creatures. For each creature exiled this way, its controller puts a 2/2 green Boar creature token onto the battlefield.|
Dissolve|Theros|47|U|{1}{U}{U}|Instant|||Counter target spell. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)|
Fate Foretold|Theros|48|C|{1}{U}|Enchantment - Aura|||Enchant creature$When Fate Foretold enters the battlefield, draw a card.$When enchanted creature dies, its controller draws a card.|
@@ -24704,7 +24704,7 @@ Endrek Sahr, Master Breeder|Time Spiral|106|R|{4}{B}|Legendary Creature - Human
Evil Eye of Urborg|Time Spiral|107|U|{4}{B}|Creature - Eye|6|3|Non-Eye creatures you control can't attack.$Whenever Evil Eye of Urborg becomes blocked by a creature, destroy that creature.|
Faceless Devourer|Time Spiral|108|U|{2}{B}|Creature - Nightmare Horror|2|1|Shadow (This creature can block or be blocked by only creatures with shadow.)$When Faceless Devourer enters the battlefield, exile another target creature with shadow.$When Faceless Devourer leaves the battlefield, return the exiled card to the battlefield under its owner's control.|
Fallen Ideal|Time Spiral|109|U|{2}{B}|Enchantment - Aura|||Enchant creature$Enchanted creature has flying and "Sacrifice a creature: This creature gets +2/+1 until end of turn."$When Fallen Ideal is put into a graveyard from the battlefield, return Fallen Ideal to its owner's hand.|
-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.|
+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 any target this turn.|
Feebleness|Time Spiral|110|C|{1}{B}|Enchantment - Aura|||Flash (You may cast this spell any time you could cast an instant.)$Enchant creature$Enchanted creature gets -2/-1.|
Gorgon Recluse|Time Spiral|111|C|{3}{B}{B}|Creature - Gorgon|2|4|Whenever Gorgon Recluse blocks or becomes blocked by a nonblack creature, destroy that creature at end of combat.$Madness {B}{B} (If you discard this card, you may cast it for its madness cost instead of putting it into your graveyard.)|
Haunting Hymn|Time Spiral|112|U|{4}{B}{B}|Instant|||Target player discards two cards. If you cast this spell during your main phase, that player discards four cards instead.|
@@ -24760,27 +24760,27 @@ Fury Sliver|Time Spiral|157|U|{5}{R}|Creature - Sliver|3|3|All Sliver creatures
Ghitu Firebreathing|Time Spiral|158|C|{1}{R}|Enchantment - Aura|||Flash (You may cast this spell any time you could cast an instant.)$Enchant creature${R}: Enchanted creature gets +1/+0 until end of turn.${R}: Return Ghitu Firebreathing to its owner's hand.|
Goblin Skycutter|Time Spiral|159|C|{1}{R}|Creature - Goblin Warrior|2|1|Sacrifice Goblin Skycutter: Goblin Skycutter deals 2 damage to target creature with flying. That creature loses flying until end of turn.|
Evangelize|Time Spiral|16|R|{4}{W}|Sorcery|||Buyback {2}{W}{W} (You may pay an additional {2}{W}{W} as you cast this spell. If you do, put this card into your hand as it resolves.)$Gain control of target creature of an opponent's choice that he or she controls.|
-Grapeshot|Time Spiral|160|C|{1}{R}|Sorcery|||Grapeshot deals 1 damage to target creature or player.$Storm (When you cast this spell, copy it for each spell cast before it this turn. You may choose new targets for the copies.)|
+Grapeshot|Time Spiral|160|C|{1}{R}|Sorcery|||Grapeshot deals 1 damage to any target.$Storm (When you cast this spell, copy it for each spell cast before it this turn. You may choose new targets for the copies.)|
Greater Gargadon|Time Spiral|161|R|{9}{R}|Creature - Beast|9|7|Suspend 10-{R} (Rather than cast this card from your hand, you may pay {R} and exile it with ten 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.)$Sacrifice an artifact, creature, or land: Remove a time counter from Greater Gargadon. Activate this ability only if Greater Gargadon is suspended.|
Ground Rift|Time Spiral|162|C|{R}|Sorcery|||Target creature without flying can't block this turn.$Storm (When you cast this spell, copy it for each spell cast before it this turn. You may choose new targets for the copies.)|
Ib Halfheart, Goblin Tactician|Time Spiral|163|R|{3}{R}|Legendary Creature - Goblin Advisor|3|2|Whenever another Goblin you control becomes blocked, sacrifice it. If you do, it deals 4 damage to each creature blocking it.$Sacrifice two Mountains: Put two 1/1 red Goblin creature tokens onto the battlefield.|
Ignite Memories|Time Spiral|164|U|{4}{R}|Sorcery|||Target player reveals a card at random from his or her hand. Ignite Memories deals damage to that player equal to that card's converted mana cost.$Storm (When you cast this spell, copy it for each spell cast before it this turn. You may choose new targets for the copies.)|
Ironclaw Buzzardiers|Time Spiral|165|C|{2}{R}|Creature - Orc Scout|2|2|Ironclaw Buzzardiers can't block creatures with power 2 or greater.${R}: Ironclaw Buzzardiers gains flying until end of turn.|
-Jaya Ballard, Task Mage|Time Spiral|166|R|{1}{R}{R}|Legendary Creature - Human Spellshaper|2|2|{R}, {tap}, Discard a card: Destroy target blue permanent.${1}{R}, {tap}, Discard a card: Jaya Ballard, Task Mage deals 3 damage to target creature or player. A creature dealt damage this way can't be regenerated this turn.${5}{R}{R}, {tap}, Discard a card: Jaya Ballard deals 6 damage to each creature and each player.|
+Jaya Ballard, Task Mage|Time Spiral|166|R|{1}{R}{R}|Legendary Creature - Human Spellshaper|2|2|{R}, {tap}, Discard a card: Destroy target blue permanent.${1}{R}, {tap}, Discard a card: Jaya Ballard, Task Mage deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.${5}{R}{R}, {tap}, Discard a card: Jaya Ballard deals 6 damage to each creature and each player.|
Keldon Halberdier|Time Spiral|167|C|{4}{R}|Creature - Human Warrior|4|1|First strike$Suspend 4-{R} (Rather than cast this card from your hand, you may pay {R} and exile it with four time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost. It has haste.)|
Lightning Axe|Time Spiral|168|C|{R}|Instant|||As an additional cost to cast Lightning Axe, discard a card or pay {5}.$Lightning Axe deals 5 damage to target creature.|
-Magus of the Scroll|Time Spiral|169|R|{R}|Creature - Human Wizard|1|1|{3}, {tap}: Name a card. Reveal a card at random from your hand. If it's the named card, Magus of the Scroll deals 2 damage to target creature or player.|
+Magus of the Scroll|Time Spiral|169|R|{R}|Creature - Human Wizard|1|1|{3}, {tap}: Name a card. Reveal a card at random from your hand. If it's the named card, Magus of the Scroll deals 2 damage to any target.|
Flickering Spirit|Time Spiral|17|C|{3}{W}|Creature - Spirit|2|2|Flying${3}{W}: Exile Flickering Spirit, then return it to the battlefield under its owner's control.|
Mogg War Marshal|Time Spiral|170|C|{1}{R}|Creature - Goblin Warrior|1|1|Echo {1}{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 Mogg War Marshal enters the battlefield or dies, put a 1/1 red Goblin creature token onto the battlefield.|
Norin the Wary|Time Spiral|171|R|{R}|Legendary Creature - Human Warrior|2|1|When a player casts a spell or a creature attacks, exile Norin the Wary. Return it to the battlefield under its owner's control at the beginning of the next end step.|
-Orcish Cannonade|Time Spiral|172|C|{1}{R}{R}|Instant|||Orcish Cannonade deals 2 damage to target creature or player and 3 damage to you.$Draw a card.|
+Orcish Cannonade|Time Spiral|172|C|{1}{R}{R}|Instant|||Orcish Cannonade deals 2 damage to any target and 3 damage to you.$Draw a card.|
Pardic Dragon|Time Spiral|173|R|{4}{R}{R}|Creature - Dragon|4|4|Flying${R}: Pardic Dragon gets +1/+0 until end of turn.$Suspend 2-{R}{R} (Rather than cast this card from your hand, you may pay {R}{R} and exile it with two 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 Pardic Dragon is suspended, that player may put a time counter on Pardic Dragon.|
Plunder|Time Spiral|174|C|{4}{R}|Sorcery|||Destroy target artifact or land.$Suspend 4-{1}{R} (Rather than cast this card from your hand, you may pay {1}{R} and exile it with four time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)|
Reiterate|Time Spiral|175|R|{1}{R}{R}|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.)$Copy target instant or sorcery spell. You may choose new targets for the copy.|
-Rift Bolt|Time Spiral|176|C|{2}{R}|Sorcery|||Rift Bolt deals 3 damage to target creature or player.$Suspend 1-{R} (Rather than cast this card from your hand, you may pay {R} and exile it with a time counter on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)|
+Rift Bolt|Time Spiral|176|C|{2}{R}|Sorcery|||Rift Bolt deals 3 damage to any target.$Suspend 1-{R} (Rather than cast this card from your hand, you may pay {R} and exile it with a time counter on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost.)|
Sedge Sliver|Time Spiral|177|R|{2}{R}|Creature - Sliver|2|2|All Sliver creatures have "This creature gets +1/+1 as long as you control a Swamp."$All Slivers have "{B}: Regenerate this permanent."|
Subterranean Shambler|Time Spiral|178|C|{3}{R}|Creature - Elemental|2|3|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 Subterranean Shambler enters the battlefield or leaves the battlefield, it deals 1 damage to each creature without flying.|
-Sudden Shock|Time Spiral|179|U|{1}{R}|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.)$Sudden Shock deals 2 damage to target creature or player.|
+Sudden Shock|Time Spiral|179|U|{1}{R}|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.)$Sudden Shock deals 2 damage to any target.|
Foriysian Interceptor|Time Spiral|18|C|{3}{W}|Creature - Human Soldier|0|5|Flash (You may cast this spell any time you could cast an instant.)$Defender$Foriysian Interceptor can block an additional creature each combat.|
Sulfurous Blast|Time Spiral|180|U|{2}{R}{R}|Instant|||Sulfurous Blast deals 2 damage to each creature and each player. If you cast this spell during your main phase, Sulfurous Blast deals 3 damage to each creature and each player instead.|
Tectonic Fiend|Time Spiral|181|U|{4}{R}{R}|Creature - Elemental|7|7|Echo {4}{R}{R} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)$Tectonic Fiend attacks each turn if able.|
@@ -24799,7 +24799,7 @@ Chameleon Blur|Time Spiral|192|C|{3}{G}|Instant|||Prevent all damage that creatu
Durkwood Baloth|Time Spiral|193|C|{4}{G}{G}|Creature - Beast|5|5|Suspend 5-{G} (Rather than cast this card from your hand, you may pay {G} and exile it with five time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost. It has haste.)|
Durkwood Tracker|Time Spiral|194|U|{4}{G}|Creature - Giant|4|3|{1}{G}, {tap}: If Durkwood Tracker is on the battlefield, it deals damage equal to its power to target attacking creature. That creature deals damage equal to its power to Durkwood Tracker.|
Fungus Sliver|Time Spiral|195|R|{3}{G}|Creature - Fungus Sliver|2|2|All Sliver creatures have "Whenever this creature is dealt damage, put a +1/+1 counter on it." (The damage is dealt before the counter is put on.)|
-Gemhide Sliver|Time Spiral|196|C|{1}{G}|Creature - Sliver|1|1|All Slivers have "{tap}: Add one mana of any color to your mana pool."|
+Gemhide Sliver|Time Spiral|196|C|{1}{G}|Creature - Sliver|1|1|All Slivers have "{tap}: Add one mana of any color."|
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.|
Greenseeker|Time Spiral|198|C|{G}|Creature - Elf Spellshaper|1|1|{G}, {tap}, Discard a card: Search your library for a basic land card, reveal it, and put it into your hand. Then shuffle your library.|
Havenwood Wurm|Time Spiral|199|C|{6}{G}|Creature - Wurm|5|6|Flash (You may cast this spell any time you could cast an instant.)$Trample|
@@ -24839,7 +24839,7 @@ Thelonite Hermit|Time Spiral|228|R|{3}{G}|Creature - Elf Shaman|1|1|Saproling cr
Thrill of the Hunt|Time Spiral|229|C|{G}|Instant|||Target creature gets +1/+2 until end of turn.$Flashback {W} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Icatian Crier|Time Spiral|23|C|{2}{W}|Creature - Human Spellshaper|1|1|{1}{W}, {tap}, Discard a card: Put two 1/1 white Citizen creature tokens onto the battlefield.|
Tromp the Domains|Time Spiral|230|U|{5}{G}|Sorcery|||Domain - Until end of turn, creatures you control gain trample and get +1/+1 for each basic land type among lands you control.|
-Unyaro Bees|Time Spiral|231|R|{G}{G}{G}|Creature - Insect|0|1|Flying${G}: Unyaro Bees gets +1/+1 until end of turn.${3}{G}, Sacrifice Unyaro Bees: Unyaro Bees deals 2 damage to target creature or player.|
+Unyaro Bees|Time Spiral|231|R|{G}{G}{G}|Creature - Insect|0|1|Flying${G}: Unyaro Bees gets +1/+1 until end of turn.${3}{G}, Sacrifice Unyaro Bees: Unyaro Bees deals 2 damage to any target.|
Verdant Embrace|Time Spiral|232|R|{3}{G}{G}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +3/+3 and has "At the beginning of each upkeep, put a 1/1 green Saproling creature token onto the battlefield."|
Wormwood Dryad|Time Spiral|233|C|{2}{G}|Creature - Dryad|3|1|{G}: Wormwood Dryad gains forestwalk until end of turn and deals 1 damage to you.${B}: Wormwood Dryad gains swampwalk until end of turn and deals 1 damage to you.|
Wurmcalling|Time Spiral|234|R|{X}{G}|Sorcery|||Buyback {2}{G} (You may pay an additional {2}{G} as you cast this spell. If you do, put this card into your hand as it resolves.)$Put an X/X green Wurm creature token onto the battlefield.|
@@ -24851,7 +24851,7 @@ Ghostflame Sliver|Time Spiral|239|U|{B}{R}|Creature - Sliver|2|2|All Slivers are
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.)|
Harmonic Sliver|Time Spiral|240|U|{1}{G}{W}|Creature - Sliver|1|1|All Slivers have "When this permanent enters the battlefield, destroy target artifact or enchantment."|
Ith, High Arcanist|Time Spiral|241|R|{5}{W}{U}|Legendary Creature - Human Wizard|3|5|Vigilance${tap}: Untap target attacking creature. Prevent all combat damage that would be dealt to and dealt by that creature this turn.$Suspend 4-{W}{U} (Rather than cast this card from your hand, you may pay {W}{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.)|
-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.|
+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 any target equal to that spell's converted mana cost.|
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.|
Opaline Sliver|Time Spiral|244|U|{1}{W}{U}|Creature - Sliver|2|2|All Slivers have "Whenever this permanent becomes the target of a spell an opponent controls, you may draw a card."|
Saffi Eriksdotter|Time Spiral|245|R|{G}{W}|Legendary Creature - Human Scout|2|2|Sacrifice Saffi Eriksdotter: When target creature is put into your graveyard from the battlefield this turn, return that card to the battlefield.|
@@ -24861,23 +24861,23 @@ Assembly-Worker|Time Spiral|248|U|{3}|Artifact Creature - Assembly-Worker|2|2|{t
Brass Gnat|Time Spiral|249|C|{1}|Artifact Creature - Insect|1|1|Flying$Brass Gnat doesn't untap during your untap step.$At the beginning of your upkeep, you may pay {1}. If you do, untap Brass Gnat.|
Jedit's Dragoons|Time Spiral|25|C|{5}{W}|Creature - Cat Soldier|2|5|Vigilance$When Jedit's Dragoons enters the battlefield, you gain 4 life.|
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.|
-Chromatic Star|Time Spiral|251|C|{1}|Artifact|||{1}, {tap}, Sacrifice Chromatic Star: Add one mana of any color to your mana pool.$When Chromatic Star is put into a graveyard from the battlefield, draw a card.|
+Chromatic Star|Time Spiral|251|C|{1}|Artifact|||{1}, {tap}, Sacrifice Chromatic Star: Add one mana of any color.$When Chromatic Star is put into a graveyard from the battlefield, draw a card.|
Chronatog Totem|Time Spiral|252|U|{3}|Artifact|||{tap}: Add {U}.${1}{U}: Chronatog Totem becomes a 1/2 blue Atog artifact creature until end of turn.${0}: Chronatog Totem gets +3/+3 until end of turn. You skip your next turn. Activate this ability only once each turn and only if Chronatog Totem is a creature.|
-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.|
+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 any target.${tap}: Put a +1/+1 counter on Clockwork Hydra.|
Foriysian Totem|Time Spiral|254|U|{3}|Artifact|||{tap}: Add {R}.${4}{R}: Foriysian Totem becomes a 4/4 red Giant artifact creature with trample until end of turn.$As long as Foriysian Totem is a creature, it can block an additional creature each combat.|
Gauntlet of Power|Time Spiral|255|R|{5}|Artifact|||As Gauntlet of Power enters the battlefield, choose a color.$Creatures of the chosen color get +1/+1.$Whenever a basic land is tapped for mana of the chosen color, its controller adds one mana of that color to his or her mana pool (in addition to the mana the land produces).|
Hivestone|Time Spiral|256|R|{2}|Artifact|||Creatures you control are Slivers in addition to their other creature types.|
Jhoira's Timebug|Time Spiral|257|C|{2}|Artifact Creature - Insect|1|2|{tap}: Choose target permanent you control or suspended card you own. If that permanent or card has a time counter on it, you may remove a time counter from it or put another time counter on it.|
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.|
-Lotus Bloom|Time Spiral|259|R||Artifact|||Suspend 3-{0} (Rather than cast this card from your hand, pay {0} 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.)${tap}, Sacrifice Lotus Bloom: Add three mana of any one color to your mana pool.|
+Lotus Bloom|Time Spiral|259|R||Artifact|||Suspend 3-{0} (Rather than cast this card from your hand, pay {0} 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.)${tap}, Sacrifice Lotus Bloom: Add three mana of any one color.|
Knight of the Holy Nimbus|Time Spiral|26|U|{W}{W}|Creature - Human Rebel Knight|2|2|Flanking (Whenever a creature without flanking blocks this creature, the blocking creature gets -1/-1 until end of turn.)$If Knight of the Holy Nimbus would be destroyed, regenerate it.${2}: Knight of the Holy Nimbus can't be regenerated this turn. Only any opponent may activate this ability.|
-Paradise Plume|Time Spiral|260|U|{4}|Artifact|||As Paradise Plume enters the battlefield, choose a color.$Whenever a player casts a spell of the chosen color, you may gain 1 life.${tap}: Add one mana of the chosen color to your mana pool.|
+Paradise Plume|Time Spiral|260|U|{4}|Artifact|||As Paradise Plume enters the battlefield, choose a color.$Whenever a player casts a spell of the chosen color, you may gain 1 life.${tap}: Add one mana of the chosen color.|
Phyrexian Totem|Time Spiral|261|U|{3}|Artifact|||{tap}: Add {B}.${2}{B}: Phyrexian Totem becomes a 5/5 black Horror artifact creature with trample until end of turn.$Whenever Phyrexian Totem is dealt damage, if it's a creature, sacrifice that many permanents.|
-Prismatic Lens|Time Spiral|262|C|{2}|Artifact|||{tap}: Add {C}.${1}, {tap}: Add one mana of any color to your mana pool.|
+Prismatic Lens|Time Spiral|262|C|{2}|Artifact|||{tap}: Add {C}.${1}, {tap}: Add one mana of any color.|
Sarpadian Empires, Vol. VII|Time Spiral|263|R|{3}|Artifact|||As Sarpadian Empires, Vol. VII enters the battlefield, choose white Citizen, blue Camarid, black Thrull, red Goblin, or green Saproling.${3}, {tap}: Put a 1/1 creature token of the chosen color and type onto the battlefield.|
Stuffy Doll|Time Spiral|264|R|{5}|Artifact Creature - Construct|0|1|As Stuffy Doll enters the battlefield, choose a player.$Stuffy Doll is indestructible.$Whenever Stuffy Doll is dealt damage, it deals that much damage to the chosen player.${tap}: Stuffy Doll deals 1 damage to itself.|
Thunder Totem|Time Spiral|265|U|{3}|Artifact|||{tap}: Add {W}.${1}{W}{W}: Thunder Totem becomes a 2/2 white Spirit artifact creature with flying and first strike until end of turn.|
-Triskelavus|Time Spiral|266|R|{7}|Artifact Creature - Construct|1|1|Flying$Triskelavus enters the battlefield with three +1/+1 counters on it.${1}, Remove a +1/+1 counter from Triskelavus: Put a 1/1 colorless Triskelavite artifact creature token with flying onto the battlefield. It has "Sacrifice this creature: This creature deals 1 damage to target creature or player."|
+Triskelavus|Time Spiral|266|R|{7}|Artifact Creature - Construct|1|1|Flying$Triskelavus enters the battlefield with three +1/+1 counters on it.${1}, Remove a +1/+1 counter from Triskelavus: Put a 1/1 colorless Triskelavite artifact creature token with flying onto the battlefield. It has "Sacrifice this creature: This creature deals 1 damage to any target."|
Venser's Sliver|Time Spiral|267|C|{5}|Artifact Creature - Sliver|3|3||
Weatherseed Totem|Time Spiral|268|U|{3}|Artifact|||{tap}: Add {G}.${2}{G}{G}{G}: Weatherseed Totem becomes a 5/3 green Treefolk artifact creature with trample until end of turn.$When Weatherseed Totem is put into a graveyard from the battlefield, if it was a creature, return this card to its owner's hand.|
Academy Ruins|Time Spiral|269|R||Legendary Land|||{tap}: Add {C}.${1}{U}, {tap}: Put target artifact card from your graveyard on top of your library.|
@@ -24886,7 +24886,7 @@ Calciform Pools|Time Spiral|270|U||Land|||{tap}: Add {C}.${1}, {tap}: Put a stor
Dreadship Reef|Time Spiral|271|U||Land|||{tap}: Add {C}.${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}.|
Flagstones of Trokair|Time Spiral|272|R||Legendary Land|||{tap}: Add {W}.$When Flagstones of Trokair is put into a graveyard from the battlefield, you may search your library for a Plains card and put it onto the battlefield tapped. If you do, shuffle your library.|
Fungal Reaches|Time Spiral|273|U||Land|||{tap}: Add {C}.${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}.|
-Gemstone Caverns|Time Spiral|274|R||Legendary Land|||If Gemstone Caverns is in your opening hand and you're not playing first, you may begin the game with Gemstone Caverns on the battlefield with a luck counter on it. If you do, exile a card from your hand.${tap}: Add {C}. If Gemstone Caverns has a luck counter on it, instead add one mana of any color to your mana pool.|
+Gemstone Caverns|Time Spiral|274|R||Legendary Land|||If Gemstone Caverns is in your opening hand and you're not playing first, you may begin the game with Gemstone Caverns on the battlefield with a luck counter on it. If you do, exile a card from your hand.${tap}: Add {C}. If Gemstone Caverns has a luck counter on it, instead add one mana of any color.|
Kher Keep|Time Spiral|275|R||Legendary Land|||{tap}: Add {C}.${1}{R}, {tap}: Put a 0/1 red Kobold creature token named Kobolds of Kher Keep onto the battlefield.|
Molten Slagheap|Time Spiral|276|U||Land|||{tap}: Add {C}.${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}.|
Saltcrusted Steppe|Time Spiral|277|U||Land|||{tap}: Add {C}.${1}, {tap}: Put a storage counter on Saltcrusted Steppe.${1}, Remove X storage counters from Saltcrusted Steppe: Add X mana in any combination of {G} and/or {W}.|
@@ -24953,7 +24953,7 @@ Cavalry Master|Time Spiral|6|U|{2}{W}{W}|Creature - Human Knight|3|3|Flanking (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.)|
Eternity Snare|Time Spiral|61|C|{5}{U}|Enchantment - Aura|||Enchant creature$When Eternity Snare enters the battlefield, draw a card.$Enchanted creature doesn't untap during its controller's untap step.|
Fathom Seer|Time Spiral|62|C|{1}{U}|Creature - Illusion|1|3|Morph-Return two Islands you control to their owner's hand. You may cast this card face downn 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.|
-Fledgling Mawcor|Time Spiral|63|U|{3}{U}|Creature - Beast|2|2|Flying${tap}: Fledgling Mawcor deals 1 damage to target creature or player.$Morph {U}{U} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
+Fledgling Mawcor|Time Spiral|63|U|{3}{U}|Creature - Beast|2|2|Flying${tap}: Fledgling Mawcor deals 1 damage to any target.$Morph {U}{U} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
Fool's Demise|Time Spiral|64|U|{4}{U}|Enchantment - Aura|||Enchant creature$When enchanted creature dies, return that card to the battlefield under your control.$When Fool's Demise is put into a graveyard from the battlefield, return Fool's Demise to its owner's hand.|
Ixidron|Time Spiral|65|R|{3}{U}{U}|Creature - Illusion|*|*|As Ixidron enters the battlefield, turn all other nontoken creatures face down. (They're 2/2 creatures.)$Ixidron's power and toughness are each equal to the number of face-down creatures on the battlefield.|
Looter il-Kor|Time Spiral|66|C|{1}{U}|Creature - Kor Rogue|1|1|Shadow (This creature can block or be blocked by only creatures with shadow.)$Whenever Looter il-Kor deals damage to an opponent, draw a card, then discard a card.|
@@ -24963,7 +24963,7 @@ Mystical Teachings|Time Spiral|69|C|{3}{U}|Instant|||Search your library for an
Celestial Crusader|Time Spiral|7|U|{2}{W}{W}|Creature - Spirit|2|2|Flash (You may cast this spell any time you could cast an 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.)$Flying$Other white creatures get +1/+1.|
Ophidian Eye|Time Spiral|70|C|{2}{U}|Enchantment - Aura|||Flash (You may cast this spell any time you could cast an instant.)$Enchant creature$Whenever enchanted creature deals damage to an opponent, you may draw a card.|
Paradox Haze|Time Spiral|71|U|{2}{U}|Enchantment - Aura|||Enchant player$At the beginning of enchanted player's first upkeep each turn, that player gets an additional upkeep step after this step.|
-Psionic Sliver|Time Spiral|72|R|{4}{U}|Creature - Sliver|2|2|All Sliver creatures have "{tap}: This creature deals 2 damage to target creature or player and 3 damage to itself."|
+Psionic Sliver|Time Spiral|72|R|{4}{U}|Creature - Sliver|2|2|All Sliver creatures have "{tap}: This creature deals 2 damage to any target and 3 damage to itself."|
Riftwing Cloudskate|Time Spiral|73|U|{3}{U}{U}|Creature - Illusion|2|2|Flying$When Riftwing Cloudskate enters the battlefield, return target permanent to its owner's hand.$Suspend 3-{1}{U} (Rather than cast this card from your hand, you may pay {1}{U} 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.)|
Sage of Epityr|Time Spiral|74|C|{U}|Creature - Human Wizard|1|1|When Sage of Epityr enters the battlefield, look at the top four cards of your library, then put them back in any order.|
Screeching Sliver|Time Spiral|75|C|{U}|Creature - Sliver|1|1|All Slivers have "{tap}: Target player puts the top card of his or her library into his or her graveyard."|
@@ -24994,14 +24994,14 @@ Call to the Netherworld|Time Spiral|97|C|{B}|Sorcery|||Return target black creat
Corpulent Corpse|Time Spiral|98|C|{5}{B}|Creature - Zombie|3|3|Fear (This creature can't be blocked except by artifact creatures and/or black creatures.)$Suspend 5-{B} (Rather than cast this card from your hand, you may pay {B} and exile it with five time counters on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost. It has haste.)|
Curse of the Cabal|Time Spiral|99|R|{9}{B}|Sorcery|||Target player sacrifices half the permanents he or she controls, rounded down.$Suspend 2-{2}{B}{B} (Rather than cast this card from your hand, you may pay {2}{B}{B} and exile it with two 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.)$At the beginning of each player's upkeep, if Curse of the Cabal is suspended, that player may sacrifice a permanent. If he or she does, put two time counters on Curse of the Cabal.|
Akroma, Angel of Wrath|Time Spiral "Timeshifted"|1|Special|{5}{W}{W}{W}|Legendary Creature - Angel|6|6|Flying, first strike, vigilance, trample, haste, protection from black and from red|
-Icatian Javelineers|Time Spiral "Timeshifted"|10|Special|{W}|Creature - Human Soldier|1|1|Icatian Javelineers enters the battlefield with a javelin counter on it.${tap}, Remove a javelin counter from Icatian Javelineers: Icatian Javelineers deals 1 damage to target creature or player.|
+Icatian Javelineers|Time Spiral "Timeshifted"|10|Special|{W}|Creature - Human Soldier|1|1|Icatian Javelineers enters the battlefield with a javelin counter on it.${tap}, Remove a javelin counter from Icatian Javelineers: Icatian Javelineers deals 1 damage to any target.|
Sol'kanar the Swamp King|Time Spiral "Timeshifted"|100|Special|{2}{U}{B}{R}|Legendary Creature - Demon|5|5|Swampwalk$Whenever a player casts a black spell, you gain 1 life.|
Spined Sliver|Time Spiral "Timeshifted"|101|Special|{R}{G}|Creature - Sliver|2|2|Whenever a Sliver becomes blocked, that Sliver gets +1/+1 until end of turn for each creature blocking it.|
-Stormbind|Time Spiral "Timeshifted"|102|Special|{1}{R}{G}|Enchantment|||{2}, Discard a card at random: Stormbind deals 2 damage to target creature or player.|
+Stormbind|Time Spiral "Timeshifted"|102|Special|{1}{R}{G}|Enchantment|||{2}, Discard a card at random: Stormbind deals 2 damage to any target.|
Teferi's Moat|Time Spiral "Timeshifted"|103|Special|{3}{W}{U}|Enchantment|||As Teferi's Moat enters the battlefield, choose a color.$Creatures of the chosen color without flying can't attack you.|
Vhati il-Dal|Time Spiral "Timeshifted"|104|Special|{2}{B}{G}|Legendary Creature - Human Warrior|3|3|{tap}: Until end of turn, target creature has base power 1 or base toughness 1.|
Void|Time Spiral "Timeshifted"|105|Special|{3}{B}{R}|Sorcery|||Choose a number. Destroy all artifacts and creatures with converted mana cost equal to that number. Then target player reveals his or her hand and discards all nonland cards with converted mana cost equal to the number.|
-Assault|Time Spiral "Timeshifted"|106a|Special|{R}|Sorcery|||Assault deals 2 damage to target creature or player.$|
+Assault|Time Spiral "Timeshifted"|106a|Special|{R}|Sorcery|||Assault deals 2 damage to any target.$|
Battery|Time Spiral "Timeshifted"|106b|Special|{3}{G}|Sorcery|||$Put a 3/3 green Elephant creature token onto the battlefield.|
Claws of Gix|Time Spiral "Timeshifted"|107|Special|{0}|Artifact|||{1}, Sacrifice a permanent: You gain 1 life.|
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.|
@@ -25016,7 +25016,7 @@ Tormod's Crypt|Time Spiral "Timeshifted"|115|Special|{0}|Artifact|||{tap}, Sacri
War Barge|Time Spiral "Timeshifted"|116|Special|{4}|Artifact|||{3}: Target creature gains islandwalk until end of turn. When War Barge leaves the battlefield this turn, destroy that creature. A creature destroyed this way can't be regenerated.|
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.)|
Desert|Time Spiral "Timeshifted"|118|Special||Land - Desert|||{tap}: Add {C}.${tap}: Desert deals 1 damage to target attacking creature. Activate this ability only during the end of combat step.|
-Gemstone Mine|Time Spiral "Timeshifted"|119|Special||Land|||Gemstone Mine enters the battlefield with three mining counters on it.${tap}, Remove a mining counter from Gemstone Mine: Add one mana of any color to your mana pool. If there are no mining counters on Gemstone Mine, sacrifice it.|
+Gemstone Mine|Time Spiral "Timeshifted"|119|Special||Land|||Gemstone Mine enters the battlefield with three mining counters on it.${tap}, Remove a mining counter from Gemstone Mine: Add one mana of any color. If there are no mining counters on Gemstone Mine, sacrifice it.|
Resurrection|Time Spiral "Timeshifted"|12|Special|{2}{W}{W}|Sorcery|||Return target creature card from your graveyard to the battlefield.|
Pendelhaven|Time Spiral "Timeshifted"|120|Special||Legendary Land|||{tap}: Add {G}.${tap}: Target 1/1 creature gets +1/+2 until end of turn.|
Safe Haven|Time Spiral "Timeshifted"|121|Special||Land|||{2}, {tap}: Exile target creature you control.$At the beginning of your upkeep, you may sacrifice Safe Haven. If you do, return each card exiled with Safe Haven to the battlefield under its owner's control.|
@@ -25036,10 +25036,10 @@ Lord of Atlantis|Time Spiral "Timeshifted"|24|Special|{U}{U}|Creature - Merfolk|
Merfolk Assassin|Time Spiral "Timeshifted"|25|Special|{U}{U}|Creature - Merfolk Assassin|1|2|{tap}: Destroy target creature with islandwalk.|
Mistform Ultimus|Time Spiral "Timeshifted"|26|Special|{3}{U}|Legendary Creature - Illusion|3|3|Mistform Ultimus is every creature type (even if this card isn't on the battlefield).|
Ovinomancer|Time Spiral "Timeshifted"|27|Special|{2}{U}|Creature - Human Wizard|0|1|When Ovinomancer enters the battlefield, sacrifice it unless you return three basic lands you control to their owner's hand.${tap}, Return Ovinomancer to its owner's hand: Destroy target creature. It can't be regenerated. That creature's controller puts a 0/1 green Sheep creature token onto the battlefield.|
-Pirate Ship|Time Spiral "Timeshifted"|28|Special|{4}{U}|Creature - Human Pirate|4|3|Pirate Ship can't attack unless defending player controls an Island.${tap}: Pirate Ship deals 1 damage to target creature or player.$When you control no Islands, sacrifice Pirate Ship.|
-Prodigal Sorcerer|Time Spiral "Timeshifted"|29|Special|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to target creature or player.|
+Pirate Ship|Time Spiral "Timeshifted"|28|Special|{4}{U}|Creature - Human Pirate|4|3|Pirate Ship can't attack unless defending player controls an Island.${tap}: Pirate Ship deals 1 damage to any target.$When you control no Islands, sacrifice Pirate Ship.|
+Prodigal Sorcerer|Time Spiral "Timeshifted"|29|Special|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to any target.|
Celestial Dawn|Time Spiral "Timeshifted"|3|Special|{1}{W}{W}|Enchantment|||Lands you control are Plains.$Nonland cards you own that aren't on the battlefield, spells you control, and nonland permanents you control are white.$You may spend white mana as though it were mana of any color. You may spend other mana only as though it were colorless mana.|
-Psionic Blast|Time Spiral "Timeshifted"|30|Special|{2}{U}|Instant|||Psionic Blast deals 4 damage to target creature or player and 2 damage to you.|
+Psionic Blast|Time Spiral "Timeshifted"|30|Special|{2}{U}|Instant|||Psionic Blast deals 4 damage to any target and 2 damage to you.|
Sindbad|Time Spiral "Timeshifted"|31|Special|{1}{U}|Creature - Human|1|1|{tap}: Draw a card and reveal it. If it isn't a land card, discard it.|
Stormscape Familiar|Time Spiral "Timeshifted"|32|Special|{1}{U}|Creature - Bird|1|1|Flying$White spells and black spells you cast cost {1} less to cast.|
Unstable Mutation|Time Spiral "Timeshifted"|33|Special|{U}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +3/+3.$At the beginning of the upkeep of enchanted creature's controller, put a -1/-1 counter on that creature.|
@@ -25056,7 +25056,7 @@ Evil Eye of Orms-by-Gore|Time Spiral "Timeshifted"|42|Special|{4}{B}|Creature -
Faceless Butcher|Time Spiral "Timeshifted"|43|Special|{2}{B}{B}|Creature - Nightmare Horror|2|3|When Faceless Butcher enters the battlefield, exile target creature other than Faceless Butcher.$When Faceless Butcher leaves the battlefield, return the exiled card to the battlefield under its owner's control.|
Funeral Charm|Time Spiral "Timeshifted"|44|Special|{B}|Instant|||Choose one - Target player discards a card; or target creature gets +2/-1 until end of turn; or target creature gains swampwalk until end of turn.|
Sengir Autocrat|Time Spiral "Timeshifted"|45|Special|{3}{B}|Creature - Human|2|2|When Sengir Autocrat enters the battlefield, put three 0/1 black Serf creature tokens onto the battlefield.$When Sengir Autocrat leaves the battlefield, exile all Serf tokens.|
-Shadow Guildmage|Time Spiral "Timeshifted"|46|Special|{B}|Creature - Human Wizard|1|1|{U}, {tap}: Put target creature you control on top of its owner's library.${R}, {tap}: Shadow Guildmage deals 1 damage to target creature or player and 1 damage to you.|
+Shadow Guildmage|Time Spiral "Timeshifted"|46|Special|{B}|Creature - Human Wizard|1|1|{U}, {tap}: Put target creature you control on top of its owner's library.${R}, {tap}: Shadow Guildmage deals 1 damage to any target and 1 damage to you.|
Soul Collector|Time Spiral "Timeshifted"|47|Special|{3}{B}{B}|Creature - Vampire|3|4|Flying$Whenever a creature dealt damage by Soul Collector this turn dies, return that card to the battlefield under your control.$Morph {B}{B}{B} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
Stupor|Time Spiral "Timeshifted"|48|Special|{2}{B}|Sorcery|||Target opponent discards a card at random, then discards a card.|
Swamp Mosquito|Time Spiral "Timeshifted"|49|Special|{1}{B}|Creature - Insect|0|1|Flying$Whenever Swamp Mosquito attacks and isn't blocked, defending player gets a poison counter. (A player with ten or more poison counters loses the game.)|
@@ -25069,21 +25069,21 @@ Withered Wretch|Time Spiral "Timeshifted"|54|Special|{B}{B}|Creature - Zombie Cl
Avalanche Riders|Time Spiral "Timeshifted"|55|Special|{3}{R}|Creature - Human Nomad|2|2|Haste$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 Avalanche Riders enters the battlefield, destroy target land.|
Browbeat|Time Spiral "Timeshifted"|56|Special|{2}{R}|Sorcery|||Any player may have Browbeat deal 5 damage to him or her. If no one does, target player draws three cards.|
Desolation Giant|Time Spiral "Timeshifted"|57|Special|{2}{R}{R}|Creature - Giant|3|3|Kicker {W}{W} (You may pay an additional {W}{W} as you cast this spell.)$When Desolation Giant enters the battlefield, destroy all other creatures you control. If it was kicked, destroy all other creatures instead.|
-Disintegrate|Time Spiral "Timeshifted"|58|Special|{X}{R}|Sorcery|||Disintegrate deals X damage to target creature or player. That creature can't be regenerated this turn. If the creature would die this turn, exile it instead.|
+Disintegrate|Time Spiral "Timeshifted"|58|Special|{X}{R}|Sorcery|||Disintegrate deals X damage to any target. That creature can't be regenerated this turn. If the creature would die this turn, exile it instead.|
Dragon Whelp|Time Spiral "Timeshifted"|59|Special|{2}{R}{R}|Creature - Dragon|2|3|Flying${R}: Dragon Whelp gets +1/+0 until end of turn. If this ability has been activated four or more times this turn, sacrifice Dragon Whelp at the beginning of the next end step.|
Disenchant|Time Spiral "Timeshifted"|6|Special|{1}{W}|Instant|||Destroy target artifact or enchantment.|
Dragonstorm|Time Spiral "Timeshifted"|60|Special|{8}{R}|Sorcery|||Search your library for a Dragon permanent card and put it onto the battlefield. Then shuffle your library.$Storm (When you cast this spell, copy it for each spell cast before it this turn.)|
Eron the Relentless|Time Spiral "Timeshifted"|61|Special|{3}{R}{R}|Legendary Creature - Human Rogue|5|2|Haste${R}{R}{R}: Regenerate Eron the Relentless.|
-Fiery Temper|Time Spiral "Timeshifted"|62|Special|{1}{R}{R}|Instant|||Fiery Temper deals 3 damage to target creature or player.$Madness {R} (If you discard this card, you may cast it for its madness cost instead of putting it into your graveyard.)|
-Fire Whip|Time Spiral "Timeshifted"|63|Special|{1}{R}|Enchantment - Aura|||Enchant creature you control$Enchanted creature has "{tap}: This creature deals 1 damage to target creature or player."$Sacrifice Fire Whip: Fire Whip deals 1 damage to target creature or player.|
+Fiery Temper|Time Spiral "Timeshifted"|62|Special|{1}{R}{R}|Instant|||Fiery Temper deals 3 damage to any target.$Madness {R} (If you discard this card, you may cast it for its madness cost instead of putting it into your graveyard.)|
+Fire Whip|Time Spiral "Timeshifted"|63|Special|{1}{R}|Enchantment - Aura|||Enchant creature you control$Enchanted creature has "{tap}: This creature deals 1 damage to any target."$Sacrifice Fire Whip: Fire Whip deals 1 damage to any target.|
Goblin Snowman|Time Spiral "Timeshifted"|64|Special|{3}{R}|Creature - Goblin|1|1|Whenever Goblin Snowman blocks, prevent all combat damage that would be dealt to and dealt by it this turn.${tap}: Goblin Snowman deals 1 damage to target creature it's blocking.|
Kobold Taskmaster|Time Spiral "Timeshifted"|65|Special|{1}{R}|Creature - Kobold|1|2|Other Kobold creatures you control get +1/+0.|
Orcish Librarian|Time Spiral "Timeshifted"|66|Special|{1}{R}|Creature - Orc|1|1|{R}, {tap}: Look at the top eight cards of your library. Exile four of them at random, then put the rest on top of your library in any order.|
Orgg|Time Spiral "Timeshifted"|67|Special|{3}{R}{R}|Creature - Orgg|6|6|Trample$Orgg can't attack if defending player controls an untapped creature with power 3 or greater.$Orgg can't block creatures with power 3 or greater.|
-Pandemonium|Time Spiral "Timeshifted"|68|Special|{3}{R}|Enchantment|||Whenever a creature enters the battlefield, that creature's controller may have it deal damage equal to its power to target creature or player of his or her choice.|
+Pandemonium|Time Spiral "Timeshifted"|68|Special|{3}{R}|Enchantment|||Whenever a creature enters the battlefield, that creature's controller may have it deal damage equal to its power to any target of his or her choice.|
Suq'Ata Lancer|Time Spiral "Timeshifted"|69|Special|{2}{R}|Creature - Human Knight|2|2|Haste$Flanking (Whenever a creature without flanking blocks this creature, the blocking creature gets -1/-1 until end of turn.)|
Enduring Renewal|Time Spiral "Timeshifted"|7|Special|{2}{W}{W}|Enchantment|||Play with your hand revealed.$If you would draw a card, reveal the top card of your library instead. If it's a creature card, put it into your graveyard. Otherwise, draw a card.$Whenever a creature is put into your graveyard from the battlefield, return it to your hand.|
-Tribal Flames|Time Spiral "Timeshifted"|70|Special|{1}{R}|Sorcery|||Domain - Tribal Flames deals X damage to target creature or player, where X is the number of basic land types among lands you control.|
+Tribal Flames|Time Spiral "Timeshifted"|70|Special|{1}{R}|Sorcery|||Domain - Tribal Flames deals X damage to any target, where X is the number of basic land types among lands you control.|
Uthden Troll|Time Spiral "Timeshifted"|71|Special|{2}{R}|Creature - Troll|2|2|{R}: Regenerate Uthden Troll.|
Wildfire Emissary|Time Spiral "Timeshifted"|72|Special|{3}{R}|Creature - Efreet|2|4|Protection from white${1}{R}: Wildfire Emissary gets +1/+0 until end of turn.|
Avoid Fate|Time Spiral "Timeshifted"|73|Special|{G}|Instant|||Counter target instant or Aura spell that targets a permanent you control.|
@@ -25101,10 +25101,10 @@ Scragnoth|Time Spiral "Timeshifted"|83|Special|{4}{G}|Creature - Beast|3|4|Scrag
Spike Feeder|Time Spiral "Timeshifted"|84|Special|{1}{G}{G}|Creature - Spike|0|0|Spike Feeder enters the battlefield with two +1/+1 counters on it.${2}, Remove a +1/+1 counter from Spike Feeder: Put a +1/+1 counter on target creature.$Remove a +1/+1 counter from Spike Feeder: You gain 2 life.|
Spitting Slug|Time Spiral "Timeshifted"|85|Special|{1}{G}{G}|Creature - Slug|2|4|Whenever Spitting Slug blocks or becomes blocked, you may pay {1}{G}. If you do, Spitting Slug gains first strike until end of turn. Otherwise, each creature blocking or blocked by Spitting Slug gains first strike until end of turn.|
Thallid|Time Spiral "Timeshifted"|86|Special|{G}|Creature - Fungus|1|1|At the beginning of your upkeep, put a spore counter on Thallid.$Remove three spore counters from Thallid: Put a 1/1 green Saproling creature token onto the battlefield.|
-Thornscape Battlemage|Time Spiral "Timeshifted"|87|Special|{2}{G}|Creature - Elf Wizard|2|2|Kicker {R} and/or {W} (You may pay an additional {R} and/or {W} as you cast this spell.)$When Thornscape Battlemage enters the battlefield, if it was kicked with its {R} kicker, it deals 2 damage to target creature or player.$When Thornscape Battlemage enters the battlefield, if it was kicked with its {W} kicker, destroy target artifact.|
+Thornscape Battlemage|Time Spiral "Timeshifted"|87|Special|{2}{G}|Creature - Elf Wizard|2|2|Kicker {R} and/or {W} (You may pay an additional {R} and/or {W} as you cast this spell.)$When Thornscape Battlemage enters the battlefield, if it was kicked with its {R} kicker, it deals 2 damage to any target.$When Thornscape Battlemage enters the battlefield, if it was kicked with its {W} kicker, destroy target artifact.|
Verdeloth the Ancient|Time Spiral "Timeshifted"|88|Special|{4}{G}{G}|Legendary Creature - Treefolk|4|7|Kicker {X} (You may pay an additional {X} as you cast this spell.)$Saproling creatures and other Treefolk creatures get +1/+1.$When Verdeloth the Ancient enters the battlefield, if it was kicked, put X 1/1 green Saproling creature tokens onto the battlefield.|
Wall of Roots|Time Spiral "Timeshifted"|89|Special|{1}{G}|Creature - Plant Wall|0|5|Defender$Put a -0/-1 counter on Wall of Roots: Add {G}. Activate this ability only once each turn.|
-Honorable Passage|Time Spiral "Timeshifted"|9|Special|{1}{W}|Instant|||The next time a source of your choice would deal damage to target creature or player this turn, prevent that damage. If damage from a red source is prevented this way, Honorable Passage deals that much damage to the source's controller.|
+Honorable Passage|Time Spiral "Timeshifted"|9|Special|{1}{W}|Instant|||The next time a source of your choice would deal damage to any target this turn, prevent that damage. If damage from a red source is prevented this way, Honorable Passage deals that much damage to the source's controller.|
Whirling Dervish|Time Spiral "Timeshifted"|90|Special|{G}{G}|Creature - Human Monk|1|1|Protection from black$At the beginning of each end step, if Whirling Dervish dealt damage to an opponent this turn, put a +1/+1 counter on it.|
Coalition Victory|Time Spiral "Timeshifted"|91|Special|{3}{W}{U}{B}{R}{G}|Sorcery|||You win the game if you control a land of each basic land type and a creature of each color.|
Fiery Justice|Time Spiral "Timeshifted"|92|Special|{R}{G}{W}|Sorcery|||Fiery Justice deals 5 damage divided as you choose among any number of target creatures and/or players. Target opponent gains 5 life.|
@@ -25117,12 +25117,12 @@ Nicol Bolas|Time Spiral "Timeshifted"|98|Special|{2}{U}{U}{B}{B}{R}{R}|Legendary
Shadowmage Infiltrator|Time Spiral "Timeshifted"|99|Special|{1}{U}{B}|Creature - Human Wizard|1|3|Fear (This creature can't be blocked except by artifact creatures and/or black creatures.)$Whenever Shadowmage Infiltrator deals combat damage to a player, you may draw a card.|
Angel of Retribution|Torment|1|R|{6}{W}|Creature - Angel|5|5|Flying, first strike|
Morningtide|Torment|10|R|{1}{W}|Sorcery|||Exile all cards from all graveyards.|
-Grim Lavamancer|Torment|100|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.|
+Grim Lavamancer|Torment|100|R|{R}|Creature - Human Wizard|1|1|{R}, {tap}, Exile two cards from your graveyard: Grim Lavamancer deals 2 damage to any target.|
Hell-Bent Raider|Torment|101|R|{1}{R}{R}|Creature - Human Barbarian|2|2|First strike, haste$Discard a card at random: Hell-Bent Raider gains protection from white until end of turn.|
Kamahl's Sledge|Torment|102|C|{5}{R}{R}|Sorcery|||Kamahl's Sledge deals 4 damage to target creature.$Threshold - If seven or more cards are in your graveyard, instead Kamahl's Sledge deals 4 damage to that creature and 4 damage to that creature's controller.|
Longhorn Firebeast|Torment|103|C|{2}{R}|Creature - Elemental Ox Beast|3|2|When Longhorn Firebeast enters the battlefield, any opponent may have it deal 5 damage to him or her. If a player does, sacrifice Longhorn Firebeast.|
Overmaster|Torment|104|R|{R}|Sorcery|||The next instant or sorcery spell you cast this turn can't be countered by spells or abilities.$Draw a card.|
-Pardic Arsonist|Torment|105|U|{2}{R}{R}|Creature - Human Barbarian|3|3|Threshold - As long as seven or more cards are in your graveyard, Pardic Arsonist has "When Pardic Arsonist enters the battlefield, it deals 3 damage to target creature or player."|
+Pardic Arsonist|Torment|105|U|{2}{R}{R}|Creature - Human Barbarian|3|3|Threshold - As long as seven or more cards are in your graveyard, Pardic Arsonist has "When Pardic Arsonist enters the battlefield, it deals 3 damage to any target."|
Pardic Collaborator|Torment|106|U|{3}{R}|Creature - Human Barbarian|2|2|First strike${B}: Pardic Collaborator gets +1/+1 until end of turn.|
Pardic Lancer|Torment|107|C|{4}{R}|Creature - Human Barbarian|3|2|Discard a card at random: Pardic Lancer gets +1/+0 and gains first strike until end of turn.|
Petradon|Torment|108|R|{6}{R}{R}|Creature - Nightmare Beast|5|6|When Petradon enters the battlefield, exile two target lands.$When Petradon leaves the battlefield, return the exiled cards to the battlefield under their owners' control.${R}: Petradon gets +1/+0 until end of turn.|
@@ -25130,10 +25130,10 @@ Petravark|Torment|109|C|{3}{R}|Creature - Nightmare Beast|2|2|When Petravark ent
Mystic Familiar|Torment|11|C|{1}{W}|Creature - Bird|1|2|Flying$Threshold - As long as seven or more cards are in your graveyard, Mystic Familiar gets +1/+1 and has protection from black.|
Pitchstone Wall|Torment|110|U|{2}{R}|Creature - Wall|2|5|Defender (This creature can't attack.)$Whenever you discard a card, you may sacrifice Pitchstone Wall. If you do, return the discarded card from your graveyard to your hand.|
Possessed Barbarian|Torment|111|R|{2}{R}{R}|Creature - Human Barbarian Horror|3|3|First strike$Threshold - As long as seven or more cards are in your graveyard, Possessed Barbarian gets +1/+1, is black, and has "{2}{B}, {tap}: Destroy target red creature."|
-Pyromania|Torment|112|U|{2}{R}|Enchantment|||{1}{R}, Discard a card at random: Pyromania deals 1 damage to target creature or player.${1}{R}, Sacrifice Pyromania: Pyromania deals 1 damage to target creature or player.|
+Pyromania|Torment|112|U|{2}{R}|Enchantment|||{1}{R}, Discard a card at random: Pyromania deals 1 damage to any target.${1}{R}, Sacrifice Pyromania: Pyromania deals 1 damage to any target.|
Radiate|Torment|113|R|{3}{R}{R}|Instant|||Choose target instant or sorcery spell that targets only a single permanent or player. Copy that spell for each other permanent or player the spell could target. Each copy targets a different one of those permanents and players.|
Skullscorch|Torment|114|R|{R}{R}|Sorcery|||Target player discards two cards at random unless that player has Skullscorch deal 4 damage to him or her.|
-Sonic Seizure|Torment|115|C|{R}|Instant|||As an additional cost to cast Sonic Seizure, discard a card at random.$Sonic Seizure deals 3 damage to target creature or player.|
+Sonic Seizure|Torment|115|C|{R}|Instant|||As an additional cost to cast Sonic Seizure, discard a card at random.$Sonic Seizure deals 3 damage to any target.|
Temporary Insanity|Torment|116|U|{3}{R}|Instant|||Untap target creature with power less than the number of cards in your graveyard and gain control of it until end of turn. That creature gains haste until end of turn.|
Violent Eruption|Torment|117|U|{1}{R}{R}{R}|Instant|||Violent Eruption deals 4 damage divided as you choose among any number of target creatures and/or players.$Madness {1}{R}{R} (If you discard this card, you may cast it for its madness cost instead of putting it into your graveyard.)|
Acorn Harvest|Torment|118|C|{3}{G}|Sorcery|||Put two 1/1 green Squirrel creature tokens onto the battlefield.$Flashback-{1}{G}, Pay 3 life. (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
@@ -25225,7 +25225,7 @@ Insidious Dreams|Torment|66|R|{3}{B}|Instant|||As an additional cost to cast Ins
Laquatus's Champion|Torment|67|R|{4}{B}{B}|Creature - Nightmare Horror|6|3|When Laquatus's Champion enters the battlefield, target player loses 6 life.$When Laquatus's Champion leaves the battlefield, that player gains 6 life.${B}: Regenerate Laquatus's Champion.|
Last Laugh|Torment|68|R|{2}{B}{B}|Enchantment|||Whenever a permanent other than Last Laugh is put into a graveyard from the battlefield, Last Laugh deals 1 damage to each creature and each player.$When no creatures are on the battlefield, sacrifice Last Laugh.|
Mesmeric Fiend|Torment|69|C|{1}{B}|Creature - Nightmare Horror|1|1|When Mesmeric Fiend enters the battlefield, target opponent reveals his or her hand and you choose a nonland card from it. Exile that card.$When Mesmeric Fiend leaves the battlefield, return the exiled card to its owner's hand.|
-Hypochondria|Torment|7|U|{1}{W}|Enchantment|||{W}, Discard a card: Prevent the next 3 damage that would be dealt to target creature or player this turn.${W}, Sacrifice Hypochondria: Prevent the next 3 damage that would be dealt to target creature or player this turn.|
+Hypochondria|Torment|7|U|{1}{W}|Enchantment|||{W}, Discard a card: Prevent the next 3 damage that would be dealt to any target this turn.${W}, Sacrifice Hypochondria: Prevent the next 3 damage that would be dealt to any target this turn.|
Mind Sludge|Torment|70|U|{4}{B}|Sorcery|||Target player discards a card for each Swamp you control.|
Mortal Combat|Torment|71|R|{2}{B}{B}|Enchantment|||At the beginning of your upkeep, if twenty or more creature cards are in your graveyard, you win the game.|
Mortiphobia|Torment|72|U|{1}{B}{B}|Enchantment|||{1}{B}, Discard a card: Exile target card from a graveyard.${1}{B}, Sacrifice Mortiphobia: Exile target card from a graveyard.|
@@ -25247,7 +25247,7 @@ Strength of Lunacy|Torment|86|U|{1}{B}|Enchantment - Aura|||Enchant creature$Enc
Unhinge|Torment|87|C|{2}{B}|Sorcery|||Target player discards a card.$Draw a card.|
Waste Away|Torment|88|C|{4}{B}|Instant|||As an additional cost to cast Waste Away, discard a card.$Target creature gets -5/-5 until end of turn.|
Zombie Trailblazer|Torment|89|U|{B}{B}{B}|Creature - Zombie Scout|2|2|Tap an untapped Zombie you control: Target land becomes a Swamp until end of turn.$Tap an untapped Zombie you control: Target creature gains swampwalk until end of turn.|
-Militant Monk|Torment|9|C|{1}{W}{W}|Creature - Human Monk Cleric|2|1|Vigilance${tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Militant Monk|Torment|9|C|{1}{W}{W}|Creature - Human Monk Cleric|2|1|Vigilance${tap}: Prevent the next 1 damage that would be dealt to any target this turn.|
Accelerate|Torment|90|C|{1}{R}|Instant|||Target creature gains haste until end of turn.$Draw a card.|
Balthor the Stout|Torment|91|R|{1}{R}{R}|Legendary Creature - Dwarf Barbarian|2|2|Other Barbarian creatures get +1/+1.${R}: Another target Barbarian creature gets +1/+0 until end of turn.|
Barbarian Outcast|Torment|92|C|{1}{R}|Creature - Human Barbarian Beast|2|2|When you control no Swamps, sacrifice Barbarian Outcast.|
@@ -25255,7 +25255,7 @@ Crackling Club|Torment|93|C|{R}|Enchantment - Aura|||Enchant creature$Enchanted
Crazed Firecat|Torment|94|U|{5}{R}{R}|Creature - Elemental Cat|4|4|When Crazed Firecat enters the battlefield, flip a coin until you lose a flip. Put a +1/+1 counter on Crazed Firecat for each flip you win.|
Devastating Dreams|Torment|95|R|{R}{R}|Sorcery|||As an additional cost to cast Devastating Dreams, discard X cards at random.$Each player sacrifices X lands. Devastating Dreams deals X damage to each creature.|
Enslaved Dwarf|Torment|96|C|{R}|Creature - Dwarf|1|1|{R}, Sacrifice Enslaved Dwarf: Target black creature gets +1/+0 and gains first strike until end of turn.|
-Fiery Temper|Torment|97|C|{1}{R}{R}|Instant|||Fiery Temper deals 3 damage to target creature or player.$Madness {R} (If you discard this card, you may cast it for its madness cost instead of putting it into your graveyard.)|
+Fiery Temper|Torment|97|C|{1}{R}{R}|Instant|||Fiery Temper deals 3 damage to any target.$Madness {R} (If you discard this card, you may cast it for its madness cost instead of putting it into your graveyard.)|
Flaming Gambit|Torment|98|U|{X}{R}|Instant|||Flaming Gambit deals X damage to target player. That player may choose a creature he or she controls and have Flaming Gambit deal that damage to it instead.$Flashback {X}{R}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Flash of Defiance|Torment|99|C|{1}{R}|Sorcery|||Green creatures and white creatures can't block this turn.$Flashback-{1}{R}, Pay 3 life. (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Plains|Unglued|84|C||Basic Land - Plains|||W|
@@ -25312,9 +25312,9 @@ War Mammoth|Unlimited Edition|136|C|{3}{G}|Creature - Elephant|3|3|Trample|
Web|Unlimited Edition|137|R|{G}|Enchantment - Aura|||Enchant creature (Target a creature as you cast this. This card enters the battlefield attached to that creature.)$Enchanted creature gets +0/+2 and has reach. (It can block creatures with flying.)|
Wild Growth|Unlimited Edition|138|C|{G}|Enchantment - Aura|||Enchant land$Whenever enchanted land is tapped for mana, its controller adds {G} to his or her mana pool (in addition to the mana the land produces).|
Burrowing|Unlimited Edition|139|U|{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has mountainwalk.|
-Drain Life|Unlimited Edition|14|C|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Drain Life deals X damage to target creature or player. You gain life equal to the damage dealt, but not more life than the player's life total before Drain Life dealt damage or the creature's toughness.|
+Drain Life|Unlimited Edition|14|C|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Drain Life deals X damage to any target. You gain life equal to the damage dealt, but not more life than the player's life total before Drain Life dealt damage or the creature's toughness.|
Chaoslace|Unlimited Edition|140|R|{R}|Instant|||Target spell or permanent becomes red. (Its mana symbols remain unchanged.)|
-Disintegrate|Unlimited Edition|141|C|{X}{R}|Sorcery|||Disintegrate deals X damage to target creature or player. That creature can't be regenerated this turn. If the creature would die this turn, exile it instead.|
+Disintegrate|Unlimited Edition|141|C|{X}{R}|Sorcery|||Disintegrate deals X damage to any target. That creature can't be regenerated this turn. If the creature would die this turn, exile it instead.|
Dragon Whelp|Unlimited Edition|142|U|{2}{R}{R}|Creature - Dragon|2|3|Flying${R}: Dragon Whelp gets +1/+0 until end of turn. If this ability has been activated four or more times this turn, sacrifice Dragon Whelp at the beginning of the next end step.|
Dwarven Demolition Team|Unlimited Edition|143|U|{2}{R}|Creature - Dwarf|1|1|{tap}: Destroy target Wall.|
Dwarven Warriors|Unlimited Edition|144|C|{2}{R}|Creature - Dwarf Warrior|1|1|{tap}: Target creature with power 2 or less is unblockable this turn.|
@@ -25337,11 +25337,11 @@ Hurloon Minotaur|Unlimited Edition|159|C|{1}{R}{R}|Creature - Minotaur|2|3||
Evil Presence|Unlimited Edition|16|U|{B}|Enchantment - Aura|||Enchant land$Enchanted land is a Swamp.|
Ironclaw Orcs|Unlimited Edition|160|C|{1}{R}|Creature - Orc|2|2|Ironclaw Orcs can't block creatures with power 2 or greater.|
Keldon Warlord|Unlimited Edition|161|U|{2}{R}{R}|Creature - Human Barbarian|*|*|Keldon Warlord's power and toughness are each equal to the number of non-Wall creatures you control.|
-Lightning Bolt|Unlimited Edition|162|C|{R}|Instant|||Lightning Bolt deals 3 damage to target creature or player.|
+Lightning Bolt|Unlimited Edition|162|C|{R}|Instant|||Lightning Bolt deals 3 damage to any target.|
Mana Flare|Unlimited Edition|163|R|{2}{R}|Enchantment|||Whenever a player taps a land for mana, that player adds one mana to his or her mana pool of any type that land produced.|
Manabarbs|Unlimited Edition|164|R|{3}{R}|Enchantment|||Whenever a player taps a land for mana, Manabarbs deals 1 damage to that player.|
Mons's Goblin Raiders|Unlimited Edition|165|C|{R}|Creature - Goblin|1|1||
-Orcish Artillery|Unlimited Edition|166|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Artillery deals 2 damage to target creature or player and 3 damage to you.|
+Orcish Artillery|Unlimited Edition|166|U|{1}{R}{R}|Creature - Orc Warrior|1|3|{tap}: Orcish Artillery deals 2 damage to any target and 3 damage to you.|
Orcish Oriflamme|Unlimited Edition|167|U|{3}{R}|Enchantment|||Attacking creatures you control get +1/+0.|
Power Surge|Unlimited Edition|168|R|{R}{R}|Enchantment|||At the beginning of each player's upkeep, Power Surge deals X damage to that player, where X is the number of untapped lands he or she controlled at the beginning of this turn.|
Raging River|Unlimited Edition|169|R|{R}{R}|Enchantment|||Whenever one or more creatures you control attack, each defending player divides all creatures without flying he or she controls into a "left" pile and a "right" pile. Then, for each attacking creature you control, choose "left" or "right." That creature can't be blocked this combat except by creatures with flying and creatures in a pile with the chosen label.|
@@ -25387,8 +25387,8 @@ Death Ward|Unlimited Edition|202|C|{W}|Instant|||Regenerate target creature.|
Disenchant|Unlimited Edition|203|C|{1}{W}|Instant|||Destroy target artifact or enchantment.|
Farmstead|Unlimited Edition|204|R|{W}{W}{W}|Enchantment - Aura|||Enchant land$Enchanted land has "At the beginning of your upkeep, you may pay {W}{W}. If you do, you gain 1 life."|
Green Ward|Unlimited Edition|205|U|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature has protection from green. This effect doesn't remove Green Ward.|
-Guardian Angel|Unlimited Edition|206|C|{X}{W}|Instant|||Prevent the next X damage that would be dealt to target creature or player this turn. Until end of turn, you may pay {1} any time you could cast an instant. If you do, prevent the next 1 damage that would be dealt to that creature or player this turn.|
-Healing Salve|Unlimited Edition|207|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to target creature or player this turn.|
+Guardian Angel|Unlimited Edition|206|C|{X}{W}|Instant|||Prevent the next X damage that would be dealt to any target this turn. Until end of turn, you may pay {1} any time you could cast an instant. If you do, prevent the next 1 damage that would be dealt to that creature or player this turn.|
+Healing Salve|Unlimited Edition|207|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to any target this turn.|
Holy Armor|Unlimited Edition|208|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +0/+2.${W}: Enchanted creature gets +0/+1 until end of turn.|
Holy Strength|Unlimited Edition|209|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+2.|
Hypnotic Specter|Unlimited Edition|21|U|{1}{B}{B}|Creature - Specter|2|2|Flying$Whenever Hypnotic Specter deals damage to an opponent, that player discards a card at random.|
@@ -25403,7 +25403,7 @@ Red Ward|Unlimited Edition|218|U|{W}|Enchantment - Aura|||Enchant creature$Encha
Resurrection|Unlimited Edition|219|U|{2}{W}{W}|Sorcery|||Return target creature card from your graveyard to the battlefield.|
Reverse Damage|Unlimited Edition|220|R|{1}{W}{W}|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.|
Righteousness|Unlimited Edition|221|R|{W}|Instant|||Target blocking creature gets +7/+7 until end of turn.|
-Samite Healer|Unlimited Edition|222|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to target creature or player this turn.|
+Samite Healer|Unlimited Edition|222|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next 1 damage that would be dealt to any target this turn.|
Savannah Lions|Unlimited Edition|223|R|{W}|Creature - Cat|2|1||
Serra Angel|Unlimited Edition|224|U|{3}{W}{W}|Creature - Angel|4|4|Flying$Vigilance (Attacking doesn't cause this creature to tap.)|
Swords to Plowshares|Unlimited Edition|225|U|{W}|Instant|||Exile target creature. Its controller gains life equal to its power.|
@@ -25416,7 +25416,7 @@ Wrath of God|Unlimited Edition|230|R|{2}{W}{W}|Sorcery|||Destroy all creatures.
Ankh of Mishra|Unlimited Edition|231|R|{2}|Artifact|||Whenever a land enters the battlefield, Ankh of Mishra deals 2 damage to that land's controller.|
Basalt Monolith|Unlimited Edition|232|U|{3}|Artifact|||Basalt Monolith doesn't untap during your untap step.${tap}: Add {C}{C}{C}.${3}: Untap Basalt Monolith.|
Black Vise|Unlimited Edition|234|U|{1}|Artifact|||As Black Vise enters the battlefield, choose an opponent.$At the beginning of the chosen player's upkeep, Black Vise deals X damage to that player, where X is the number of cards in his or her hand minus 4.|
-Celestial Prism|Unlimited Edition|235|U|{3}|Artifact|||{2}, {tap}: Add one mana of any color to your mana pool.|
+Celestial Prism|Unlimited Edition|235|U|{3}|Artifact|||{2}, {tap}: Add one mana of any color.|
Chaos Orb|Unlimited Edition|236|R|{2}|Artifact|||{1}, {tap}: If Chaos Orb is on the battlefield, flip Chaos Orb onto the battlefield from a height of at least one foot. If Chaos Orb turns over completely at least once during the flip, destroy all permanents it touches. Then destroy Chaos Orb.|
Clockwork Beast|Unlimited Edition|237|R|{6}|Artifact Creature - Beast|0|4|Clockwork Beast enters the battlefield with seven +1/+0 counters on it.$At end of combat, if Clockwork Beast attacked or blocked this combat, remove a +1/+0 counter from it.${X}, {tap}: Put up to X +1/+0 counters on Clockwork Beast. This ability can't cause the total number of +1/+0 counters on Clockwork Beast to be greater than seven. Activate this ability only during your upkeep.|
Lich|Unlimited Edition|22|R|{B}{B}{B}{B}|Enchantment|||As Lich enters the battlefield, you lose life equal to your life total.$You don't lose the game for having 0 or less life.$If you would gain life, draw that many cards instead.$Whenever you're dealt damage, sacrifice that many nontoken permanents. If you can't, you lose the game.$When Lich is put into a graveyard from the battlefield, you lose the game.|
@@ -25454,7 +25454,7 @@ Mox Ruby|Unlimited Edition|265|R|{0}|Artifact|||{tap}: Add {R}.|
Mox Sapphire|Unlimited Edition|266|R|{0}|Artifact|||{tap}: Add {U}.|
Nevinyrral's Disk|Unlimited Edition|267|R|{4}|Artifact|||Nevinyrral's Disk enters the battlefield tapped.${1}, {tap}: Destroy all artifacts, creatures, and enchantments.|
Obsianus Golem|Unlimited Edition|268|U|{6}|Artifact Creature - Golem|4|6||
-Rod of Ruin|Unlimited Edition|269|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to target creature or player.|
+Rod of Ruin|Unlimited Edition|269|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to any target.|
Nightmare|Unlimited Edition|27|R|{5}{B}|Creature - Nightmare Horse|*|*|Flying$Nightmare's power and toughness are each equal to the number of Swamps you control.|
Sol Ring|Unlimited Edition|270|U|{1}|Artifact|||{tap}: Add {C}{C}.|
Soul Net|Unlimited Edition|271|U|{1}|Artifact|||Whenever a creature dies, you may pay {1}. If you do, you gain 1 life.|
@@ -25485,7 +25485,7 @@ Underground Sea|Unlimited Edition|301|R||Land - Island Swamp||||
Volcanic Island|Unlimited Edition|302|R||Land - Island Mountain||||
Raise Dead|Unlimited Edition|31|C|{B}|Sorcery|||Return target creature card from your graveyard to your hand.|
Royal Assassin|Unlimited Edition|32|R|{1}{B}{B}|Creature - Human Assassin|1|1|{tap}: Destroy target tapped creature.|
-Sacrifice|Unlimited Edition|33|U|{B}|Instant|||As an additional cost to cast Sacrifice, sacrifice a creature.$Add to your mana pool an amount of {B} equal to the sacrificed creature's converted mana cost.|
+Sacrifice|Unlimited Edition|33|U|{B}|Instant|||As an additional cost to cast Sacrifice, sacrifice a creature.$Add an amount of {B} equal to the sacrificed creature's converted mana cost.|
Scathe Zombies|Unlimited Edition|34|C|{2}{B}|Creature - Zombie|2|2||
Scavenging Ghoul|Unlimited Edition|35|U|{3}{B}|Creature - Zombie|2|2|At the beginning of each end step, put a corpse counter on Scavenging Ghoul for each creature that died this turn.$Remove a corpse counter from Scavenging Ghoul: Regenerate Scavenging Ghoul.|
Sengir Vampire|Unlimited Edition|36|U|{3}{B}{B}|Creature - Vampire|4|4|Flying$Whenever a creature dealt damage by Sengir Vampire this turn dies, put a +1/+1 counter on Sengir Vampire.|
@@ -25526,13 +25526,13 @@ Merfolk of the Pearl Trident|Unlimited Edition|67|C|{U}|Creature - Merfolk|1|1||
Phantasmal Forces|Unlimited Edition|68|U|{3}{U}|Creature - Illusion|4|1|Flying$At the beginning of your upkeep, sacrifice Phantasmal Forces unless you pay {U}.|
Phantasmal Terrain|Unlimited Edition|69|C|{U}{U}|Enchantment - Aura|||Enchant land$As Phantasmal Terrain enters the battlefield, choose a basic land type.$Enchanted land is the chosen type.|
Dark Ritual|Unlimited Edition|7|C|{B}|Instant|||Add {B}{B}{B}.|
-Black Lotus|Unlimited Edition|233|R|{0}|Artifact|||{tap}, Sacrifice Black Lotus: Add three mana of any one color to your mana pool.|
+Black Lotus|Unlimited Edition|233|R|{0}|Artifact|||{tap}, Sacrifice Black Lotus: Add three mana of any one color.|
Phantom Monster|Unlimited Edition|70|U|{3}{U}|Creature - Illusion|3|3|Flying|
-Pirate Ship|Unlimited Edition|71|R|{4}{U}|Creature - Human Pirate|4|3|Pirate Ship can't attack unless defending player controls an Island.${tap}: Pirate Ship deals 1 damage to target creature or player.$When you control no Islands, sacrifice Pirate Ship.|
+Pirate Ship|Unlimited Edition|71|R|{4}{U}|Creature - Human Pirate|4|3|Pirate Ship can't attack unless defending player controls an Island.${tap}: Pirate Ship deals 1 damage to any target.$When you control no Islands, sacrifice Pirate Ship.|
Power Leak|Unlimited Edition|72|C|{1}{U}|Enchantment - Aura|||Enchant enchantment$At the beginning of the upkeep of enchanted enchantment's controller, that player may pay any amount of mana. Power Leak deals 2 damage to that player. Prevent X of that damage, where X is the amount of mana that player paid this way.|
Power Sink|Unlimited Edition|73|C|{X}{U}|Instant|||Counter target spell unless its controller pays {X}. If he or she doesn't, that player taps all lands with mana abilities he or she controls and empties his or her mana pool.|
-Prodigal Sorcerer|Unlimited Edition|74|C|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to target creature or player.|
-Psionic Blast|Unlimited Edition|75|U|{2}{U}|Instant|||Psionic Blast deals 4 damage to target creature or player and 2 damage to you.|
+Prodigal Sorcerer|Unlimited Edition|74|C|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to any target.|
+Psionic Blast|Unlimited Edition|75|U|{2}{U}|Instant|||Psionic Blast deals 4 damage to any target and 2 damage to you.|
Ice Storm|Unlimited Edition|110|U|{2}{G}|Sorcery|||Destroy target land.|
Psychic Venom|Unlimited Edition|76|C|{1}{U}|Enchantment - Aura|||Enchant land$Whenever enchanted land becomes tapped, Psychic Venom deals 2 damage to that land's controller.|
Sea Serpent|Unlimited Edition|77|C|{5}{U}|Creature - Serpent|5|5|Sea Serpent can't attack unless defending player controls an Island.$$When you control no Islands, sacrifice Sea Serpent.|
@@ -25555,7 +25555,7 @@ Wall of Water|Unlimited Edition|91|U|{1}{U}{U}|Creature - Wall|0|5|Defender (
Water Elemental|Unlimited Edition|92|U|{3}{U}{U}|Creature - Elemental|5|4||
Aspect of Wolf|Unlimited Edition|93|R|{1}{G}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +X/+Y, where X is half the number of Forests you control, rounded down, and Y is half the number of Forests you control, rounded up.|
Berserk|Unlimited Edition|94|U|{G}|Instant|||Cast Berserk only before the combat damage step.$Target creature gains trample and gets +X/+0 until end of turn, where X is its power. At the beginning of the next end step, destroy that creature if it attacked this turn.|
-Birds of Paradise|Unlimited Edition|95|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color to your mana pool.|
+Birds of Paradise|Unlimited Edition|95|R|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color.|
Camouflage|Unlimited Edition|96|U|{G}|Instant|||Cast Camouflage only during your declare attackers step.$This turn, instead of declaring blockers, each defending player chooses any number of creatures he or she controls and divides them into a number of piles equal to the number of attacking creatures for whom that player is the defending player. Creatures he or she controls that can block additional creatures may likewise be put into additional piles. Assign each pile to a different one of those attacking creatures at random. Each creature in a pile that can block the creature that pile is assigned to does so. (Piles can be empty.)|
Channel|Unlimited Edition|97|U|{G}{G}|Sorcery|||Until end of turn, any time you could activate a mana ability, you may pay 1 life. If you do, add {C}.|
Cockatrice|Unlimited Edition|98|R|{3}{G}{G}|Creature - Cockatrice|2|4|Flying$Whenever Cockatrice blocks or becomes blocked by a non-Wall creature, destroy that creature at end of combat.|
@@ -25583,7 +25583,7 @@ Plated Spider|Urza's Destiny|116|C|{4}{G}|Creature - Spider|4|4|Reach (This c
Plow Under|Urza's Destiny|117|R|{3}{G}{G}|Sorcery|||Put two target lands on top of their owners' libraries.|
Rofellos, Llanowar Emissary|Urza's Destiny|118|R|{G}{G}|Legendary Creature - Elf Druid|2|1|{tap}: Add {G} for each Forest you control.|
Rofellos's Gift|Urza's Destiny|119|C|{G}|Sorcery|||Reveal any number of green cards in your hand. Return an enchantment card from your graveyard to your hand for each card revealed this way.|
-Master Healer|Urza's Destiny|12|R|{4}{W}|Creature - Human Cleric|1|4|{tap}: Prevent the next 4 damage that would be dealt to target creature or player this turn.|
+Master Healer|Urza's Destiny|12|R|{4}{W}|Creature - Human Cleric|1|4|{tap}: Prevent the next 4 damage that would be dealt to any target this turn.|
Scent of Ivy|Urza's Destiny|120|C|{G}|Instant|||Reveal any number of green cards in your hand. Target creature gets +X/+X until end of turn, where X is the number of cards revealed this way.|
Splinter|Urza's Destiny|121|U|{2}{G}{G}|Sorcery|||Exile target artifact. Search its controller's graveyard, hand, and library for all cards with the same name as that artifact and exile them. Then that player shuffles his or her library.|
Taunting Elf|Urza's Destiny|122|C|{G}|Creature - Elf|0|1|All creatures able to block Taunting Elf do so.|
@@ -25678,28 +25678,28 @@ Squirming Mass|Urza's Destiny|73|C|{1}{B}|Creature - Horror|1|1|Fear (This cr
Twisted Experiment|Urza's Destiny|74|C|{1}{B}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +3/-1.|
Yawgmoth's Bargain|Urza's Destiny|75|R|{4}{B}{B}|Enchantment|||Skip your draw step.$$Pay 1 life: Draw a card.|
AEther Sting|Urza's Destiny|76|U|{3}{R}|Enchantment|||Whenever an opponent casts a creature spell, Æther Sting deals 1 damage to that player.|
-Bloodshot Cyclops|Urza's Destiny|77|R|{5}{R}|Creature - Cyclops Giant|4|4|{tap}, Sacrifice a creature: Bloodshot Cyclops deals damage equal to the sacrificed creature's power to target creature or player.|
-Cinder Seer|Urza's Destiny|78|U|{3}{R}|Creature - Human Wizard|1|1|{2}{R}, {tap}: Reveal any number of red cards in your hand. Cinder Seer deals X damage to target creature or player, where X is the number of cards revealed this way.|
+Bloodshot Cyclops|Urza's Destiny|77|R|{5}{R}|Creature - Cyclops Giant|4|4|{tap}, Sacrifice a creature: Bloodshot Cyclops deals damage equal to the sacrificed creature's power to any target.|
+Cinder Seer|Urza's Destiny|78|U|{3}{R}|Creature - Human Wizard|1|1|{2}{R}, {tap}: Reveal any number of red cards in your hand. Cinder Seer deals X damage to any target, where X is the number of cards revealed this way.|
Colos Yearling|Urza's Destiny|79|C|{2}{R}|Creature - Goat Beast|1|1|Mountainwalk${R}: Colos Yearling gets +1/+0 until end of turn.|
Field Surgeon|Urza's Destiny|8|C|{1}{W}|Creature - Human Cleric|1|1|Tap an untapped creature you control: Prevent the next 1 damage that would be dealt to target creature this turn.|
Covetous Dragon|Urza's Destiny|80|R|{4}{R}|Creature - Dragon|6|5|Flying$When you control no artifacts, sacrifice Covetous Dragon.|
Flame Jet|Urza's Destiny|81|C|{1}{R}|Sorcery|||Flame Jet deals 3 damage to target player.$Cycling {2} ({2}, Discard this card: Draw a card.)|
Goblin Berserker|Urza's Destiny|82|U|{3}{R}|Creature - Goblin Berserker|2|2|First strike, haste|
-Goblin Festival|Urza's Destiny|83|R|{1}{R}|Enchantment|||{2}: Goblin Festival deals 1 damage to target creature or player. Flip a coin. If you lose the flip, choose one of your opponents. That player gains control of Goblin Festival.|
+Goblin Festival|Urza's Destiny|83|R|{1}{R}|Enchantment|||{2}: Goblin Festival deals 1 damage to any target. Flip a coin. If you lose the flip, choose one of your opponents. That player gains control of Goblin Festival.|
Goblin Gardener|Urza's Destiny|84|C|{3}{R}|Creature - Goblin|2|1|When Goblin Gardener dies, destroy target land.|
Goblin Marshal|Urza's Destiny|85|R|{4}{R}{R}|Creature - Goblin Warrior|3|3|Echo {4}{R}{R} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)$When Goblin Marshal enters the battlefield or dies, put two 1/1 red Goblin creature tokens onto the battlefield.|
Goblin Masons|Urza's Destiny|86|C|{1}{R}|Creature - Goblin|2|1|When Goblin Masons dies, destroy target Wall.|
Hulking Ogre|Urza's Destiny|87|C|{2}{R}|Creature - Ogre|3|3|Hulking Ogre can't block.|
Impatience|Urza's Destiny|88|R|{2}{R}|Enchantment|||At the beginning of each player's end step, if that player didn't cast a spell this turn, Impatience deals 2 damage to him or her.|
-Incendiary|Urza's Destiny|89|U|{R}|Enchantment - Aura|||Enchant creature$At the beginning of your upkeep, you may put a fuse counter on Incendiary.$When enchanted creature dies, Incendiary deals X damage to target creature or player, where X is the number of fuse counters on Incendiary.|
+Incendiary|Urza's Destiny|89|U|{R}|Enchantment - Aura|||Enchant creature$At the beginning of your upkeep, you may put a fuse counter on Incendiary.$When enchanted creature dies, Incendiary deals X damage to any target, where X is the number of fuse counters on Incendiary.|
Flicker|Urza's Destiny|9|R|{1}{W}|Sorcery|||Exile target nontoken permanent, then return it to the battlefield under its owner's control.|
Keldon Champion|Urza's Destiny|90|U|{2}{R}{R}|Creature - Human Barbarian|3|2|Haste$Echo {2}{R}{R} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)$When Keldon Champion enters the battlefield, it deals 3 damage to target player.|
Keldon Vandals|Urza's Destiny|91|C|{2}{R}|Creature - Human Rogue|4|1|Echo {2}{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 Keldon Vandals enters the battlefield, destroy target artifact.|
Landslide|Urza's Destiny|92|U|{R}|Sorcery|||Sacrifice any number of Mountains. Landslide deals that much damage to target player.|
Mark of Fury|Urza's Destiny|93|C|{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has haste.$At the beginning of the end step, return Mark of Fury to its owner's hand.|
-Reckless Abandon|Urza's Destiny|94|C|{R}|Sorcery|||As an additional cost to cast Reckless Abandon, sacrifice a creature.$Reckless Abandon deals 4 damage to target creature or player.|
+Reckless Abandon|Urza's Destiny|94|C|{R}|Sorcery|||As an additional cost to cast Reckless Abandon, sacrifice a creature.$Reckless Abandon deals 4 damage to any target.|
Repercussion|Urza's Destiny|95|R|{1}{R}{R}|Enchantment|||Whenever a creature is dealt damage, Repercussion deals that much damage to that creature's controller.|
-Scent of Cinder|Urza's Destiny|96|C|{1}{R}|Sorcery|||Reveal any number of red cards in your hand. Scent of Cinder deals X damage to target creature or player, where X is the number of cards revealed this way.|
+Scent of Cinder|Urza's Destiny|96|C|{1}{R}|Sorcery|||Reveal any number of red cards in your hand. Scent of Cinder deals X damage to any target, where X is the number of cards revealed this way.|
Sowing Salt|Urza's Destiny|97|U|{2}{R}{R}|Sorcery|||Exile target nonbasic land. Search its controller's graveyard, hand, and library for all cards with the same name as that land and exile them. Then that player shuffles his or her library.|
Trumpet Blast|Urza's Destiny|98|C|{2}{R}|Instant|||Attacking creatures get +2/+0 until end of turn.|
Wake of Destruction|Urza's Destiny|99|R|{3}{R}{R}{R}|Sorcery|||Destroy target land and all other lands with the same name as that land.|
@@ -25737,14 +25737,14 @@ Grim Monolith|Urza's Legacy|126|R|{2}|Artifact|||Grim Monolith doesn't untap dur
Iron Maiden|Urza's Legacy|127|R|{3}|Artifact|||At the beginning of each opponent's upkeep, Iron Maiden deals X damage to that player, where X is the number of cards in his or her hand minus 4.|
Jhoira's Toolbox|Urza's Legacy|128|U|{2}|Artifact Creature - Insect|1|1|{2}: Regenerate target artifact creature.|
Memory Jar|Urza's Legacy|129|R|{5}|Artifact|||{tap}, Sacrifice Memory Jar: Each player exiles all cards from his or her hand face down and draws seven cards. At the beginning of the next end step, each player discards his or her hand and returns to his or her hand each card he or she exiled this way.|
-Martyr's Cause|Urza's Legacy|13|U|{2}{W}|Enchantment|||Sacrifice a creature: The next time a source of your choice would deal damage to target creature or player this turn, prevent that damage.|
+Martyr's Cause|Urza's Legacy|13|U|{2}{W}|Enchantment|||Sacrifice a creature: The next time a source of your choice would deal damage to any target this turn, prevent that damage.|
Quicksilver Amulet|Urza's Legacy|130|R|{4}|Artifact|||{4}, {tap}: You may put a creature card from your hand onto the battlefield.|
Ring of Gix|Urza's Legacy|131|R|{3}|Artifact|||Echo {3} (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.)${1}, {tap}: Tap target artifact, creature, or land.|
Scrapheap|Urza's Legacy|132|R|{3}|Artifact|||Whenever an artifact or enchantment is put into your graveyard from the battlefield, you gain 1 life.|
Thran Lens|Urza's Legacy|133|R|{2}|Artifact|||All permanents are colorless.|
Thran War Machine|Urza's Legacy|134|U|{4}|Artifact Creature - Construct|4|5|Echo {4} (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.)$Thran War Machine attacks each turn if able.|
Thran Weaponry|Urza's Legacy|135|R|{4}|Artifact|||Echo {4} (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.)$You may choose not to untap Thran Weaponry during your untap step.${2}, {tap}: All creatures get +2/+2 for as long as Thran Weaponry remains tapped.|
-Ticking Gnomes|Urza's Legacy|136|U|{3}|Artifact Creature - Gnome|3|3|Echo {3} (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.)$Sacrifice Ticking Gnomes: Ticking Gnomes deals 1 damage to target creature or player.|
+Ticking Gnomes|Urza's Legacy|136|U|{3}|Artifact Creature - Gnome|3|3|Echo {3} (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.)$Sacrifice Ticking Gnomes: Ticking Gnomes deals 1 damage to any target.|
Urza's Blueprints|Urza's Legacy|137|R|{6}|Artifact|||Echo {6} (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.)${tap}: Draw a card.|
Wheel of Torture|Urza's Legacy|138|R|{3}|Artifact|||At the beginning of each opponent's upkeep, Wheel of Torture deals X damage to that player, where X is 3 minus the number of cards in his or her hand.|
Faerie Conclave|Urza's Legacy|139|U||Land|||Faerie Conclave enters the battlefield tapped.${tap}: Add {U}.${1}{U}: Faerie Conclave becomes a 2/1 blue Faerie creature with flying until end of turn. It's still a land. (It can't be blocked except by creatures with flying or reach.)|
@@ -25785,7 +25785,7 @@ Rebuild|Urza's Legacy|40|U|{2}{U}|Instant|||Return all artifacts to their owners
Second Chance|Urza's Legacy|41|R|{2}{U}|Enchantment|||At the beginning of your upkeep, if you have 5 or less life, sacrifice Second Chance and take an extra turn after this one.|
Slow Motion|Urza's Legacy|42|C|{2}{U}|Enchantment - Aura|||Enchant creature$At the beginning of the upkeep of enchanted creature's controller, that player sacrifices that creature unless he or she pays {2}.$When Slow Motion is put into a graveyard from the battlefield, return Slow Motion to its owner's hand.|
Snap|Urza's Legacy|43|C|{1}{U}|Instant|||Return target creature to its owner's hand. Untap up to two lands.|
-Thornwind Faeries|Urza's Legacy|44|C|{1}{U}{U}|Creature - Faerie|1|1|Flying${tap}: Thornwind Faeries deals 1 damage to target creature or player.|
+Thornwind Faeries|Urza's Legacy|44|C|{1}{U}{U}|Creature - Faerie|1|1|Flying${tap}: Thornwind Faeries deals 1 damage to any target.|
Tinker|Urza's Legacy|45|U|{2}{U}|Sorcery|||As an additional cost to cast Tinker, sacrifice an artifact.$Search your library for an artifact card and put that card onto the battlefield. Then shuffle your library.|
Vigilant Drake|Urza's Legacy|46|C|{4}{U}|Creature - Drake|3|3|Flying$${2}{U}: Untap Vigilant Drake.|
Walking Sponge|Urza's Legacy|47|U|{1}{U}|Creature - Sponge|1|1|{tap}: Target creature loses your choice of flying, first strike, or trample until end of turn.|
@@ -25820,20 +25820,20 @@ Unearth|Urza's Legacy|72|C|{B}|Sorcery|||Return target creature card with conver
About Face|Urza's Legacy|73|C|{R}|Instant|||Switch target creature's power and toughness until end of turn.|
Avalanche Riders|Urza's Legacy|74|U|{3}{R}|Creature - Human Nomad|2|2|Haste$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 Avalanche Riders enters the battlefield, destroy target land.|
Defender of Chaos|Urza's Legacy|75|C|{2}{R}|Creature - Human Knight|2|1|Flash$Protection from white|
-Ghitu Fire-Eater|Urza's Legacy|76|U|{2}{R}|Creature - Human Nomad|2|2|{tap}, Sacrifice Ghitu Fire-Eater: Ghitu Fire-Eater deals damage equal to its power to target creature or player.|
-Ghitu Slinger|Urza's Legacy|77|C|{2}{R}|Creature - Human Nomad|2|2|Echo {2}{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 Ghitu Slinger enters the battlefield, it deals 2 damage to target creature or player.|
+Ghitu Fire-Eater|Urza's Legacy|76|U|{2}{R}|Creature - Human Nomad|2|2|{tap}, Sacrifice Ghitu Fire-Eater: Ghitu Fire-Eater deals damage equal to its power to any target.|
+Ghitu Slinger|Urza's Legacy|77|C|{2}{R}|Creature - Human Nomad|2|2|Echo {2}{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 Ghitu Slinger enters the battlefield, it deals 2 damage to any target.|
Ghitu War Cry|Urza's Legacy|78|U|{2}{R}|Enchantment|||{R}: Target creature gets +1/+0 until end of turn.|
-Goblin Medics|Urza's Legacy|79|C|{2}{R}|Creature - Goblin Shaman|1|1|Whenever Goblin Medics becomes tapped, it deals 1 damage to target creature or player.|
+Goblin Medics|Urza's Legacy|79|C|{2}{R}|Creature - Goblin Shaman|1|1|Whenever Goblin Medics becomes tapped, it deals 1 damage to any target.|
Expendable Troops|Urza's Legacy|8|C|{1}{W}|Creature - Human Soldier|2|1|{tap}, Sacrifice Expendable Troops: Expendable Troops deals 2 damage to target attacking or blocking creature.|
Goblin Welder|Urza's Legacy|80|R|{R}|Creature - Goblin Artificer|1|1|{tap}: Choose target artifact a player controls and target artifact card in that player's graveyard. If both targets are still legal as this ability resolves, that player simultaneously sacrifices the artifact and returns the artifact card to the battlefield.|
Granite Grip|Urza's Legacy|81|C|{2}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+0 for each Mountain you control.|
Impending Disaster|Urza's Legacy|82|R|{1}{R}|Enchantment|||At the beginning of your upkeep, if there are seven or more lands on the battlefield, sacrifice Impending Disaster and destroy all lands.|
-Last-Ditch Effort|Urza's Legacy|83|U|{R}|Instant|||Sacrifice any number of creatures. Last-Ditch Effort deals that much damage to target creature or player.|
+Last-Ditch Effort|Urza's Legacy|83|U|{R}|Instant|||Sacrifice any number of creatures. Last-Ditch Effort deals that much damage to any target.|
Lava Axe|Urza's Legacy|84|C|{4}{R}|Sorcery|||Lava Axe deals 5 damage to target player.|
-Molten Hydra|Urza's Legacy|85|R|{1}{R}|Creature - Hydra|1|1|{1}{R}{R}: Put a +1/+1 counter on Molten Hydra.${tap}, Remove all +1/+1 counters from Molten Hydra: Molten Hydra deals damage to target creature or player equal to the number of +1/+1 counters removed this way.|
-Parch|Urza's Legacy|86|C|{1}{R}|Instant|||Choose one - Parch deals 2 damage to target creature or player; or Parch deals 4 damage to target blue creature.|
+Molten Hydra|Urza's Legacy|85|R|{1}{R}|Creature - Hydra|1|1|{1}{R}{R}: Put a +1/+1 counter on Molten Hydra.${tap}, Remove all +1/+1 counters from Molten Hydra: Molten Hydra deals damage to any target equal to the number of +1/+1 counters removed this way.|
+Parch|Urza's Legacy|86|C|{1}{R}|Instant|||Choose one - Parch deals 2 damage to any target; or Parch deals 4 damage to target blue creature.|
Pygmy Pyrosaur|Urza's Legacy|87|C|{1}{R}|Creature - Lizard|1|1|Pygmy Pyrosaur can't block.$${R}: Pygmy Pyrosaur gets +1/+0 until end of turn.|
-Pyromancy|Urza's Legacy|88|R|{2}{R}{R}|Enchantment|||{3}, Discard a card at random: Pyromancy deals damage to target creature or player equal to the converted mana cost of the discarded card.|
+Pyromancy|Urza's Legacy|88|R|{2}{R}{R}|Enchantment|||{3}, Discard a card at random: Pyromancy deals damage to any target equal to the converted mana cost of the discarded card.|
Rack and Ruin|Urza's Legacy|89|U|{2}{R}|Instant|||Destroy two target artifacts.|
Hope and Glory|Urza's Legacy|9|U|{1}{W}|Instant|||Untap two target creatures. Each of them gets +1/+1 until end of turn.|
Rivalry|Urza's Legacy|90|R|{2}{R}|Enchantment|||At the beginning of each player's upkeep, if that player controls more lands than each other player, Rivalry deals 2 damage to him or her.|
@@ -25874,7 +25874,7 @@ Breach|Urza's Saga|120|C|{2}{B}|Instant|||Target creature gets +2/+0 and gains f
Cackling Fiend|Urza's Saga|121|C|{2}{B}{B}|Creature - Zombie|2|1|When Cackling Fiend enters the battlefield, each opponent discards a card.|
Carrion Beetles|Urza's Saga|122|C|{B}|Creature - Insect|1|1|{2}{B}, {tap}: Exile up to three target cards from a single graveyard.|
Contamination|Urza's Saga|123|R|{2}{B}|Enchantment|||At the beginning of your upkeep, sacrifice Contamination unless you sacrifice a creature.$If a land is tapped for mana, it produces {B} instead of any other type and amount.|
-Corrupt|Urza's Saga|124|C|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to target creature or player. You gain life equal to the damage dealt this way.|
+Corrupt|Urza's Saga|124|C|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to any target. You gain life equal to the damage dealt this way.|
Crazed Skirge|Urza's Saga|125|U|{3}{B}|Creature - Imp|2|2|Flying, haste|
Dark Hatchling|Urza's Saga|126|R|{4}{B}{B}|Creature - Horror|3|3|Flying$When Dark Hatchling enters the battlefield, destroy target nonblack creature. It can't be regenerated.|
Dark Ritual|Urza's Saga|127|C|{B}|Instant|||Add {B}{B}{B}.|
@@ -25913,7 +25913,7 @@ Sicken|Urza's Saga|156|C|{B}|Enchantment - Aura|||Enchant creature$Enchanted cre
Skirge Familiar|Urza's Saga|157|U|{4}{B}|Creature - Imp|3|2|Flying$Discard a card: Add {B}.|
Skittering Skirge|Urza's Saga|158|C|{B}{B}|Creature - Imp|3|2|Flying$When you cast a creature spell, sacrifice Skittering Skirge.|
Sleeper Agent|Urza's Saga|159|R|{B}|Creature - Minion|3|3|When Sleeper Agent enters the battlefield, target opponent gains control of it.$At the beginning of your upkeep, Sleeper Agent deals 2 damage to you.|
-Healing Salve|Urza's Saga|16|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to target creature or player this turn.|
+Healing Salve|Urza's Saga|16|C|{W}|Instant|||Choose one - Target player gains 3 life; or prevent the next 3 damage that would be dealt to any target this turn.|
Spined Fluke|Urza's Saga|160|U|{2}{B}|Creature - Worm Horror|5|1|When Spined Fluke enters the battlefield, sacrifice a creature.${B}: Regenerate Spined Fluke.|
Tainted AEther|Urza's Saga|161|R|{2}{B}{B}|Enchantment|||Whenever a creature enters the battlefield, its controller sacrifices a creature or land.|
Unnerve|Urza's Saga|162|C|{3}{B}|Sorcery|||Each opponent discards two cards.|
@@ -25975,7 +25975,7 @@ Scald|Urza's Saga|211|U|{1}{R}|Enchantment|||Whenever a player taps an Island fo
Scoria Wurm|Urza's Saga|212|R|{4}{R}|Creature - Wurm|7|7|At the beginning of your upkeep, flip a coin. If you lose the flip, return Scoria Wurm to its owner's hand.|
Scrap|Urza's Saga|213|C|{2}{R}|Instant|||Destroy target artifact.$Cycling {2} ({2}, Discard this card: Draw a card.)|
Shiv's Embrace|Urza's Saga|214|U|{2}{R}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2 and has flying.${R}: Enchanted creature gets +1/+0 until end of turn.|
-Shivan Hellkite|Urza's Saga|215|R|{5}{R}{R}|Creature - Dragon|5|5|Flying (This creature can't be blocked except by creatures with flying or reach.)${1}{R}: Shivan Hellkite deals 1 damage to target creature or player.|
+Shivan Hellkite|Urza's Saga|215|R|{5}{R}{R}|Creature - Dragon|5|5|Flying (This creature can't be blocked except by creatures with flying or reach.)${1}{R}: Shivan Hellkite deals 1 damage to any target.|
Shivan Raptor|Urza's Saga|216|U|{2}{R}|Creature - Lizard|3|1|First strike, haste$Echo {2}{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.)|
Shower of Sparks|Urza's Saga|217|C|{R}|Instant|||Shower of Sparks deals 1 damage to target creature and 1 damage to target player.|
Sneak Attack|Urza's Saga|218|R|{3}{R}|Enchantment|||{R}: You may put a creature card from your hand onto the battlefield. That creature gains haste. Sacrifice the creature at the beginning of the next end step.|
@@ -25983,7 +25983,7 @@ Steam Blast|Urza's Saga|219|U|{2}{R}|Sorcery|||Steam Blast deals 2 damage to eac
Opal Acrolith|Urza's Saga|22|U|{2}{W}|Enchantment|||Whenever an opponent casts a creature spell, if Opal Acrolith is an enchantment, Opal Acrolith becomes a 2/4 Soldier creature.${0}: Opal Acrolith becomes an enchantment.|
Sulfuric Vapors|Urza's Saga|220|R|{3}{R}|Enchantment|||If a red spell would deal damage to a permanent or player, it deals that much damage plus 1 to that permanent or player instead.|
Thundering Giant|Urza's Saga|221|U|{3}{R}{R}|Creature - Giant|4|3|Haste (This creature can attack and {tap} as soon as it comes under your control.)|
-Torch Song|Urza's Saga|222|U|{2}{R}|Enchantment|||At the beginning of your upkeep, you may put a verse counter on Torch Song.${2}{R}, Sacrifice Torch Song: Torch Song deals X damage to target creature or player, where X is the number of verse counters on Torch Song.|
+Torch Song|Urza's Saga|222|U|{2}{R}|Enchantment|||At the beginning of your upkeep, you may put a verse counter on Torch Song.${2}{R}, Sacrifice Torch Song: Torch Song deals X damage to any target, where X is the number of verse counters on Torch Song.|
Viashino Outrider|Urza's Saga|223|C|{2}{R}|Creature - Viashino|4|3|Echo {2}{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.)|
Viashino Runner|Urza's Saga|224|C|{3}{R}|Creature - Viashino|3|2|Viashino Runner can't be blocked except by two or more creatures.|
Viashino Sandswimmer|Urza's Saga|225|R|{2}{R}{R}|Creature - Viashino|3|2|{R}: Flip a coin. If you win the flip, return Viashino Sandswimmer to its owner's hand. If you lose the flip, sacrifice Viashino Sandswimmer.|
@@ -26003,7 +26003,7 @@ Blanchwood Armor|Urza's Saga|237|U|{2}{G}|Enchantment - Aura|||Enchant creature
Blanchwood Treefolk|Urza's Saga|238|C|{4}{G}|Creature - Treefolk|4|5||
Bull Hippo|Urza's Saga|239|U|{3}{G}|Creature - Hippo|3|3|Islandwalk|
Opal Caryatid|Urza's Saga|24|C|{W}|Enchantment|||When an opponent casts a creature spell, if Opal Caryatid is an enchantment, Opal Caryatid becomes a 2/2 Soldier creature.|
-Carpet of Flowers|Urza's Saga|240|U|{G}|Enchantment|||At the beginning of each of your main phases, if you haven't added mana to your mana pool with this ability this turn, you may add up to X mana of any one color to your mana pool, where X is the number of Islands target opponent controls.|
+Carpet of Flowers|Urza's Saga|240|U|{G}|Enchantment|||At the beginning of each of your main phases, if you haven't added mana with this ability this turn, you may add up to X mana of any one color, where X is the number of Islands target opponent controls.|
Cave Tiger|Urza's Saga|241|C|{2}{G}|Creature - Cat|2|2|Whenever Cave Tiger becomes blocked by a creature, Cave Tiger gets +1/+1 until end of turn.|
Child of Gaea|Urza's Saga|242|R|{3}{G}{G}{G}|Creature - Elemental|7|7|Trample$At the beginning of your upkeep, sacrifice Child of Gaea unless you pay {G}{G}.${1}{G}: Regenerate Child of Gaea.|
Citanul Centaurs|Urza's Saga|243|R|{3}{G}|Creature - Centaur|6|3|Shroud (This permanent can't be the target of spells or abilities.)$Echo {3}{G} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)|
@@ -26070,7 +26070,7 @@ Karn, Silver Golem|Urza's Saga|298|R|{5}|Legendary Artifact Creature - Golem|4|4
Lifeline|Urza's Saga|299|R|{5}|Artifact|||Whenever a creature dies, if another creature is on the battlefield, return the first card to the battlefield under its owner's control at the beginning of the next end step.|
Angelic Chorus|Urza's Saga|3|R|{3}{W}{W}|Enchantment|||Whenever a creature enters the battlefield under your control, you gain life equal to its toughness.|
Pegasus Charger|Urza's Saga|30|C|{2}{W}|Creature - Pegasus|2|1|Flying (This creature can't be blocked except by creatures with flying or reach.)$First strike (This creature deals combat damage before creatures without first strike.)|
-Lotus Blossom|Urza's Saga|300|R|{2}|Artifact|||At the beginning of your upkeep, you may put a petal counter on Lotus Blossom.${tap}, Sacrifice Lotus Blossom: Add X mana of any one color to your mana pool, where X is the number of petal counters on Lotus Blossom.|
+Lotus Blossom|Urza's Saga|300|R|{2}|Artifact|||At the beginning of your upkeep, you may put a petal counter on Lotus Blossom.${tap}, Sacrifice Lotus Blossom: Add X mana of any one color, where X is the number of petal counters on Lotus Blossom.|
Metrognome|Urza's Saga|301|R|{4}|Artifact|||When a spell or ability an opponent controls causes you to discard Metrognome, put four 1/1 colorless Gnome artifact creature tokens onto the battlefield.${4}, {tap}: Put a 1/1 colorless Gnome artifact creature token onto the battlefield.|
Mishra's Helix|Urza's Saga|302|R|{5}|Artifact|||{X}, {tap}: Tap X target lands.|
Mobile Fort|Urza's Saga|303|U|{4}|Artifact Creature - Wall|0|6|Defender (This creature can't attack.)${3}: Mobile Fort gets +3/-1 until end of turn and can attack this turn as though it didn't have defender. Activate this ability only once each turn.|
@@ -26101,7 +26101,7 @@ Serra's Sanctum|Urza's Saga|325|R||Legendary Land|||{tap}: Add {W} for each ench
Shivan Gorge|Urza's Saga|326|R||Legendary Land|||{tap}: Add {C}.${2}{R}, {tap}: Shivan Gorge deals 1 damage to each opponent.|
Slippery Karst|Urza's Saga|327|C||Land|||Slippery Karst enters the battlefield tapped.${tap}: Add {G}.$Cycling {2} ({2}, Discard this card: Draw a card.)|
Smoldering Crater|Urza's Saga|328|C||Land|||Smoldering Crater enters the battlefield tapped.${tap}: Add {R}.$Cycling {2} ({2}, Discard this card: Draw a card.)|
-Thran Quarry|Urza's Saga|329|R||Land|||At the beginning of the end step, if you control no creatures, sacrifice Thran Quarry.${tap}: Add one mana of any color to your mana pool.|
+Thran Quarry|Urza's Saga|329|R||Land|||At the beginning of the end step, if you control no creatures, sacrifice Thran Quarry.${tap}: Add one mana of any color.|
Redeem|Urza's Saga|33|U|{1}{W}|Instant|||Prevent all damage that would be dealt this turn to up to two target creatures.|
Tolarian Academy|Urza's Saga|330|R||Legendary Land|||{tap}: Add {U} for each artifact you control.|
Plains|Urza's Saga|331|L||Basic Land - Plains|||W|
@@ -26133,8 +26133,8 @@ Rune of Protection: Lands|Urza's Saga|39|R|{1}{W}|Enchantment|||{W}: The next ti
Angelic Page|Urza's Saga|4|C|{1}{W}|Creature - Angel Spirit|1|1|Flying${tap}: Target attacking or blocking creature gets +1/+1 until end of turn.|
Rune of Protection: Red|Urza's Saga|40|C|{1}{W}|Enchantment|||{W}: The next time a red source of your choice would deal damage to you this turn, prevent that damage.$Cycling {2} ({2}, Discard this card: Draw a card.)|
Rune of Protection: White|Urza's Saga|41|C|{1}{W}|Enchantment|||{W}: The next time a white source of your choice would deal damage to you this turn, prevent that damage.$Cycling {2} ({2}, Discard this card: Draw a card.)|
-Sanctum Custodian|Urza's Saga|42|C|{2}{W}|Creature - Human Cleric|1|2|{tap}: Prevent the next 2 damage that would be dealt to target creature or player this turn.|
-Sanctum Guardian|Urza's Saga|43|U|{1}{W}{W}|Creature - Human Cleric|1|4|Sacrifice Sanctum Guardian: The next time a source of your choice would deal damage to target creature or player this turn, prevent that damage.|
+Sanctum Custodian|Urza's Saga|42|C|{2}{W}|Creature - Human Cleric|1|2|{tap}: Prevent the next 2 damage that would be dealt to any target this turn.|
+Sanctum Guardian|Urza's Saga|43|U|{1}{W}{W}|Creature - Human Cleric|1|4|Sacrifice Sanctum Guardian: The next time a source of your choice would deal damage to any target this turn, prevent that damage.|
Seasoned Marshal|Urza's Saga|44|U|{2}{W}{W}|Creature - Human Soldier|2|2|Whenever Seasoned Marshal attacks, you may tap target creature.|
Serra Avatar|Urza's Saga|45|R|{4}{W}{W}{W}|Creature - Avatar|*|*|Serra Avatar's power and toughness are each equal to your life total.$When Serra Avatar is put into a graveyard from anywhere, shuffle it into its owner's library.|
Serra Zealot|Urza's Saga|46|C|{W}|Creature - Human Soldier|1|1|First strike|
@@ -26172,7 +26172,7 @@ Exhaustion|Urza's Saga|74|U|{2}{U}|Sorcery|||Creatures and lands target opponent
Fog Bank|Urza's Saga|75|U|{1}{U}|Creature - Wall|0|2|Defender (This creature can't attack.)$Flying$Prevent all combat damage that would be dealt to and dealt by Fog Bank.|
Gilded Drake|Urza's Saga|76|R|{1}{U}|Creature - Drake|3|3|Flying$When Gilded Drake enters the battlefield, exchange control of Gilded Drake and up to one target creature an opponent controls. If you don't make an exchange, sacrifice Gilded Drake. This ability can't be countered except by spells and abilities. (This effect lasts indefinitely.)|
Great Whale|Urza's Saga|77|R|{5}{U}{U}|Creature - Whale|5|5|When Great Whale enters the battlefield, untap up to seven lands.|
-Hermetic Study|Urza's Saga|78|C|{1}{U}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{tap}: This creature deals 1 damage to target creature or player."|
+Hermetic Study|Urza's Saga|78|C|{1}{U}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{tap}: This creature deals 1 damage to any target."|
Hibernation|Urza's Saga|79|U|{2}{U}|Instant|||Return all green permanents to their owners' hands.|
Congregate|Urza's Saga|8|C|{3}{W}|Instant|||Target player gains 2 life for each creature on the battlefield.|
Horseshoe Crab|Urza's Saga|80|C|{2}{U}|Creature - Crab|1|3|{U}: Untap Horseshoe Crab.|
@@ -26256,13 +26256,13 @@ Battle Screech|Vintage Masters|15|C|{2}{W}{W}|Sorcery|||Put two 1/1 white Bird c
Beetleback Chief|Vintage Masters|150|C|{2}{R}{R}|Creature - Goblin Warrior|2|2|When Beetleback Chief enters the battlefield, put two 1/1 red Goblin creature tokens onto the battlefield.|
Burning of Xinye|Vintage Masters|151|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 Wish|Vintage Masters|152|R|{1}{R}|Sorcery|||You may choose a sorcery card you own from outside the game, reveal that card, and put it into your hand. Exile Burning Wish.|
-Chain Lightning|Vintage Masters|153|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.|
+Chain Lightning|Vintage Masters|153|C|{R}|Sorcery|||Chain Lightning deals 3 damage to any target. 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.|
Chaos Warp|Vintage Masters|154|R|{2}{R}|Instant|||The owner of target permanent shuffles it into his or her library, then reveals the top card of his or her library. If it's a permanent card, he or she puts it onto the battlefield.|
Chartooth Cougar|Vintage Masters|155|C|{5}{R}|Creature - Cat Beast|4|4|{R}: Chartooth Cougar gets +1/+0 until end of turn.$Mountaincycling {2} ({2}, Discard this card: Search your library for a Mountain card, reveal it, and put it into your hand. Then shuffle your library.)|
Clickslither|Vintage Masters|156|R|{1}{R}{R}{R}|Creature - Insect|3|3|Haste$Sacrifice a Goblin: Clickslither gets +2/+2 and gains trample until end of turn.|
Crater Hellion|Vintage Masters|157|R|{4}{R}{R}|Creature - Hellion Beast|6|6|Echo {4}{R}{R} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)$When Crater Hellion enters the battlefield, it deals 4 damage to each other creature.|
Falter|Vintage Masters|158|C|{1}{R}|Instant|||Creatures without flying can't block this turn.|
-Fireblast|Vintage Masters|159|U|{4}{R}{R}|Instant|||You may sacrifice two Mountains rather than pay Fireblast's mana cost.$Fireblast deals 4 damage to target creature or player.|
+Fireblast|Vintage Masters|159|U|{4}{R}{R}|Instant|||You may sacrifice two Mountains rather than pay Fireblast's mana cost.$Fireblast deals 4 damage to any target.|
Benalish Trapper|Vintage Masters|16|C|{1}{W}|Creature - Human Soldier|1|2|{W}, {tap}: Tap target creature.|
Flametongue Kavu|Vintage Masters|160|U|{3}{R}|Creature - Kavu|4|2|When Flametongue Kavu enters the battlefield, it deals 4 damage to target creature.|
Flowstone Hellion|Vintage Masters|161|U|{4}{R}|Creature - Hellion Beast|3|3|Haste${0}: Flowstone Hellion gets +1/-1 until end of turn.|
@@ -26280,10 +26280,10 @@ Goblin Ringleader|Vintage Masters|171|U|{3}{R}|Creature - Goblin|2|2|Haste$When
Goblin Settler|Vintage Masters|172|U|{3}{R}|Creature - Goblin|1|1|When Goblin Settler enters the battlefield, destroy target land.|
Goblin Warchief|Vintage Masters|173|U|{1}{R}{R}|Creature - Goblin Warrior|2|2|Goblin spells you cast cost {1} less to cast.$Goblin creatures you control have haste.|
Hulking Goblin|Vintage Masters|174|C|{1}{R}|Creature - Goblin|2|2|Hulking Goblin can't block.|
-Kaervek's Torch|Vintage Masters|175|U|{X}{R}|Sorcery|||As long as Kaervek's Torch is on the stack, spells that target it cost {2} more to cast.$Kaervek's Torch deals X damage to target creature or player.|
-Kindle|Vintage Masters|176|C|{1}{R}|Instant|||Kindle deals X damage to target creature or player, where X is 2 plus the number of cards named Kindle in all graveyards.|
+Kaervek's Torch|Vintage Masters|175|U|{X}{R}|Sorcery|||As long as Kaervek's Torch is on the stack, spells that target it cost {2} more to cast.$Kaervek's Torch deals X damage to any target.|
+Kindle|Vintage Masters|176|C|{1}{R}|Instant|||Kindle deals X damage to any target, where X is 2 plus the number of cards named Kindle in all graveyards.|
Lightning Dragon|Vintage Masters|177|R|{2}{R}{R}|Creature - Dragon|4|4|Flying$Echo {2}{R}{R} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)${R}: Lightning Dragon gets +1/+0 until end of turn.|
-Lightning Rift|Vintage Masters|178|U|{1}{R}|Enchantment|||Whenever a player cycles a card, you may pay {1}. If you do, Lightning Rift deals 2 damage to target creature or player.|
+Lightning Rift|Vintage Masters|178|U|{1}{R}|Enchantment|||Whenever a player cycles a card, you may pay {1}. If you do, Lightning Rift deals 2 damage to any target.|
Orcish Lumberjack|Vintage Masters|179|C|{R}|Creature - Orc|1|1|{tap}, Sacrifice a Forest: Add three mana in any combination of {R} and/or {G}.|
Breath of Life|Vintage Masters|18|U|{3}{W}|Sorcery|||Return target creature card from your graveyard to the battlefield.|
Pillaging Horde|Vintage Masters|180|U|{2}{R}{R}|Creature - Human Barbarian|5|5|When Pillaging Horde enters the battlefield, sacrifice it unless you discard a card at random.|
@@ -26293,8 +26293,8 @@ Rorix Bladewing|Vintage Masters|183|R|{3}{R}{R}{R}|Legendary Creature - Dragon|6
Scourge of the Throne|Vintage Masters|184|M|{4}{R}{R}|Creature - Dragon|5|5|Flying$Dethrone (Whenever this creature attacks the player with the most life or tied for most life, put a +1/+1 counter on it.)$Whenever Scourge of the Throne attacks for the first time each turn, if it's attacking the player with the most life or tied for most life, untap all attacking creatures. After this phase, there is an additional combat phase.|
Skirk Drill Sergeant|Vintage Masters|185|C|{1}{R}|Creature - Goblin|2|1|Whenever Skirk Drill Sergeant or another Goblin dies, you may pay {2}{R}. If you do, reveal the top card of your library. If it's a Goblin permanent card, put it onto the battlefield. Otherwise, put it into your graveyard.|
Skirk Prospector|Vintage Masters|186|C|{R}|Creature - Goblin|1|1|Sacrifice a Goblin: Add {R}.|
-Solar Blast|Vintage Masters|187|C|{3}{R}|Instant|||Solar Blast deals 3 damage to target creature or player.$Cycling {1}{R}{R} ({1}{R}{R}, Discard this card: Draw a card.)$When you cycle Solar Blast, you may have it deal 1 damage to target creature or player.|
-Spark Spray|Vintage Masters|188|C|{R}|Instant|||Spark Spray deals 1 damage to target creature or player.$Cycling {R} ({R}, Discard this card: Draw a card.)|
+Solar Blast|Vintage Masters|187|C|{3}{R}|Instant|||Solar Blast deals 3 damage to any target.$Cycling {1}{R}{R} ({1}{R}{R}, Discard this card: Draw a card.)$When you cycle Solar Blast, you may have it deal 1 damage to any target.|
+Spark Spray|Vintage Masters|188|C|{R}|Instant|||Spark Spray deals 1 damage to any target.$Cycling {R} ({R}, Discard this card: Draw a card.)|
Starstorm|Vintage Masters|189|R|{X}{R}{R}|Instant|||Starstorm deals X damage to each creature.$Cycling {3} ({3}, Discard this card: Draw a card.)|
Brilliant Halo|Vintage Masters|19|C|{1}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+2.$When Brilliant Halo is put into a graveyard from the battlefield, return Brilliant Halo to its owner's hand.|
Sulfuric Vortex|Vintage Masters|190|R|{1}{R}{R}|Enchantment|||At the beginning of each player's upkeep, Sulfuric Vortex deals 2 damage to that player.$If a player would gain life, that player gains no life instead.|
@@ -26362,7 +26362,7 @@ Blazing Specter|Vintage Masters|245|U|{2}{B}{R}|Creature - Specter|2|2|Flying, h
Brago, King Eternal|Vintage Masters|246|R|{2}{W}{U}|Legendary Creature - Spirit|2|4|Flying$When Brago, King Eternal deals combat damage to a player, exile any number of target nonland permanents you control, then return those cards to the battlefield under their owner's control.|
Dack Fayden|Vintage Masters|247|M|{1}{U}{R}|Legendary Planeswalker - Dack|||+1: Target player draws two cards, then discards two cards.$-2: Gain control of target artifact.$-6: You get an emblem with "Whenever you cast a spell that targets one or more permanents, gain control of those permanents."|
Dack's Duplicate|Vintage Masters|248|R|{2}{U}{R}|Creature - Shapeshifter|0|0|You may have Dack's Duplicate enter the battlefield as a copy of any creature on the battlefield except it gains haste and dethrone. (Whenever it attacks the player with the most life or tied for most life, put a +1/+1 counter on it.)|
-Death Grasp|Vintage Masters|249|U|{X}{W}{B}|Sorcery|||Death Grasp deals X damage to target creature or player. You gain X life.|
+Death Grasp|Vintage Masters|249|U|{X}{W}{B}|Sorcery|||Death Grasp deals X damage to any target. You gain X life.|
Empyrial Armor|Vintage Masters|25|U|{1}{W}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+1 for each card in your hand.|
Deathreap Ritual|Vintage Masters|250|U|{2}{B}{G}|Enchantment|||Morbid - At the beginning of each end step, if a creature died this turn, you may draw a card.|
Edric, Spymaster of Trest|Vintage Masters|251|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.|
@@ -26371,7 +26371,7 @@ Goblin Trenches|Vintage Masters|253|U|{1}{R}{W}|Enchantment|||{2}, Sacrifice a l
Grenzo, Dungeon Warden|Vintage Masters|254|R|{X}{B}{R}|Legendary Creature - Goblin Rogue|2|2|Grenzo, Dungeon Warden enters the battlefield with X +1/+1 counters on it.${2}: Put the bottom card of your library into your graveyard. If it's a creature card with power less than or equal to Grenzo's power, put it onto the battlefield.|
Magister of Worth|Vintage Masters|255|R|{4}{W}{B}|Creature - Angel|4|4|Flying$Will of the council - When Magister of Worth enters the battlefield, starting with you, each player votes for grace or condemnation. If grace gets more votes, each player returns each creature card from his or her graveyard to the battlefield. If condemnation gets more votes or the vote is tied, destroy all creatures other than Magister of Worth.|
Marchesa, the Black Rose|Vintage Masters|256|M|{1}{U}{B}{R}|Legendary Creature - Human Wizard|3|3|Dethrone (Whenever this creature attacks the player with the most life or tied for most life, put a +1/+1 counter on it.)$Other creatures you control have dethrone.$Whenever a creature you control with a +1/+1 counter on it dies, return that card to the battlefield under your control at the beginning of the next end step.|
-Prophetic Bolt|Vintage Masters|257|U|{3}{U}{R}|Instant|||Prophetic Bolt deals 4 damage to target creature or player. Look at the top four cards of your library. Put one of those cards into your hand and the rest on the bottom of your library in any order.|
+Prophetic Bolt|Vintage Masters|257|U|{3}{U}{R}|Instant|||Prophetic Bolt deals 4 damage to any target. Look at the top four cards of your library. Put one of those cards into your hand and the rest on the bottom of your library in any order.|
Psychatog|Vintage Masters|258|U|{1}{U}{B}|Creature - Atog|1|2|Discard a card: Psychatog gets +1/+1 until end of turn.$Exile two cards from your graveyard: Psychatog gets +1/+1 until end of turn.|
Reviving Vapors|Vintage Masters|259|U|{2}{W}{U}|Instant|||Reveal the top three cards of your library and put one of them into your hand. You gain life equal to that card's converted mana cost. Put all other cards revealed this way into your graveyard.|
Eternal Dragon|Vintage Masters|26|R|{5}{W}{W}|Creature - Dragon Spirit|5|5|Flying${3}{W}{W}: Return Eternal Dragon from your graveyard to your hand. Activate this ability only during your upkeep.$Plainscycling {2} ({2}, Discard this card: Search your library for a Plains card, reveal it, and put it into your hand. Then shuffle your library.)|
@@ -26382,14 +26382,14 @@ Ankh of Mishra|Vintage Masters|263|R|{2}|Artifact|||Whenever a land enters the b
Chimeric Idol|Vintage Masters|264|U|{3}|Artifact|||{0}: Tap all lands you control. Chimeric Idol becomes a 3/3 Turtle artifact creature until end of turn.|
City in a Bottle|Vintage Masters|265|M|{2}|Artifact|||Whenever a nontoken permanent originally printed in the Arabian Nights expansion other than City in a Bottle is on the battlefield, its controller sacrifices it.$Players can't play cards originally printed in the Arabian Nights expansion.|
Coercive Portal|Vintage Masters|266|M|{4}|Artifact|||Will of the council - At the beginning of your upkeep, starting with you, each player votes for carnage or homage. If carnage gets more votes, sacrifice Coercive Portal and destroy all nonland permanents. If homage gets more votes or the vote is tied, draw a card.|
-Cursed Scroll|Vintage Masters|267|R|{1}|Artifact|||{3}, {tap}: Name a card. Reveal a card at random from your hand. If it's the named card, Cursed Scroll deals 2 damage to target creature or player.|
+Cursed Scroll|Vintage Masters|267|R|{1}|Artifact|||{3}, {tap}: Name a card. Reveal a card at random from your hand. If it's the named card, Cursed Scroll deals 2 damage to any target.|
Flowstone Sculpture|Vintage Masters|268|R|{6}|Artifact Creature - Shapeshifter|4|4|{2}, Discard a card: Put a +1/+1 counter on Flowstone Sculpture or Flowstone Sculpture gains flying, first strike, or trample. (This effect lasts indefinitely.)|
Ivory Tower|Vintage Masters|269|U|{1}|Artifact|||At the beginning of your upkeep, you gain X life, where X is the number of cards in your hand minus 4.|
Exile|Vintage Masters|27|C|{2}{W}|Instant|||Exile target nonwhite attacking creature. You gain life equal to its toughness.|
Karn, Silver Golem|Vintage Masters|270|R|{5}|Legendary Artifact Creature - Golem|4|4|Whenever Karn, Silver Golem blocks or becomes blocked, it gets -4/+4 until end of turn.${1}: Target noncreature artifact becomes an artifact creature with power and toughness each equal to its converted mana cost until end of turn.|
-Lion's Eye Diamond|Vintage Masters|271|M|{0}|Artifact|||Sacrifice Lion's Eye Diamond, Discard your hand: Add three mana of any one color to your mana pool. Activate this ability only any time you could cast an instant.|
+Lion's Eye Diamond|Vintage Masters|271|M|{0}|Artifact|||Sacrifice Lion's Eye Diamond, Discard your hand: Add three mana of any one color. Activate this ability only any time you could cast an instant.|
Mana Crypt|Vintage Masters|272|M|{0}|Artifact|||At the beginning of your upkeep, flip a coin. If you lose the flip, Mana Crypt deals 3 damage to you.${tap}: Add {C}{C}.|
-Mana Prism|Vintage Masters|273|C|{3}|Artifact|||{tap}: Add {C}.$${1}, {tap}: Add one mana of any color to your mana pool.|
+Mana Prism|Vintage Masters|273|C|{3}|Artifact|||{tap}: Add {C}.$${1}, {tap}: Add one mana of any color.|
Mana Vault|Vintage Masters|274|R|{1}|Artifact|||Mana Vault doesn't untap during your untap step.$At the beginning of your upkeep, you may pay {4}. If you do, untap Mana Vault.$At the beginning of your draw step, if Mana Vault is tapped, it deals 1 damage to you.${tap}: Add {C}{C}{C}.|
Masticore|Vintage Masters|275|R|{4}|Artifact Creature - Masticore|4|4|At the beginning of your upkeep, sacrifice Masticore unless you discard a card.${2}: Masticore deals 1 damage to target creature.${2}: Regenerate Masticore.|
Memory Jar|Vintage Masters|276|M|{5}|Artifact|||{tap}, Sacrifice Memory Jar: Each player exiles all cards from his or her hand face down and draws seven cards. At the beginning of the next end step, each player discards his or her hand and returns to his or her hand each card he or she exiled this way.|
@@ -26416,11 +26416,11 @@ Bazaar of Baghdad|Vintage Masters|294|M||Land|||{tap}: Draw two cards, then disc
Caldera Lake|Vintage Masters|295|U||Land|||Caldera Lake enters the battlefield tapped.${tap}: Add {C}.${tap}: Add {U} or {R}. Caldera Lake deals 1 damage to you.|
Flood Plain|Vintage Masters|296|U||Land|||Flood Plain enters the battlefield tapped.${tap}, Sacrifice Flood Plain: Search your library for a Plains or Island card and put it onto the battlefield. Then shuffle your library.|
Forgotten Cave|Vintage Masters|297|C||Land|||Forgotten Cave enters the battlefield tapped.${tap}: Add {R}.$Cycling {R} ({R}, Discard this card: Draw a card.)|
-Grand Coliseum|Vintage Masters|298|R||Land|||Grand Coliseum enters the battlefield tapped.${tap}: Add {C}.${tap}: Add one mana of any color to your mana pool. Grand Coliseum deals 1 damage to you.|
+Grand Coliseum|Vintage Masters|298|R||Land|||Grand Coliseum enters the battlefield tapped.${tap}: Add {C}.${tap}: Add one mana of any color. Grand Coliseum deals 1 damage to you.|
Grasslands|Vintage Masters|299|U||Land|||Grasslands enters the battlefield tapped.${tap}, Sacrifice Grasslands: Search your library for a Forest or Plains card and put it onto the battlefield. Then shuffle your library.|
Timetwister|Vintage Masters|3|Bonus|{2}{U}|Sorcery|||Each player shuffles his or her hand and graveyard into his or her library, then draws seven cards. (Then put Timetwister into its owner's graveyard.)|
Gustcloak Harrier|Vintage Masters|30|C|{1}{W}{W}|Creature - Bird Soldier|2|2|Flying$Whenever Gustcloak Harrier becomes blocked, you may untap it and remove it from combat.|
-Keldon Necropolis|Vintage Masters|300|R||Legendary Land|||{tap}: Add {C}.${4}{R}, {tap}, Sacrifice a creature: Keldon Necropolis deals 2 damage to target creature or player.|
+Keldon Necropolis|Vintage Masters|300|R||Legendary Land|||{tap}: Add {C}.${4}{R}, {tap}, Sacrifice a creature: Keldon Necropolis deals 2 damage to any target.|
Kjeldoran Outpost|Vintage Masters|301|R||Land|||If Kjeldoran Outpost would enter the battlefield, sacrifice a Plains instead. If you do, put Kjeldoran Outpost onto the battlefield. If you don't, put it into its owner's graveyard.${tap}: Add {W}.${1}{W}, {tap}: Put a 1/1 white Soldier creature token onto the battlefield.|
Lake of the Dead|Vintage Masters|302|R||Land|||If Lake of the Dead would enter the battlefield, sacrifice a Swamp instead. If you do, put Lake of the Dead onto the battlefield. If you don't, put it into its owner's graveyard.${tap}: Add {B}.${tap}, Sacrifice a Swamp: Add {B}{B}{B}{B}.|
Library of Alexandria|Vintage Masters|303|M||Land|||{tap}: Add {C}.${tap}: Draw a card. Activate this ability only if you have exactly seven cards in hand.|
@@ -26455,7 +26455,7 @@ Noble Templar|Vintage Masters|36|C|{5}{W}|Creature - Human Cleric Soldier|3|6|Vi
Parallax Wave|Vintage Masters|37|R|{2}{W}{W}|Enchantment|||Fading 5 (This enchantment enters the battlefield with five fade counters on it. At the beginning of your upkeep, remove a fade counter from it. If you can't, sacrifice it.)$Remove a fade counter from Parallax Wave: Exile target creature.$When Parallax Wave leaves the battlefield, each player returns to the battlefield all cards he or she owns exiled with Parallax Wave.|
Phantom Nomad|Vintage Masters|38|C|{1}{W}|Creature - Spirit Nomad|0|0|Phantom Nomad enters the battlefield with two +1/+1 counters on it.$If damage would be dealt to Phantom Nomad, prevent that damage. Remove a +1/+1 counter from Phantom Nomad.|
Pianna, Nomad Captain|Vintage Masters|39|U|{1}{W}{W}|Legendary Creature - Human Nomad|2|2|Whenever Pianna, Nomad Captain attacks, attacking creatures get +1/+1 until end of turn.|
-Black Lotus|Vintage Masters|4|Bonus|{0}|Artifact|||{tap}, Sacrifice Black Lotus: Add three mana of any one color to your mana pool.|
+Black Lotus|Vintage Masters|4|Bonus|{0}|Artifact|||{tap}, Sacrifice Black Lotus: Add three mana of any one color.|
Radiant, Archangel|Vintage Masters|40|U|{3}{W}{W}|Legendary Creature - Angel|3|3|Flying, vigilance$Radiant, Archangel gets +1/+1 for each other creature with flying on the battlefield.|
Radiant's Judgment|Vintage Masters|41|C|{2}{W}|Instant|||Destroy target creature with power 4 or greater.$Cycling {2} ({2}, Discard this card: Draw a card.)|
Renewed Faith|Vintage Masters|42|C|{2}{W}|Instant|||You gain 6 life.$Cycling {1}{W} ({1}{W}, Discard this card: Draw a card.)$When you cycle Renewed Faith, you may gain 2 life.|
@@ -26471,7 +26471,7 @@ Stoic Champion|Vintage Masters|50|U|{W}{W}|Creature - Human Soldier|2|2|Whenever
Swords to Plowshares|Vintage Masters|51|U|{W}|Instant|||Exile target creature. Its controller gains life equal to its power.|
Teroh's Faithful|Vintage Masters|52|C|{3}{W}|Creature - Human Cleric|1|4|When Teroh's Faithful enters the battlefield, you gain 4 life.|
Winds of Rath|Vintage Masters|53|R|{3}{W}{W}|Sorcery|||Destroy all creatures that aren't enchanted. They can't be regenerated.|
-Zhalfirin Crusader|Vintage Masters|54|R|{1}{W}{W}|Creature - Human Knight|2|2|Flanking (Whenever a creature without flanking blocks this creature, the blocking creature gets -1/-1 until end of turn.)${1}{W}: The next 1 damage that would be dealt to Zhalfirin Crusader this turn is dealt to target creature or player instead.|
+Zhalfirin Crusader|Vintage Masters|54|R|{1}{W}{W}|Creature - Human Knight|2|2|Flanking (Whenever a creature without flanking blocks this creature, the blocking creature gets -1/-1 until end of turn.)${1}{W}: The next 1 damage that would be dealt to Zhalfirin Crusader this turn is dealt to any target instead.|
Academy Elite|Vintage Masters|55|R|{3}{U}|Creature - Human Wizard|0|0|Academy Elite enters the battlefield with X +1/+1 counters on it, where X is the number of instant and sorcery cards in all graveyards.${2}{U}, Remove a +1/+1 counter from Academy Elite: Draw a card, then discard a card.|
Aquamoeba|Vintage Masters|56|C|{1}{U}|Creature - Elemental Beast|1|3|Discard a card: Switch Aquamoeba's power and toughness until end of turn.|
Brain Freeze|Vintage Masters|57|U|{1}{U}|Instant|||Target player puts the top three cards of his or her library into his or her graveyard.$Storm (When you cast this spell, copy it for each spell cast before it this turn. You may choose new targets for the copies.)|
@@ -26531,7 +26531,7 @@ Equipoise|Visions|103|R|{2}{W}|Enchantment|||At the beginning of your upkeep, fo
Eye of Singularity|Visions|104|R|{3}{W}|World Enchantment|||When Eye of Singularity enters the battlefield, destroy each permanent with the same name as another permanent, except for basic lands. They can't be regenerated.$Whenever a permanent other than a basic land enters the battlefield, destroy all other permanents with that name. They can't be regenerated.|
Freewind Falcon|Visions|105|C|{1}{W}|Creature - Bird|1|1|Flying, protection from red|
Gossamer Chains|Visions|106|C|{W}{W}|Enchantment|||Return Gossamer Chains to its owner's hand: Prevent all combat damage that would be dealt by target unblocked creature this turn.|
-Honorable Passage|Visions|107|U|{1}{W}|Instant|||The next time a source of your choice would deal damage to target creature or player this turn, prevent that damage. If damage from a red source is prevented this way, Honorable Passage deals that much damage to the source's controller.|
+Honorable Passage|Visions|107|U|{1}{W}|Instant|||The next time a source of your choice would deal damage to any target this turn, prevent that damage. If damage from a red source is prevented this way, Honorable Passage deals that much damage to the source's controller.|
Hope Charm|Visions|108|C|{W}|Instant|||Choose one - Target creature gains first strike until end of turn; or target player gains 2 life; or destroy target Aura.|
Infantry Veteran|Visions|109|C|{W}|Creature - Human Soldier|1|1|{tap}: Target attacking creature gets +1/+1 until end of turn.|
Funeral Charm|Visions|11|C|{B}|Instant|||Choose one - Target player discards a card; or target creature gets +2/-1 until end of turn; or target creature gains swampwalk until end of turn.|
@@ -26549,7 +26549,7 @@ Righteous Aura|Visions|120|C|{1}{W}|Enchantment|||{W}, Pay 2 life: The next time
Sun Clasp|Visions|121|C|{1}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+3.${W}: Return enchanted creature to its owner's hand.|
Teferi's Honor Guard|Visions|122|U|{2}{W}|Creature - Human Knight|2|2|Flanking (Whenever a creature without flanking blocks this creature, the blocking creature gets -1/-1 until end of turn.)${U}{U}: Teferi's Honor Guard phases out. (While it's phased out, it's treated as though it doesn't exist. It phases in before you untap during your next untap step.)|
Warrior's Honor|Visions|124|C|{2}{W}|Instant|||Creatures you control get +1/+1 until end of turn.|
-Zhalfirin Crusader|Visions|125|R|{1}{W}{W}|Creature - Human Knight|2|2|Flanking (Whenever a creature without flanking blocks this creature, the blocking creature gets -1/-1 until end of turn.)${1}{W}: The next 1 damage that would be dealt to Zhalfirin Crusader this turn is dealt to target creature or player instead.|
+Zhalfirin Crusader|Visions|125|R|{1}{W}{W}|Creature - Human Knight|2|2|Flanking (Whenever a creature without flanking blocks this creature, the blocking creature gets -1/-1 until end of turn.)${1}{W}: The next 1 damage that would be dealt to Zhalfirin Crusader this turn is dealt to any target instead.|
Army Ants|Visions|126|U|{1}{B}{R}|Creature - Insect|1|1|{tap}, Sacrifice a land: Destroy target land.|
Breathstealer's Crypt|Visions|127|R|{2}{U}{B}|Enchantment|||If a player would draw a card, instead he or she draws a card and reveals it. If it's a creature card, that player discards it unless he or she pays 3 life.|
Corrosion|Visions|128|R|{1}{B}{R}|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.)$At the beginning of your upkeep, put a rust counter on each artifact target opponent controls. Then destroy each artifact with converted mana cost less than or equal to the number of rust counters on it. Artifacts destroyed this way can't be regenerated.$When Corrosion leaves the battlefield, remove all rust counters from all permanents.|
@@ -26562,20 +26562,20 @@ Pygmy Hippo|Visions|133|R|{G}{U}|Creature - Hippo|2|2|Whenever Pygmy Hippo attac
Righteous War|Visions|134|R|{1}{W}{B}|Enchantment|||White creatures you control have protection from black.$Black creatures you control have protection from white.|
Scalebane's Elite|Visions|135|U|{3}{G}{W}|Creature - Human Soldier|4|4|Protection from black|
Simoon|Visions|136|U|{R}{G}|Instant|||Simoon deals 1 damage to each creature target opponent controls.|
-Squandered Resources|Visions|137|R|{B}{G}|Enchantment|||Sacrifice a land: Add to your mana pool one mana of any type the sacrificed land could produce.|
+Squandered Resources|Visions|137|R|{B}{G}|Enchantment|||Sacrifice a land: Add one mana of any type the sacrificed land could produce.|
Suleiman's Legacy|Visions|138|R|{R}{W}|Enchantment|||When Suleiman's Legacy enters the battlefield, destroy all Djinns and Efreets. They can't be regenerated.$Whenever a Djinn or Efreet enters the battlefield, destroy it. It can't be regenerated.|
Tempest Drake|Visions|139|U|{1}{W}{U}|Creature - Drake|2|2|Flying, vigilance|
Necromancy|Visions|14|U|{2}{B}|Enchantment|||You may cast Necromancy as though it had flash. If you cast it any time a sorcery couldn't have been cast, the controller of the permanent it becomes sacrifices it at the beginning of the next cleanup step.$When Necromancy enters the battlefield, if it's on the battlefield, it becomes an Aura with "enchant creature put onto the battlefield with Necromancy." Put target creature card from a graveyard onto the battlefield under your control and attach Necromancy to it. When Necromancy leaves the battlefield, that creature's controller sacrifices it.|
Viashivan Dragon|Visions|140|R|{2}{R}{R}{G}{G}|Creature - Dragon|4|4|Flying${R}: Viashivan Dragon gets +1/+0 until end of turn.${G}: Viashivan Dragon gets +0/+1 until end of turn.|
Anvil of Bogardan|Visions|141|R|{2}|Artifact|||Players have no maximum hand size.$At the beginning of each player's draw step, that player draws an additional card, then discards a card.|
Brass-Talon Chimera|Visions|142|U|{4}|Artifact Creature - Chimera|2|2|First strike$Sacrifice Brass-Talon Chimera: Put a +2/+2 counter on target Chimera creature. It gains first strike. (This effect lasts indefinitely.)|
-Diamond Kaleidoscope|Visions|143|R|{4}|Artifact|||{3}, {tap}: Put a 0/1 colorless Prism artifact creature token onto the battlefield.$Sacrifice a Prism token: Add one mana of any color to your mana pool.|
+Diamond Kaleidoscope|Visions|143|R|{4}|Artifact|||{3}, {tap}: Put a 0/1 colorless Prism artifact creature token onto the battlefield.$Sacrifice a Prism token: Add one mana of any color.|
Dragon Mask|Visions|144|U|{3}|Artifact|||{3}, {tap}: Target creature you control gets +2/+2 until end of turn. Return it to its owner's hand at the beginning of the next end step. (Return it only if it's on the battlefield.)|
Helm of Awakening|Visions|145|U|{2}|Artifact|||Spells cost {1} less to cast.|
Iron-Heart Chimera|Visions|146|U|{4}|Artifact Creature - Chimera|2|2|Vigilance$Sacrifice Iron-Heart Chimera: Put a +2/+2 counter on target Chimera creature. It gains vigilance. (This effect lasts indefinitely.)|
Juju Bubble|Visions|147|U|{1}|Artifact|||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.)$When you play a card, sacrifice Juju Bubble.${2}: You gain 1 life.|
Lead-Belly Chimera|Visions|148|U|{4}|Artifact Creature - Chimera|2|2|Trample$Sacrifice Lead-Belly Chimera: Put a +2/+2 counter on target Chimera creature. It gains trample. (This effect lasts indefinitely.)|
-Magma Mine|Visions|149|U|{1}|Artifact|||{4}: Put a pressure counter on Magma Mine.${tap}, Sacrifice Magma Mine: Magma Mine deals damage equal to the number of pressure counters on it to target creature or player.|
+Magma Mine|Visions|149|U|{1}|Artifact|||{4}: Put a pressure counter on Magma Mine.${tap}, Sacrifice Magma Mine: Magma Mine deals damage equal to the number of pressure counters on it to any target.|
Necrosavant|Visions|15|R|{3}{B}{B}{B}|Creature - Zombie Giant|5|5|{3}{B}{B}, Sacrifice a creature: Return Necrosavant from your graveyard to the battlefield. Activate this ability only during your upkeep.|
Matopi Golem|Visions|150|U|{5}|Artifact Creature - Golem|3|3|{1}: Regenerate Matopi Golem. When it regenerates this way, put a -1/-1 counter on it.|
Phyrexian Marauder|Visions|151|R|{X}|Artifact Creature - Construct|0|0|Phyrexian Marauder enters the battlefield with X +1/+1 counters on it.$Phyrexian Marauder can't block.$Phyrexian Marauder can't attack unless you pay {1} for each +1/+1 counter on it.|
@@ -26595,7 +26595,7 @@ Griffin Canyon|Visions|163|R||Land|||{tap}: Add {C}.${tap}: Untap target Griffin
Jungle Basin|Visions|164|U||Land|||Jungle Basin enters the battlefield tapped.$When Jungle Basin enters the battlefield, sacrifice it unless you return an untapped Forest you control to its owner's hand.${tap}: Add {C}{G}.|
Karoo|Visions|165|U||Land|||Karoo enters the battlefield tapped.$When Karoo enters the battlefield, sacrifice it unless you return an untapped Plains you control to its owner's hand.${tap}: Add {C}{W}.|
Quicksand|Visions|166|U||Land|||{tap}: Add {C}.${tap}, Sacrifice Quicksand: Target attacking creature without flying gets -1/-2 until end of turn.|
-Undiscovered Paradise|Visions|167|R||Land|||{tap}: Add one mana of any color to your mana pool. During your next untap step, as you untap your permanents, return Undiscovered Paradise to its owner's hand.|
+Undiscovered Paradise|Visions|167|R||Land|||{tap}: Add one mana of any color. During your next untap step, as you untap your permanents, return Undiscovered Paradise to its owner's hand.|
Pillar Tombs of Aku|Visions|17|R|{2}{B}{B}|World Enchantment|||At the beginning of each player's upkeep, that player may sacrifice a creature. If that player doesn't, he or she loses 5 life and you sacrifice Pillar Tombs of Aku.|
Python|Visions|18|C|{1}{B}{B}|Creature - Snake|3|2||
Suq'Ata Assassin|Visions|19|U|{1}{B}{B}|Creature - Human Assassin|1|1|Fear (This creature can't be blocked except by artifact creatures and/or black creatures.)$Whenever Suq'Ata Assassin attacks and isn't blocked, defending player gets a poison counter. (A player with ten or more poison counters loses the game.)|
@@ -26664,7 +26664,7 @@ Wind Shear|Visions|75|U|{2}{G}|Instant|||Attacking creatures with flying get -2/
Bogardan Phoenix|Visions|76|R|{2}{R}{R}{R}|Creature - Phoenix|3|3|Flying$When Bogardan Phoenix dies, exile it if it had a death counter on it. Otherwise, return it to the battlefield under your control and put a death counter on it.|
Dwarven Vigilantes|Visions|77|C|{2}{R}|Creature - Dwarf|2|2|Whenever Dwarven Vigilantes attacks and isn't blocked, you may have it deal damage equal to its power to target creature. If you do, Dwarven Vigilantes assigns no combat damage this turn.|
Elkin Lair|Visions|78|R|{3}{R}|World Enchantment|||At the beginning of each player's upkeep, that player exiles a card at random from his or her hand. The player may play that card this turn. At the beginning of the next end step, if the player hasn't played the card, he or she puts it into his or her graveyard.|
-Fireblast|Visions|79|C|{4}{R}{R}|Instant|||You may sacrifice two Mountains rather than pay Fireblast's mana cost.$Fireblast deals 4 damage to target creature or player.|
+Fireblast|Visions|79|C|{4}{R}{R}|Instant|||You may sacrifice two Mountains rather than pay Fireblast's mana cost.$Fireblast deals 4 damage to any target.|
Desolation|Visions|8|U|{1}{B}{B}|Enchantment|||At the beginning of each end step, each player who tapped a land for mana this turn sacrifices a land. Desolation deals 2 damage to each player who sacrificed a Plains this way.|
Goblin Recruiter|Visions|80|U|{1}{R}|Creature - Goblin|1|1|When Goblin Recruiter enters the battlefield, search your library for any number of Goblin cards and reveal those cards. Shuffle your library, then put them on top of it in any order.|
Goblin Swine-Rider|Visions|81|C|{R}|Creature - Goblin|1|1|Whenever Goblin Swine-Rider becomes blocked, it deals 2 damage to each attacking creature and each blocking creature.|
@@ -26674,7 +26674,7 @@ Hulking Cyclops|Visions|84|U|{3}{R}{R}|Creature - Cyclops|5|5|Hulking Cyclops ca
Tithe|Visions|84|R|{W}|Instant|||Search your library for a Plains card. If target opponent controls more lands than you, you may search your library for an additional Plains card. Reveal those cards and put them into your hand. Then shuffle your library.|
Keeper of Kookus|Visions|85|C|{R}|Creature - Goblin|1|1|{R}: Keeper of Kookus gains protection from red until end of turn.|
Kookus|Visions|85|R|{3}{R}{R}|Creature - Djinn|3|5|Trample$At the beginning of your upkeep, if you don't control a creature named Keeper of Kookus, Kookus deals 3 damage to you and attacks this turn if able.${R}: Kookus gets +1/+0 until end of turn.|
-Lightning Cloud|Visions|87|R|{3}{R}|Enchantment|||Whenever a player casts a red spell, you may pay {R}. If you do, Lightning Cloud deals 1 damage to target creature or player.|
+Lightning Cloud|Visions|87|R|{3}{R}|Enchantment|||Whenever a player casts a red spell, you may pay {R}. If you do, Lightning Cloud deals 1 damage to any target.|
Mob Mentality|Visions|88|U|{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has trample.$Whenever all non-Wall creatures you control attack, enchanted creature gets +X/+0 until end of turn, where X is the number of attacking creatures.|
Ogre Enforcer|Visions|89|R|{3}{R}{R}|Creature - Ogre|4|4|Ogre Enforcer can't be destroyed by lethal damage unless lethal damage dealt by a single source is marked on it.|
Fallen Askari|Visions|9|C|{1}{B}|Creature - Human Knight|2|2|Flanking (Whenever a creature without flanking blocks this creature, the blocking creature gets -1/-1 until end of turn.)$Fallen Askari can't block.|
@@ -26690,7 +26690,7 @@ Talruum Piper|Visions|98|U|{4}{R}|Creature - Minotaur|3|3|All creatures with fly
Tremor|Visions|99|C|{R}|Sorcery|||Tremor deals 1 damage to each creature without flying.|
Abyssal Gatekeeper|Weatherlight|1|C|{1}{B}|Creature - Horror|1|1|When Abyssal Gatekeeper dies, each player sacrifices a creature.|
Festering Evil|Weatherlight|10|U|{3}{B}{B}|Enchantment|||At the beginning of your upkeep, Festering Evil deals 1 damage to each creature and each player.$${B}{B}, Sacrifice Festering Evil: Festering Evil deals 3 damage to each creature and each player.|
-Fire Whip|Weatherlight|100|C|{1}{R}|Enchantment - Aura|||Enchant creature you control$Enchanted creature has "{tap}: This creature deals 1 damage to target creature or player."$Sacrifice Fire Whip: Fire Whip deals 1 damage to target creature or player.|
+Fire Whip|Weatherlight|100|C|{1}{R}|Enchantment - Aura|||Enchant creature you control$Enchanted creature has "{tap}: This creature deals 1 damage to any target."$Sacrifice Fire Whip: Fire Whip deals 1 damage to any target.|
Firestorm|Weatherlight|101|R|{R}|Instant|||As an additional cost to cast Firestorm, discard X cards.$Firestorm deals X damage to each of X target creatures and/or players.|
Fit of Rage|Weatherlight|102|C|{1}{R}|Sorcery|||Target creature gets +3/+3 and gains first strike until end of turn.|
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.|
@@ -26760,8 +26760,8 @@ Thran Tome|Weatherlight|160|R|{4}|Artifact|||{5}, {tap}: Reveal the top three ca
Touchstone|Weatherlight|161|U|{2}|Artifact|||{tap}: Tap target artifact you don't control.|
Well of Knowledge|Weatherlight|162|R|{3}|Artifact|||{2}: Draw a card. Any player may activate this ability but only during his or her draw step.|
Xanthic Statue|Weatherlight|163|R|{8}|Artifact|||{5}: Until end of turn, Xanthic Statue becomes an 8/8 Golem artifact creature with trample.|
-Gemstone Mine|Weatherlight|164|U||Land|||Gemstone Mine enters the battlefield with three mining counters on it.${tap}, Remove a mining counter from Gemstone Mine: Add one mana of any color to your mana pool. If there are no mining counters on Gemstone Mine, sacrifice it.|
-Lotus Vale|Weatherlight|165|R||Land|||If Lotus Vale would enter the battlefield, sacrifice two untapped lands instead. If you do, put Lotus Vale onto the battlefield. If you don't, put it into its owner's graveyard.${tap}: Add three mana of any one color to your mana pool.|
+Gemstone Mine|Weatherlight|164|U||Land|||Gemstone Mine enters the battlefield with three mining counters on it.${tap}, Remove a mining counter from Gemstone Mine: Add one mana of any color. If there are no mining counters on Gemstone Mine, sacrifice it.|
+Lotus Vale|Weatherlight|165|R||Land|||If Lotus Vale would enter the battlefield, sacrifice two untapped lands instead. If you do, put Lotus Vale onto the battlefield. If you don't, put it into its owner's graveyard.${tap}: Add three mana of any one color.|
Scorched Ruins|Weatherlight|166|R||Land|||If Scorched Ruins would enter the battlefield, sacrifice two untapped lands instead. If you do, put Scorched Ruins onto the battlefield. If you don't, put it into its owner's graveyard.${tap}: Add {C}{C}{C}{C}.|
Winding Canyons|Weatherlight|167|R||Land|||{tap}: Add {C}.${2}, {tap}: Until end of turn, you may play creature cards as though they had flash.|
Morinfen|Weatherlight|17|R|{3}{B}{B}|Legendary Creature - Horror|5|4|Flying$Cumulative upkeep-Pay 1 life. (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.)|
@@ -26850,7 +26850,7 @@ Bogardan Firefiend|Weatherlight|91|C|{2}{R}|Creature - Elemental Spirit|2|1|When
Boiling Blood|Weatherlight|92|C|{2}{R}|Instant|||Target creature attacks this turn if able.$Draw a card.|
Cinder Giant|Weatherlight|93|U|{3}{R}|Creature - Giant|5|3|At the beginning of your upkeep, Cinder Giant deals 2 damage to each other creature you control.|
Cinder Wall|Weatherlight|94|C|{R}|Creature - Wall|3|3|Defender (This creature can't attack.)$When Cinder Wall blocks, destroy it at end of combat.|
-Cone of Flame|Weatherlight|95|U|{3}{R}{R}|Sorcery|||Cone of Flame deals 1 damage to target creature or player, 2 damage to another target creature or player, and 3 damage to a third target creature or player.|
+Cone of Flame|Weatherlight|95|U|{3}{R}{R}|Sorcery|||Cone of Flame deals 1 damage to any target, 2 damage to another any target, and 3 damage to a third any target.|
Desperate Gambit|Weatherlight|96|U|{R}|Instant|||Choose a source you control and flip a coin. If you win the flip, the next time that source would deal damage this turn, it deals double that damage instead. If you lose the flip, the next time it would deal damage this turn, prevent that damage.|
Dwarven Berserker|Weatherlight|97|C|{1}{R}|Creature - Dwarf Berserker|1|1|Whenever Dwarven Berserker becomes blocked, it gets +3/+0 and gains trample until end of turn.|
Dwarven Thaumaturgist|Weatherlight|98|R|{2}{R}|Creature - Dwarf Shaman|1|2|{tap}: Switch target creature's power and toughness until end of turn.|
@@ -26869,7 +26869,7 @@ Gnarlid Pack|Worldwake|101|C|{1}{G}|Creature - Beast|2|2|Multikicker {1}{G} (
Grappler Spider|Worldwake|102|C|{1}{G}|Creature - Spider|2|1|Reach (This creature can block creatures with flying.)|
Graypelt Hunter|Worldwake|103|C|{3}{G}|Creature - Human Warrior Ally|2|2|Trample$Whenever Graypelt Hunter or another Ally enters the battlefield under your control, you may put a +1/+1 counter on Graypelt Hunter.|
Groundswell|Worldwake|104|C|{G}|Instant|||Target creature gets +2/+2 until end of turn.$Landfall - If you had a land enter the battlefield under your control this turn, that creature gets +4/+4 until end of turn instead.|
-Harabaz Druid|Worldwake|105|R|{1}{G}|Creature - Human Druid Ally|0|1|{tap}: Add X mana of any one color to your mana pool, where X is the number of Allies you control.|
+Harabaz Druid|Worldwake|105|R|{1}{G}|Creature - Human Druid Ally|0|1|{tap}: Add X mana of any one color, where X is the number of Allies you control.|
Joraga Warcaller|Worldwake|106|R|{G}|Creature - Elf Warrior|1|1|Multikicker {1}{G} (You may pay an additional {1}{G} any number of times as you cast this spell.)$Joraga Warcaller enters the battlefield with a +1/+1 counter on it for each time it was kicked.$Other Elf creatures you control get +1/+1 for each +1/+1 counter on Joraga Warcaller.|
Leatherback Baloth|Worldwake|107|U|{G}{G}{G}|Creature - Beast|4|5||
Nature's Claim|Worldwake|108|C|{G}|Instant|||Destroy target artifact or enchantment. Its controller gains 4 life.|
@@ -26895,7 +26895,7 @@ Hedron Rover|Worldwake|125|C|{4}|Artifact Creature - Construct|2|2|Landfall - Wh
Kitesail|Worldwake|126|C|{2}|Artifact - Equipment|||Equipped creature gets +1/+0 and has flying.$Equip {2} ({2}: Attach to target creature you control. Equip only as a sorcery.)|
Lodestone Golem|Worldwake|127|R|{4}|Artifact Creature - Golem|5|3|Nonartifact spells cost {1} more to cast.|
Pilgrim's Eye|Worldwake|128|C|{3}|Artifact Creature - Thopter|1|1|Flying$When Pilgrim's Eye enters the battlefield, you may search your library for a basic land card, reveal it, put it into your hand, then shuffle your library.|
-Razor Boomerang|Worldwake|129|U|{3}|Artifact - Equipment|||Equipped creature has "{tap}, Unattach Razor Boomerang: Razor Boomerang deals 1 damage to target creature or player. Return Razor Boomerang to its owner's hand."$Equip {2}|
+Razor Boomerang|Worldwake|129|U|{3}|Artifact - Equipment|||Equipped creature has "{tap}, Unattach Razor Boomerang: Razor Boomerang deals 1 damage to any target. Return Razor Boomerang to its owner's hand."$Equip {2}|
Loam Lion|Worldwake|13|U|{W}|Creature - Cat|1|1|Loam Lion gets +1/+2 as long as you control a Forest.|
Seer's Sundial|Worldwake|130|R|{4}|Artifact|||Landfall - Whenever a land enters the battlefield under your control, you may pay {2}. If you do, draw a card.|
Walking Atlas|Worldwake|131|C|{2}|Artifact Creature - Construct|1|1|{tap}: You may put a land card from your hand onto the battlefield.|
@@ -26916,7 +26916,7 @@ Stirring Wildwood|Worldwake|144|R||Land|||Stirring Wildwood enters the battlefie
Tectonic Edge|Worldwake|145|U||Land|||{tap}: Add {C}.${1}, {tap}, Sacrifice Tectonic Edge: Destroy target nonbasic land. Activate this ability only if an opponent controls four or more lands.|
Marshal's Anthem|Worldwake|15|R|{2}{W}{W}|Enchantment|||Multikicker {1}{W} (You may pay an additional {1}{W} any number of times as you cast this spell.)$Creatures you control get +1/+1.$When Marshal's Anthem enters the battlefield, return up to X target creature cards from your graveyard to the battlefield, where X is the number of times Marshal's Anthem was kicked.|
Perimeter Captain|Worldwake|16|U|{W}|Creature - Human Soldier|0|4|Defender$Whenever a creature you control with defender blocks, you may gain 2 life.|
-Refraction Trap|Worldwake|17|U|{3}{W}|Instant - Trap|||If an opponent cast a red instant or sorcery spell this turn, you may pay {W} rather than pay Refraction Trap's mana cost.$Prevent the next 3 damage that a source of your choice would deal to you and/or permanents you control this turn. If damage is prevented this way, Refraction Trap deals that much damage to target creature or player.|
+Refraction Trap|Worldwake|17|U|{3}{W}|Instant - Trap|||If an opponent cast a red instant or sorcery spell this turn, you may pay {W} rather than pay Refraction Trap's mana cost.$Prevent the next 3 damage that a source of your choice would deal to you and/or permanents you control this turn. If damage is prevented this way, Refraction Trap deals that much damage to any target.|
Rest for the Weary|Worldwake|18|C|{1}{W}|Instant|||Target player gains 4 life.$Landfall - If you had a land enter the battlefield under your control this turn, that player gains 8 life instead.|
Ruin Ghost|Worldwake|19|U|{1}{W}|Creature - Spirit|1|1|{W}, {tap}: Exile target land you control, then return it to the battlefield under your control.|
Apex Hawks|Worldwake|2|C|{2}{W}|Creature - Bird|2|2|Multikicker {1}{W} (You may pay an additional {1}{W} any number of times as you cast this spell.)$Flying$Apex Hawks enters the battlefield with a +1/+1 counter on it for each time it was kicked.|
@@ -26981,10 +26981,10 @@ Bazaar Trader|Worldwake|72|R|{1}{R}|Creature - Goblin|1|1|{tap}: Target player g
Bull Rush|Worldwake|73|C|{R}|Instant|||Target creature gets +2/+0 until end of turn.|
Chain Reaction|Worldwake|74|R|{2}{R}{R}|Sorcery|||Chain Reaction deals X damage to each creature, where X is the number of creatures on the battlefield.|
Claws of Valakut|Worldwake|75|C|{1}{R}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+0 for each Mountain you control and has first strike.|
-Comet Storm|Worldwake|76|M|{X}{R}{R}|Instant|||Multikicker {1} (You may pay an additional {1} any number of times as you cast this spell.)$Choose target creature or player, then choose another target creature or player for each time Comet Storm was kicked. Comet Storm deals X damage to each of them.|
+Comet Storm|Worldwake|76|M|{X}{R}{R}|Instant|||Multikicker {1} (You may pay an additional {1} any number of times as you cast this spell.)$Choose any target, then choose another any target for each time Comet Storm was kicked. Comet Storm deals X damage to each of them.|
Cosi's Ravager|Worldwake|77|C|{3}{R}|Creature - Elemental|2|2|Landfall - Whenever a land enters the battlefield under your control, you may have Cosi's Ravager deal 1 damage to target player.|
Crusher Zendikon|Worldwake|78|C|{2}{R}|Enchantment - Aura|||Enchant land$Enchanted land is a 4/2 red Beast creature with trample. It's still a land.$When enchanted land dies, return that card to its owner's hand.|
-Cunning Sparkmage|Worldwake|79|U|{2}{R}|Creature - Human Shaman|0|1|Haste${tap}: Cunning Sparkmage deals 1 damage to target creature or player.|
+Cunning Sparkmage|Worldwake|79|U|{2}{R}|Creature - Human Shaman|0|1|Haste${tap}: Cunning Sparkmage deals 1 damage to any target.|
Iona's Judgment|Worldwake|8|C|{4}{W}|Sorcery|||Exile target creature or enchantment.|
Deathforge Shaman|Worldwake|80|U|{4}{R}|Creature - Ogre Shaman|4|3|Multikicker {R} (You may pay an additional {R} any number of times as you cast this spell.)$When Deathforge Shaman enters the battlefield, it deals damage to target player equal to twice the number of times it was kicked.|
Dragonmaster Outcast|Worldwake|81|M|{R}|Creature - Human Shaman|1|1|At the beginning of your upkeep, if you control six or more lands, put a 5/5 red Dragon creature token with flying onto the battlefield.|
@@ -26995,7 +26995,7 @@ Mordant Dragon|Worldwake|85|R|{3}{R}{R}{R}|Creature - Dragon|5|5|Flying${1}{R}:
Quest for the Goblin Lord|Worldwake|86|U|{R}|Enchantment|||Whenever a Goblin enters the battlefield under your control, you may put a quest counter on Quest for the Goblin Lord.$As long as Quest for the Goblin Lord has five or more quest counters on it, creatures you control get +2/+0.|
Ricochet Trap|Worldwake|87|U|{3}{R}|Instant - Trap|||If an opponent cast a blue spell this turn, you may pay {R} rather than pay Ricochet Trap's mana cost.$Change the target of target spell with a single target.|
Roiling Terrain|Worldwake|88|C|{2}{R}{R}|Sorcery|||Destroy target land, then Roiling Terrain deals damage to that land's controller equal to the number of land cards in that player's graveyard.|
-Rumbling Aftershocks|Worldwake|89|U|{4}{R}|Enchantment|||Whenever you cast a kicked spell, you may have Rumbling Aftershocks deal damage to target creature or player equal to the number of times that spell was kicked.|
+Rumbling Aftershocks|Worldwake|89|U|{4}{R}|Enchantment|||Whenever you cast a kicked spell, you may have Rumbling Aftershocks deal damage to any target equal to the number of times that spell was kicked.|
Join the Ranks|Worldwake|9|C|{3}{W}|Instant|||Put two 1/1 white Soldier Ally creature tokens onto the battlefield.|
Searing Blaze|Worldwake|90|C|{R}{R}|Instant|||Searing Blaze deals 1 damage to target player and 1 damage to target creature that player controls.$Landfall - If you had a land enter the battlefield under your control this turn, Searing Blaze deals 3 damage to that player and 3 damage to that creature instead.|
Skitter of Lizards|Worldwake|91|C|{R}|Creature - Lizard|1|1|Multikicker {1}{R} (You may pay an additional {1}{R} any number of times as you cast this spell.)$Haste$Skitter of Lizards enters the battlefield with a +1/+1 counter on it for each time it was kicked.|
@@ -27008,15 +27008,15 @@ Bestial Menace|Worldwake|97|U|{3}{G}{G}|Sorcery|||Put a 1/1 green Snake creature
Canopy Cover|Worldwake|98|U|{1}{G}|Enchantment - Aura|||Enchant creature$Enchanted creature can't be blocked except by creatures with flying or reach.$Enchanted creature can't be the target of spells or abilities your opponents control.|
Explore|Worldwake|99|C|{1}{G}|Sorcery|||You may play an additional land this turn.$Draw a card.|
Wood Elves|WPN Gateway|1|Special|{2}{G}|Creature � Elf Scout|1|1|When Wood Elves enters the battlefield, search your library for a Forest card and put that card onto the battlefield. Then shuffle your library.|
-Icatian Javelineers|WPN Gateway|2|Special|{W}|Creature � Human Soldier|1|1|Icatian Javelineers enters the battlefield with a javelin counter on it.${T}, Remove a javelin counter from Icatian Javelineers: Icatian Javelineers deals 1 damage to target creature or player.|
-Fiery Temper|WPN Gateway|3|Special|{1}{R}{R}|Instant|||Fiery Temper deals 3 damage to target creature or player.$Madness {R} (If you discard this card, you may cast it for its madness cost instead of putting it into your graveyard.)|
+Icatian Javelineers|WPN Gateway|2|Special|{W}|Creature � Human Soldier|1|1|Icatian Javelineers enters the battlefield with a javelin counter on it.${T}, Remove a javelin counter from Icatian Javelineers: Icatian Javelineers deals 1 damage to any target.|
+Fiery Temper|WPN Gateway|3|Special|{1}{R}{R}|Instant|||Fiery Temper deals 3 damage to any target.$Madness {R} (If you discard this card, you may cast it for its madness cost instead of putting it into your graveyard.)|
Boomerang|WPN Gateway|4|Special|{U}{U}|Instant|||Return target permanent to its owner's hand.|
Calciderm|WPN Gateway|5|Special|{2}{W}{W}|Creature � Beast|5|5|Shroud (This creature can't be the target of spells or abilities.)$Vanishing 4 (This permanent enters the battlefield with four time counters on it. At the beginning of your upkeep, remove a time counter from it. When the last is removed, sacrifice it.)|
Reckless Wurm|WPN Gateway|6|Special|{3}{R}{R}|Creature � Wurm|4|4|Trample$Madness {2}{R} (If you discard this card, you may cast it for its madness cost instead of putting it into your graveyard.)|
Yixlid Jailer|WPN Gateway|7|Special|{1}{B}|Creature � Zombie Wizard|2|1|Cards in graveyards lose all abilities.|
Zoetic Cavern|WPN Gateway|8|Special||Land|||{T}: Add {C}.$Morph {2} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
Llanowar Elves|WPN Gateway|9|Special|{G}|Creature � Elf Druid|1|1|{T}: Add {G}.|
-Mogg Fanatic|WPN Gateway|10|Special|{R}|Creature � Goblin|1|1|Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to target creature or player.|
+Mogg Fanatic|WPN Gateway|10|Special|{R}|Creature � Goblin|1|1|Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to any target.|
Mind Stone|WPN Gateway|11|Special|{2}|Artifact|||{T}: Add {C}.${1}, {T}, Sacrifice Mind Stone: Draw a card.|
Dauntless Dourbark|WPN Gateway|12|Special|{3}{G}|Creature � Treefolk Warrior|*|*|Dauntless Dourbark's power and toughness are each equal to the number of Forests you control plus the number of Treefolk you control.$Dauntless Dourbark has trample as long as you control another Treefolk.|
Lava Axe|WPN Gateway|13|Special|{4}{R}|Sorcery|||Lava Axe deals 5 damage to target player.|
@@ -27048,9 +27048,9 @@ Kalastria Highborn|WPN Gateway|39|Special|{B}{B}|Creature � Vampire Shaman|2|2
Syphon Mind|WPN Gateway|40|Special|{3}{B}|Sorcery|||Each other player discards a card. You draw a card for each card discarded this way.|
Pathrazer of Ulamog|WPN Gateway|46|Special|{11}|Creature � Eldrazi|9|9|Annihilator 3 (Whenever this creature attacks, defending player sacrifices three permanents.)$Pathrazer of Ulamog can't be blocked except by three or more creatures.|
Curse of Wizardry|WPN Gateway|47|Special|{2}{B}{B}|Enchantment|||As Curse of Wizardry enters the battlefield, choose a color.$Whenever a player casts a spell of the chosen color, that player loses 1 life.|
-Staggershock|WPN Gateway|48|Special|{2}{R}|Instant|||Staggershock deals 2 damage to target creature or player.$Rebound (If you cast this spell from your hand, exile it as it resolves. At the beginning of your next upkeep, you may cast this card from exile without paying its mana cost.)|
+Staggershock|WPN Gateway|48|Special|{2}{R}|Instant|||Staggershock deals 2 damage to any target.$Rebound (If you cast this spell from your hand, exile it as it resolves. At the beginning of your next upkeep, you may cast this card from exile without paying its mana cost.)|
Deathless Angel|WPN Gateway|49|Special|{4}{W}{W}|Creature � Angel|5|7|Flying${W}{W}: Target creature gains indestructible until end of turn.|
-Fling|WPN Gateway|50|Special|{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.|
+Fling|WPN Gateway|50|Special|{1}{R}|Instant|||As an additional cost to cast Fling, sacrifice a creature.$Fling deals damage equal to the sacrificed creature's power to any target.|
Sylvan Ranger|WPN Gateway|51|Special|{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.|
Plague Stinger|WPN Gateway|59|Special|{1}{B}|Creature � Insect Horror|1|1|Flying$Infect (This creature deals damage to creatures in the form of -1/-1 counters and to players in the form of poison counters.)|
Golem's Heart|WPN Gateway|60|Special|{2}|Artifact|||Whenever a player casts an artifact spell, you may gain 1 life.|
@@ -27058,11 +27058,11 @@ Skinrender|WPN Gateway|63|Special|{2}{B}{B}|Creature � Zombie|3|3|When Skinren
Master's Call|WPN Gateway|64|Special|{2}{W}|Instant|||Put two 1/1 colorless Myr artifact creature tokens onto the battlefield.|
Plague Myr|WPN Gateway|65|Special|{2}|Artifact Creature � Myr|1|1|Infect (This creature deals damage to creatures in the form of -1/-1 counters and to players in the form of poison counters.)${T}: Add {C}.|
Signal Pest|WPN Gateway|66|Special|{1}|Artifact Creature � Pest|0|1|Battle cry (Whenever this creature attacks, each other attacking creature gets +1/+0 until end of turn.)$Signal Pest can't be blocked except by creatures with flying or reach.|
-Fling|WPN Gateway|69|Special|{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.|
+Fling|WPN Gateway|69|Special|{1}{R}|Instant|||As an additional cost to cast Fling, sacrifice a creature.$Fling deals damage equal to the sacrificed creature's power to any target.|
Sylvan Ranger|WPN Gateway|70|Special|{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.|
Vault Skirge|WPN Gateway|71|Special|{1}{BP}|Artifact Creature � Imp|1|1|({BP} can be paid with either {B} or 2 life.)$Flying$Lifelink (Damage dealt by this creature also causes you to gain that much life.)|
Maul Splicer|WPN Gateway|72|Special|{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.|
-Shrine of Burning Rage|WPN Gateway|73|Special|{2}|Artifact|||At the beginning of your upkeep or whenever you cast a red spell, put a charge counter on Shrine of Burning Rage.${3}, {T}, Sacrifice Shrine of Burning Rage: Shrine of Burning Rage deals damage equal to the number of charge counters on it to target creature or player.|
+Shrine of Burning Rage|WPN Gateway|73|Special|{2}|Artifact|||At the beginning of your upkeep or whenever you cast a red spell, put a charge counter on Shrine of Burning Rage.${3}, {T}, Sacrifice Shrine of Burning Rage: Shrine of Burning Rage deals damage equal to the number of charge counters on it to any target.|
Tormented Soul|WPN Gateway|76|Special|{B}|Creature � Spirit|1|1|Tormented Soul can't block and can't be blocked.|
Auramancer|WPN Gateway|77|Special|{2}{W}|Creature � Human Wizard|2|2|When Auramancer enters the battlefield, you may return target enchantment card from your graveyard to your hand.|
Circle of Flame|WPN Gateway|78|Special|{1}{R}|Enchantment|||Whenever a creature without flying attacks you or a planeswalker you control, Circle of Flame deals 1 damage to that creature.|
@@ -27086,7 +27086,7 @@ Quest for the Gravelord|Zendikar|108|U|{B}|Enchantment|||Whenever a creature die
Ravenous Trap|Zendikar|109|U|{2}{B}{B}|Instant - Trap|||If an opponent had three or more cards put into his or her graveyard from anywhere this turn, you may pay {0} rather than pay Ravenous Trap's mana cost.$Exile all cards from target player's graveyard.|
Emeria Angel|Zendikar|11|R|{2}{W}{W}|Creature - Angel|3|3|Flying$Landfall - Whenever a land enters the battlefield under your control, you may put a 1/1 white Bird creature token with flying onto the battlefield.|
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.|
-Sorin Markov|Zendikar|111|M|{3}{B}{B}{B}|Legendary Planeswalker - Sorin|||+2: Sorin Markov deals 2 damage to target creature or player and you gain 2 life.$-3: Target opponent's life total becomes 10.$-7: You control target player during that player's next turn.|
+Sorin Markov|Zendikar|111|M|{3}{B}{B}{B}|Legendary Planeswalker - Sorin|||+2: Sorin Markov deals 2 damage to any target and you gain 2 life.$-3: Target opponent's life total becomes 10.$-7: You control target player during that player's next turn.|
Soul Stair Expedition|Zendikar|112|C|{B}|Enchantment|||Landfall - Whenever a land enters the battlefield under your control, you may put a quest counter on Soul Stair Expedition.$Remove three quest counters from Soul Stair Expedition and sacrifice it: Return up to two target creature cards from your graveyard to your hand.|
Surrakar Marauder|Zendikar|113|C|{1}{B}|Creature - Surrakar|2|1|Landfall - Whenever a land enters the battlefield under your control, Surrakar Marauder gains intimidate until end of turn. (It can't be blocked except by artifact creatures and/or creatures that share a color with it.)|
Vampire Hexmage|Zendikar|114|U|{B}{B}|Creature - Vampire Shaman|2|1|First strike$Sacrifice Vampire Hexmage: Remove all counters from target permanent.|
@@ -27094,11 +27094,11 @@ Vampire Lacerator|Zendikar|115|C|{B}|Creature - Vampire Warrior|2|2|At the begin
Vampire Nighthawk|Zendikar|116|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.)|
Vampire's Bite|Zendikar|117|C|{B}|Instant|||Kicker {2}{B} (You may pay an additional {2}{B} as you cast this spell.)$Target creature gets +3/+0 until end of turn. If Vampire's Bite was kicked, that creature gains lifelink until end of turn. (Damage dealt by the creature also causes its controller to gain that much life.)|
Bladetusk Boar|Zendikar|118|C|{3}{R}|Creature - Boar|3|2|Intimidate (This creature can't be blocked except by artifact creatures and/or creatures that share a color with it.)|
-Burst Lightning|Zendikar|119|C|{R}|Instant|||Kicker {4} (You may pay an additional {4} as you cast this spell.)$Burst Lightning deals 2 damage to target creature or player. If Burst Lightning was kicked, it deals 4 damage to that creature or player instead.|
+Burst Lightning|Zendikar|119|C|{R}|Instant|||Kicker {4} (You may pay an additional {4} as you cast this spell.)$Burst Lightning deals 2 damage to any target. If Burst Lightning was kicked, it deals 4 damage to that creature or player instead.|
Felidar Sovereign|Zendikar|12|M|{4}{W}{W}|Creature - Cat Beast|4|6|Vigilance, lifelink$At the beginning of your upkeep, if you have 40 or more life, you win the game.|
-Chandra Ablaze|Zendikar|120|M|{4}{R}{R}|Legendary Planeswalker - Chandra|||+1: Discard a card. If a red card is discarded this way, Chandra Ablaze deals 4 damage to target creature or player.$-2: Each player discards his or her hand, then draws three cards.$-7: Cast any number of red instant and/or sorcery cards from your graveyard without paying their mana costs.|
+Chandra Ablaze|Zendikar|120|M|{4}{R}{R}|Legendary Planeswalker - Chandra|||+1: Discard a card. If a red card is discarded this way, Chandra Ablaze deals 4 damage to any target.$-2: Each player discards his or her hand, then draws three cards.$-7: Cast any number of red instant and/or sorcery cards from your graveyard without paying their mana costs.|
Demolish|Zendikar|121|C|{3}{R}|Sorcery|||Destroy target artifact or land.|
-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.|
+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 any target.|
Elemental Appeal|Zendikar|123|R|{R}{R}{R}{R}|Sorcery|||Kicker {5} (You may pay an additional {5} as you cast this spell.)$Put a 7/1 red Elemental creature token with trample and haste onto the battlefield. Exile it at the beginning of the next end step. If Elemental Appeal was kicked, that creature gets +7/+0 until end of turn.|
Geyser Glider|Zendikar|124|U|{3}{R}{R}|Creature - Elemental Beast|4|4|Landfall - Whenever a land enters the battlefield under your control, Geyser Glider gains flying until end of turn.|
Goblin Bushwhacker|Zendikar|125|C|{R}|Creature - Goblin Warrior|1|1|Kicker {R} (You may pay an additional {R} as you cast this spell.)$When Goblin Bushwhacker enters the battlefield, if it was kicked, creatures you control get +1/+0 and gain haste until end of turn.|
@@ -27120,7 +27120,7 @@ Murasa Pyromancer|Zendikar|139|U|{4}{R}{R}|Creature - Human Shaman Ally|3|2|When
Journey to Nowhere|Zendikar|14|C|{1}{W}|Enchantment|||When Journey to Nowhere enters the battlefield, exile target creature.$When Journey to Nowhere leaves the battlefield, return the exiled card to the battlefield under its owner's control.|
Obsidian Fireheart|Zendikar|140|M|{1}{R}{R}{R}|Creature - Elemental|4|4|{1}{R}{R}: Put a blaze counter on target land without a blaze counter on it. For as long as that land has a blaze counter on it, it has "At the beginning of your upkeep, this land deals 1 damage to you." (The land continues to burn after Obsidian Fireheart has left the battlefield.)|
Plated Geopede|Zendikar|141|C|{1}{R}|Creature - Insect|1|1|First strike$Landfall - Whenever a land enters the battlefield under your control, Plated Geopede gets +2/+2 until end of turn.|
-Punishing Fire|Zendikar|142|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.|
+Punishing Fire|Zendikar|142|U|{1}{R}|Instant|||Punishing Fire deals 2 damage to any target.$Whenever an opponent gains life, you may pay {R}. If you do, return Punishing Fire from your graveyard to your hand.|
Pyromancer Ascension|Zendikar|143|R|{1}{R}|Enchantment|||Whenever you cast an instant or sorcery spell that has the same name as a card in your graveyard, you may put a quest counter on Pyromancer Ascension.$Whenever you cast an instant or sorcery spell while Pyromancer Ascension has two or more quest counters on it, you may copy that spell. You may choose new targets for the copy.|
Quest for Pure Flame|Zendikar|144|U|{R}|Enchantment|||Whenever a source you control deals damage to an opponent, you may put a quest counter on Quest for Pure Flame.$Remove four quest counters from Quest for Pure Flame and sacrifice it: If any source you control would deal damage to a creature or player this turn, it deals double that damage to that creature or player instead.|
Ruinous Minotaur|Zendikar|145|C|{1}{R}{R}|Creature - Minotaur Warrior|5|2|Whenever Ruinous Minotaur deals damage to an opponent, sacrifice a land.|
@@ -27129,7 +27129,7 @@ Seismic Shudder|Zendikar|147|C|{1}{R}|Instant|||Seismic Shudder deals 1 damage t
Shatterskull Giant|Zendikar|148|C|{2}{R}{R}|Creature - Giant Warrior|4|3||
Slaughter Cry|Zendikar|149|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.)|
Kabira Evangel|Zendikar|15|R|{2}{W}|Creature - Human Cleric Ally|2|3|Whenever Kabira Evangel or another Ally enters the battlefield under your control, you may choose a color. If you do, Allies you control gain protection from the chosen color until end of turn.|
-Spire Barrage|Zendikar|150|C|{4}{R}|Sorcery|||Spire Barrage deals damage to target creature or player equal to the number of Mountains you control.|
+Spire Barrage|Zendikar|150|C|{4}{R}|Sorcery|||Spire Barrage deals damage to any target equal to the number of Mountains you control.|
Torch Slinger|Zendikar|151|C|{2}{R}|Creature - Goblin Shaman|2|2|Kicker {1}{R} (You may pay an additional {1}{R} as you cast this spell.)$When Torch Slinger enters the battlefield, if it was kicked, it deals 2 damage to target creature.|
Tuktuk Grunts|Zendikar|152|C|{4}{R}|Creature - Goblin Warrior Ally|2|2|Haste$Whenever Tuktuk Grunts or another Ally enters the battlefield under your control, you may put a +1/+1 counter on Tuktuk Grunts.|
Unstable Footing|Zendikar|153|U|{R}|Instant|||Kicker {3}{R} (You may pay an additional {3}{R} as you cast this spell.)$Damage can't be prevented this turn. If Unstable Footing was kicked, it deals 5 damage to target player.|
@@ -27148,7 +27148,7 @@ Greenweaver Druid|Zendikar|164|U|{2}{G}|Creature - Elf Druid|1|1|{tap}: Add {G}{
Harrow|Zendikar|165|C|{2}{G}|Instant|||As an additional cost to cast Harrow, sacrifice a land.$Search your library for up to two basic land cards and put them onto the battlefield. Then shuffle your library.|
Joraga Bard|Zendikar|166|C|{3}{G}|Creature - Elf Rogue Ally|1|4|Whenever Joraga Bard or another Ally enters the battlefield under your control, you may have Ally creatures you control gain vigilance until end of turn.|
Khalni Heart Expedition|Zendikar|167|C|{1}{G}|Enchantment|||Landfall - Whenever a land enters the battlefield under your control, you may put a quest counter on Khalni Heart Expedition.$Remove three quest counters from Khalni Heart Expedition and sacrifice it: Search your library for up to two basic land cards, put them onto the battlefield tapped, then shuffle your library.|
-Lotus Cobra|Zendikar|168|M|{1}{G}|Creature - Snake|2|1|Landfall - Whenever a land enters the battlefield under your control, you may add one mana of any color to your mana pool.|
+Lotus Cobra|Zendikar|168|M|{1}{G}|Creature - Snake|2|1|Landfall - Whenever a land enters the battlefield under your control, you may add one mana of any color.|
Mold Shambler|Zendikar|169|C|{3}{G}|Creature - Fungus Beast|3|3|Kicker {1}{G} (You may pay an additional {1}{G} as you cast this spell.)$When Mold Shambler enters the battlefield, if it was kicked, destroy target noncreature permanent.|
Kor Aeronaut|Zendikar|17|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.|
Nissa Revane|Zendikar|170|M|{2}{G}{G}|Legendary Planeswalker - Nissa|||+1: Search your library for a card named Nissa's Chosen and put it onto the battlefield. Then shuffle your library.$+1: You gain 2 life for each Elf you control.$-7: Search your library for any number of Elf creature cards and put them onto the battlefield. Then shuffle your library.|
@@ -27180,7 +27180,7 @@ Vines of Vastwood|Zendikar|193|C|{G}|Instant|||Kicker {G} (You may pay an add
Zendikar Farguide|Zendikar|194|C|{4}{G}|Creature - Elemental|3|3|Forestwalk|
Adventuring Gear|Zendikar|195|C|{1}|Artifact - Equipment|||Landfall - Whenever a land enters the battlefield under your control, equipped creature gets +2/+2 until end of turn.$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)|
Blade of the Bloodchief|Zendikar|196|R|{1}|Artifact - Equipment|||Whenever a creature dies, put a +1/+1 counter on equipped creature. If equipped creature is a Vampire, put two +1/+1 counters on it instead.$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.)|
+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 any target."$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)|
Carnage Altar|Zendikar|198|U|{2}|Artifact|||{3}, Sacrifice a creature: Draw a card.|
Eldrazi Monument|Zendikar|199|M|{5}|Artifact|||Creatures you control get +1/+1, have flying, and are indestructible.$At the beginning of your upkeep, sacrifice a creature. If you can't, sacrifice Eldrazi Monument.|
Arrow Volley Trap|Zendikar|2|U|{3}{W}{W}|Instant - Trap|||If four or more creatures are attacking, you may pay {1}{W} rather than pay Arrow Volley Trap's mana cost.$Arrow Volley Trap deals 5 damage divided as you choose among any number of target attacking creatures.|
@@ -27190,7 +27190,7 @@ Expedition Map|Zendikar|201|C|{1}|Artifact|||{2}, {tap}, Sacrifice Expedition Ma
Explorer's Scope|Zendikar|202|C|{1}|Artifact - Equipment|||Whenever equipped creature attacks, look at the top card of your library. If it's a land card, you may put it onto the battlefield tapped.$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery.)|
Grappling Hook|Zendikar|203|R|{4}|Artifact - Equipment|||Equipped creature has double strike.$Whenever equipped creature attacks, you may have target creature block it this turn if able.$Equip {4}|
Hedron Scrabbler|Zendikar|204|C|{2}|Artifact Creature - Construct|1|1|Landfall - Whenever a land enters the battlefield under your control, Hedron Scrabbler gets +1/+1 until end of turn.|
-Khalni Gem|Zendikar|205|U|{4}|Artifact|||When Khalni Gem enters the battlefield, return two lands you control to their owner's hand.${tap}: Add two mana of any one color to your mana pool.|
+Khalni Gem|Zendikar|205|U|{4}|Artifact|||When Khalni Gem enters the battlefield, return two lands you control to their owner's hand.${tap}: Add two mana of any one color.|
Spidersilk Net|Zendikar|206|C|{0}|Artifact - Equipment|||Equipped creature gets +0/+2 and has reach. (It can block creatures with flying.)$Equip {2} ({2}: Attach to target creature you control. Equip only as a sorcery.)|
Stonework Puma|Zendikar|207|C|{3}|Artifact Creature - Cat Ally|2|2||
Trailblazer's Boots|Zendikar|208|U|{2}|Artifact - Equipment|||Equipped creature has nonbasic landwalk. (It's unblockable as long as defending player controls a nonbasic land.)$Equip {2}|
@@ -27215,7 +27215,7 @@ Sejiri Refuge|Zendikar|224|U||Land|||Sejiri Refuge enters the battlefield tapped
Soaring Seacliff|Zendikar|225|C||Land|||Soaring Seacliff enters the battlefield tapped.$When Soaring Seacliff enters the battlefield, target creature gains flying until end of turn.${tap}: Add {U}.|
Teetering Peaks|Zendikar|226|C||Land|||Teetering Peaks enters the battlefield tapped.$When Teetering Peaks enters the battlefield, target creature gets +2/+0 until end of turn.${tap}: Add {R}.|
Turntimber Grove|Zendikar|227|C||Land|||Turntimber Grove enters the battlefield tapped.$When Turntimber Grove enters the battlefield, target creature gets +1/+1 until end of turn.${tap}: Add {G}.|
-Valakut, the Molten Pinnacle|Zendikar|228|R||Land|||Valakut, the Molten Pinnacle enters the battlefield tapped.$Whenever a Mountain enters the battlefield under your control, if you control at least five other Mountains, you may have Valakut, the Molten Pinnacle deal 3 damage to target creature or player.${tap}: Add {R}.|
+Valakut, the Molten Pinnacle|Zendikar|228|R||Land|||Valakut, the Molten Pinnacle enters the battlefield tapped.$Whenever a Mountain enters the battlefield under your control, if you control at least five other Mountains, you may have Valakut, the Molten Pinnacle deal 3 damage to any target.${tap}: Add {R}.|
Verdant Catacombs|Zendikar|229|R||Land|||{tap}, Pay 1 life, Sacrifice Verdant Catacombs: Search your library for a Swamp or Forest card and put it onto the battlefield. Then shuffle your library.|
Kor Skyfisher|Zendikar|23|C|{1}{W}|Creature - Kor Soldier|2|3|Flying$When Kor Skyfisher enters the battlefield, return a permanent you control to its owner's hand.|
Plains|Zendikar|230|L||Basic Land - Plains|||W|
@@ -27250,7 +27250,7 @@ Pillarfield Ox|Zendikar|31|C|{3}{W}|Creature - Ox|2|4||
Pitfall Trap|Zendikar|32|U|{2}{W}|Instant - Trap|||If exactly one creature is attacking, you may pay {W} rather than pay Pitfall Trap's mana cost.$Destroy target attacking creature without flying.|
Quest for the Holy Relic|Zendikar|33|U|{W}|Enchantment|||Whenever you cast a creature spell, you may put a quest counter on Quest for the Holy Relic.$Remove five quest counters from Quest for the Holy Relic and sacrifice it: Search your library for an Equipment card, put it onto the battlefield, and attach it to a creature you control. Then shuffle your library.|
Shepherd of the Lost|Zendikar|34|U|{4}{W}|Creature - Angel|3|3|Flying, first strike, vigilance|
-Shieldmate's Blessing|Zendikar|35|C|{W}|Instant|||Prevent the next 3 damage that would be dealt to target creature or player this turn.|
+Shieldmate's Blessing|Zendikar|35|C|{W}|Instant|||Prevent the next 3 damage that would be dealt to any target this turn.|
Steppe Lynx|Zendikar|36|C|{W}|Creature - Cat|0|1|Landfall - Whenever a land enters the battlefield under your control, Steppe Lynx gets +2/+2 until end of turn.|
Sunspring Expedition|Zendikar|37|C|{W}|Enchantment|||Landfall - Whenever a land enters the battlefield under your control, you may put a quest counter on Sunspring Expedition.$Remove three quest counters from Sunspring Expedition and sacrifice it: You gain 8 life.|
Windborne Charge|Zendikar|38|U|{2}{W}{W}|Sorcery|||Two target creatures you control each get +2/+2 and gain flying until end of turn.|
@@ -27382,7 +27382,7 @@ Vampire Nighthawk|Duel Decks: Zendikar vs. Eldrazi|58|U|{1}{B}{B}|Creature - Vam
Emrakul's Hatcher|Duel Decks: Zendikar vs. Eldrazi|59|C|{4}{R}|Creature - Eldrazi Drone|3|3|When Emrakul's Hatcher enters the battlefield, put three 0/1 colorless Eldrazi Spawn creature tokens onto the battlefield. They have "Sacrifice this creature: Add {C}."|
Forked Bolt|Duel Decks: Zendikar vs. Eldrazi|60|U|{R}|Sorcery|||Forked Bolt deals 2 damage divided as you choose among one or two target creatures and/or players.|
Hellion Eruption|Duel Decks: Zendikar vs. Eldrazi|61|R|{5}{R}|Sorcery|||Sacrifice all creatures you control, then put that many 4/4 red Hellion creature tokens onto the battlefield.|
-Magmaw|Duel Decks: Zendikar vs. Eldrazi|62|R|{3}{R}{R}|Creature - Elemental|4|4|{1}, Sacrifice a nonland permanent: Magmaw deals 1 damage to target creature or player.|
+Magmaw|Duel Decks: Zendikar vs. Eldrazi|62|R|{3}{R}{R}|Creature - Elemental|4|4|{1}, Sacrifice a nonland permanent: Magmaw deals 1 damage to any target.|
Torch Slinger|Duel Decks: Zendikar vs. Eldrazi|63|C|{2}{R}|Creature - Goblin Shaman|2|2|Kicker {1}{R} (You may pay an additional {1}{R} as you cast this spell.)$When Torch Slinger enters the battlefield, if it was kicked, it deals 2 damage to target creature.|
Forerunner of Slaughter|Duel Decks: Zendikar vs. Eldrazi|64|U|{B}{R}|Creature - Eldrazi Drone|3|2|Devoid (This card has no color.)${1}: Target colorless creature gains haste until end of turn.|
Mind Stone|Duel Decks: Zendikar vs. Eldrazi|65|U|{2}|Artifact|||{tap}: Add {C}.${1}, {tap}, Sacrifice Mind Stone: Draw a card.|
@@ -27523,9 +27523,9 @@ Voracious Null|Battle for Zendikar|125|C|{2}{B}|Creature - Zombie|2|2|{1}{B}, Sa
Wasteland Strangler|Battle for Zendikar|102|R|{2}{B}|Creature - Eldrazi Processor|3|2|Devoid (This card has no color.)$When Wasteland Strangler enters the battlefield, you may put a card an opponent owns from exile into that player's graveyard. If you do, target creature gets -3/-3 until end of turn.|
Zulaport Cutthroat|Battle for Zendikar|126|U|{1}{B}|Creature - Human Rogue Ally|1|1|Whenever Zulaport Cutthroat or another creature you control dies, each opponent loses 1 life and you gain 1 life.|
Akoum Firebird|Battle for Zendikar|138|M|{2}{R}{R}|Creature - Phoenix|3|3|Flying, haste$Akoum Firebird attacks each turn if able.$Landfall � Whenever a land enters the battlefield under your control, you may pay {4}{R}{R}. If you do, return Akoum Firebird from your graveyard to the battlefield.|
-Akoum Hellkite|Battle for Zendikar|139|R|{4}{R}{R}|Creature - Dragon|4|4|Flying$Landfall � Whenever a land enters the battlefield under your control, Akoum Hellkite deals 1 damage to target creature or player. If that land was a Mountain, Akoum Hellkite deals 2 damage to that creature or player instead.|
+Akoum Hellkite|Battle for Zendikar|139|R|{4}{R}{R}|Creature - Dragon|4|4|Flying$Landfall � Whenever a land enters the battlefield under your control, Akoum Hellkite deals 1 damage to any target. If that land was a Mountain, Akoum Hellkite deals 2 damage to that creature or player instead.|
Akoum Stonewaker|Battle for Zendikar|140|U|{1}{R}|Creature - Human Shaman|2|1|Landfall � Whenever a land enters the battlefield under your control, you may pay {2}{R}. If you do, put a 3/1 red Elemental creature token with trample and haste onto the battlefield. Exile that token at the beginning of the next end step.|
-Barrage Tyrant|Battle for Zendikar|127|R|{4}{R}|Creature - Eldrazi|5|3|Devoid (This card has no color.)${2}{R}, Sacrifice another colorless creature: Barrage Tyrant deals damage equal to the sacrificed creature's power to target creature or player.|
+Barrage Tyrant|Battle for Zendikar|127|R|{4}{R}|Creature - Eldrazi|5|3|Devoid (This card has no color.)${2}{R}, Sacrifice another colorless creature: Barrage Tyrant deals damage equal to the sacrificed creature's power to any target.|
Belligerent Whiptail|Battle for Zendikar|141|C|{3}{R}|Creature - Wurm|4|2|Landfall � Whenever a land enters the battlefield under your control, Belligerent Whiptail gains first strike until end of turn.|
Boiling Earth|Battle for Zendikar|142|C|{1}{R}|Sorcery|||Boiling Earth deals 1 damage to each creature your opponents control.$Awaken 4�{6}{R} (If you cast this spell for 5U, also put four +1/+1 counters on target land you control and it becomes a 0/0 Elemental creature with haste. It's still a land.)|
Chasm Guide|Battle for Zendikar|143|U|{3}{R}|Creature - Goblin Scout Ally|3|2|Rally � Whenever Chasm Guide or another Ally enters the battlefield under your control, creatures you control gain haste until end of turn.|
@@ -27536,7 +27536,7 @@ Goblin War Paint|Battle for Zendikar|146|C|{1}{R}|Enchantment - Aura|||Enchant c
Kozilek's Sentinel|Battle for Zendikar|129|C|{1}{R}|Creature - Eldrazi Drone|1|4|Devoid (This card has no color.)$Whenever you cast a colorless spell, Kozilek's Sentinel gets +1/+0 until end of turn.|
Lavastep Raider|Battle for Zendikar|147|C|{R}|Creature - Goblin Warrior|1|1|{2}{R}: Lavastep Raider gets +2/+0 until end of turn.|
Makindi Sliderunner|Battle for Zendikar|148|C|{1}{R}|Creature - Beast|2|1|Trample$Landfall � Whenever a land enters the battlefield under your control, Makindi Sliderunner gets +1/+1 until end of turn.|
-Molten Nursery|Battle for Zendikar|130|U|{2}{R}|Enchantment|||Devoid (This card has no color.)$Whenever you cast a colorless spell, Molten Nursery deals 1 damage to target creature or player.|
+Molten Nursery|Battle for Zendikar|130|U|{2}{R}|Enchantment|||Devoid (This card has no color.)$Whenever you cast a colorless spell, Molten Nursery deals 1 damage to any target.|
Nettle Drone|Battle for Zendikar|131|C|{2}{R}|Creature - Eldrazi Drone|3|1|Devoid (This card has no color.)${t}: Nettle Drone deals 1 damage to each opponent.$Whenever you cast a colorless spell, untap Nettle Drone.|
Ondu Champion|Battle for Zendikar|149|C|{2}{R}{R}|Creature - Minotaur Warrior Ally|4|3|Rally � Whenever Ondu Champion or another Ally enters the battlefield under your control, creatures you control gain trample until end of turn.|
Outnumber|Battle for Zendikar|150|C|{R}|Instant|||Outnumber deals damage to target creature equal to the number of creatures you control.|
@@ -27549,16 +27549,16 @@ Serpentine Spike|Battle for Zendikar|133|R|{5}{R}{R}|Sorcery|||Devoid (This c
Shatterskull Recruit|Battle for Zendikar|155|C|{3}{R}{R}|Creature - Giant Warrior Ally|4|4|Menace|
Stonefury|Battle for Zendikar|156|C|{3}{R}{R}|Instant|||Stonefury deals damage to target creature equal to the number of lands you control.|
Sure Strike|Battle for Zendikar|157|C|{1}{R}|Instant|||Target creature gets +3/+0 and gains first strike until end of turn.|
-Touch of the Void|Battle for Zendikar|134|C|{2}{R}|Sorcery|||Devoid (This card has no color.)$Touch of the Void deals 3 damage to target creature or player. If a creature dealt damage this way would die this turn, exile it instead.|
+Touch of the Void|Battle for Zendikar|134|C|{2}{R}|Sorcery|||Devoid (This card has no color.)$Touch of the Void deals 3 damage to any target. If a creature dealt damage this way would die this turn, exile it instead.|
Tunneling Geopede|Battle for Zendikar|158|U|{2}{R}|Creature - Insect|3|2|Landfall - Whenever a land enters the battlefield under your control, Tunneling Geopede deals 1 damage to each opponent.|
Turn Against|Battle for Zendikar|135|U|{4}{R}|Instant|||Devoid (This card has no color.)$Gain control of target creature until end of turn. Untap that creature. It gains haste until end of turn.|
-Valakut Invoker|Battle for Zendikar|159|C|{2}{R}|Creature - Human Shaman|2|3|{8}: Valakut Invoker deals 3 damage to target creature or player.|
+Valakut Invoker|Battle for Zendikar|159|C|{2}{R}|Creature - Human Shaman|2|3|{8}: Valakut Invoker deals 3 damage to any target.|
Valakut Predator|Battle for Zendikar|160|C|{2}{R}|Creature - Elemental|2|2|Landfall - Whenever a land enters the battlefield under your control, Valakut Predator gets +2/+2 until end of turn.|
Vestige of Emrakul|Battle for Zendikar|136|C|{3}{R}|Creature - Eldrazi Drone|3|4|Devoid (This card has no color.)$Trample|
Vile Aggregate|Battle for Zendikar|137|U|{2}{R}|Creature - Eldrazi Drone|0|5|Devoid (This card has no color.)$Vile Aggregate's power is equal to the number of colorless creatures you control.$Trample$Ingest (Whenever this creature deals combat damage to a player, that player exiles the top card of his or her library.)|
Volcanic Upheaval|Battle for Zendikar|161|C|{3}{R}|Instant|||Destroy target land.|
Zada, Hedron Grinder|Battle for Zendikar|162|R|{3}{R}|Legendary Creature - Goblin Ally|3|3|Whenever you cast an instant or sorcery spell that targets only Zada, Hedron Grinder, copy that spell for each other creature you control that the spell could target. Each copy targets a different one of those creatures.|
-Beastcaller Savant|Battle for Zendikar|170|R|{1}{G}|Creature - Elf Shaman Ally|1|1|Haste${T}: Add one mana of any color to your mana pool. Spend this mana only to cast a creature spell.|
+Beastcaller Savant|Battle for Zendikar|170|R|{1}{G}|Creature - Elf Shaman Ally|1|1|Haste${T}: Add one mana of any color. Spend this mana only to cast a creature spell.|
Blisterpod|Battle for Zendikar|163|C|{G}|Creature - Eldrazi Drone|1|1|Devoid (This card has no color.)$When Blisterpod dies, put a 1/1 colorless Eldrazi Scion creature token onto the battlefield. It has "Sacrifice this creature: Add {C}."|
Brood Monitor|Battle for Zendikar|164|U|{4}{G}{G}|Creature - Eldrazi Drone|3|3|Devoid (This card has no color.)$When Brood Monitor enters the battlefield, put three 1/1 colorless Eldrazi Scion creature tokens onto the battlefield. They have "Sacrifice this creature: Add {C}."|
Broodhunter Wurm|Battle for Zendikar|171|C|{3}{G}|Creature - Wurm|4|3||
@@ -27570,7 +27570,7 @@ Giant Mantis|Battle for Zendikar|173|C|{3}{G}|Creature - Insect|2|4|Reach (Th
Greenwarden of Murasa|Battle for Zendikar|174|M|{4}{G}{G}|Creature - Elemental|5|4|When Greenwarden of Murasa enters the battlefield, you may return target card from your graveyard to your hand.$When Greenwarden of Murasa dies, you may exile it. If you do, you may return target card from your graveyard to your hand.|
Infuse with the Elements|Battle for Zendikar|175|U|{3}{G}|Instant|||Converge - Put X +1/+1 counters on target creature, where X is the number of colors of mana spent to cast Infuse with the Elements. That creature gains trample until end of turn.|
Jaddi Offshoot|Battle for Zendikar|176|U|{G}|Creature - Plant|0|3|Defender$Landfall - Whenever a land enters the battlefield under your control, you gain 1 life.|
-Lifespring Druid|Battle for Zendikar|177|C|{2}{G}|Creature - Elf Druid|2|1|{T}: Add one mana of any color to your mana pool.|
+Lifespring Druid|Battle for Zendikar|177|C|{2}{G}|Creature - Elf Druid|2|1|{T}: Add one mana of any color.|
Murasa Ranger|Battle for Zendikar|178|U|{3}{G}|Creature - Human Warrior|3|3|Landfall - Whenever a land enters the battlefield under your control, you may pay {3}{G}. IF you do, put two +1/+1 counters on Murasa Ranger.|
Natural Connection|Battle for Zendikar|179|C|{2}{G}|Instant|||Search your library for a basic land card, put it onto the battlefield tapped, then shuffle your library.|
Nissa's Renewal|Battle for Zendikar|180|R|{5}{G}|Sorcery|||Search your library for up to three basic land cards, put them onto the battlefield tapped, then shuffle your library. You gain 7 life.|
@@ -27610,7 +27610,7 @@ Kiora, Master of the Depths|Battle for Zendikar|213|M|{2}{G}{U}|Legendary Planes
March from the Tomb|Battle for Zendikar|214|R|{3}{W}{B}|Sorcery|||Return any number of target Ally creature cards with total converted mana cost 8 or less from your graveyard to the battlefield.|
Munda, Ambush Leader|Battle for Zendikar|215|R|{2}{R}{W}|Legendary Creature - Kor Ally|3|4|Haste$Rally � Whenever Munda, Ambush Leader or another Ally enters the battlefield under you control, you may look at the top four cards of your library. If you do, reveal any number of Ally cards from among them, then put those cards on top of your library in any order and the rest on the bottom in any order.|
Noyan Dar, Roil Shaper|Battle for Zendikar|216|R|{3}{W}{U}|Legendary Creature - Merfolk Ally|4|4|Whenever you cast an instant or sorcery spell, you may put three +1/+1 counters on target land you control. If you do, that land becomes a 0/0 Elemental creature with haste that's still a land.|
-Omnath, Locus of Rage|Battle for Zendikar|217|M|{3}{R}{R}{G}{G}|Legendary Creature - Elemental|5|5|Landfall � Whenever a land enters the battlefield under your control, put a 5/5 red and green Elemental creature token onto the battlefield.$Whenever Omnath, Locus of Rage or another Elemental you control dies, Omnath deals 3 damage to target creature or player.|
+Omnath, Locus of Rage|Battle for Zendikar|217|M|{3}{R}{R}{G}{G}|Legendary Creature - Elemental|5|5|Landfall � Whenever a land enters the battlefield under your control, put a 5/5 red and green Elemental creature token onto the battlefield.$Whenever Omnath, Locus of Rage or another Elemental you control dies, Omnath deals 3 damage to any target.|
Resolute Blademaster|Battle for Zendikar|218|U|{3}{R}{W}|Creature - Human Soldier Ally|2|2|Rally � Whenever Resolute Blademaster or another Ally enters the battlefield under your control, creatures you control gain double strike until end of turn.|
Roil Spout|Battle for Zendikar|219|U|{1}{W}{U}|Sorcery|||Put target creature on top of its owner's library.$Awaken 4�{4}{W}{U} (If you cast this spell for {4}{W}{U}, also put four +1/+1 counters on target land you control and it becomes a 0/0 Elemental creature with haste. It's still a land.)|
Sire of Stagnation|Battle for Zendikar|206|M|{4}{U}{B}|Creature - Eldrazi|5|7|Devoid (This card has no color.)$Whenever a land enters the battlefield under an opponent's control, that player exiles the top two cards of his or her library and you draw two cards.|
@@ -27623,10 +27623,10 @@ Hedron Blade|Battle for Zendikar|224|C|{1}|Artifact - Equipment|||Equipped creat
Pathway Arrows|Battle for Zendikar|225|U|{1}|Artifact - Equipment|||Equipped creature has "{2}, {T}: This creature deals 1 damage to target creature. If a colorless creature is dealt damage this way, tap it."$Equip {2}|
Pilgrim's Eye|Battle for Zendikar|226|U|{3}|Artifact Creature - Thopter|1|1|Flying$When Pilgrim's Eye enters the battlefield, you may search your library for a basic land card, reveal it, put it into your hand, then shuffle your library.|
Slab Hammer|Battle for Zendikar|227|U|{2}|Artifact - Equipment|||Whenever equipped creature attacks, you may return a land you control to its owner's hand. If you do, the creature gets +2/+2 until end of turn.$Equip {2}|
-Ally Encampment|Battle for Zendikar|228|R||Land|||{t}: Add {C}.${t}: Add one mana of any color to your mana pool. Spend this mana only to cast an Ally spell.${1}, {t}, Sacrifice Ally Encampment: Return an Ally you control to its owner's hand.|
+Ally Encampment|Battle for Zendikar|228|R||Land|||{t}: Add {C}.${t}: Add one mana of any color. Spend this mana only to cast an Ally spell.${1}, {t}, Sacrifice Ally Encampment: Return an Ally you control to its owner's hand.|
Blighted Cataract|Battle for Zendikar|229|U||Land|||{T}: Add {C}.${5}{U}, {T}, Sacrifice Blighted Cataract: Draw 2 cards.|
Blighted Fen|Battle for Zendikar|230|U||Land|||{T}: Add {C}.${4}{B}, {T}, Sacrifice Blighted Fen: Target opponent sacrifices a creature.|
-Blighted Gorge|Battle for Zendikar|231|U||Land|||{T}: Add {C}.${4}{R}, {T}, Sacrifice Blighted Gorge: Blighted Gorge deals 2 damage to target creature or player.|
+Blighted Gorge|Battle for Zendikar|231|U||Land|||{T}: Add {C}.${4}{R}, {T}, Sacrifice Blighted Gorge: Blighted Gorge deals 2 damage to any target.|
Blighted Steppe|Battle for Zendikar|232|U||Land|||{T}: Add {C}.${3}{W}, {T}, Sacrifice Blighted Steppe: You gain 2 life for each creature you control.|
Blighted Woodland|Battle for Zendikar|233|U||Land|||{T}: Add {C}.${3}{G}, {T}, Sacrifice Blighted Woodland: Search your library for up to two basic land cards and put them onto the battlefield tapped. Then shuffle your library.|
Canopy Vista|Battle for Zendikar|234|R||Land - Forest Plains|||({T}: Add {G} or {W}.)$Canopy Vista enters the battlefield tapped unless you control two or more basic lands.|
@@ -27701,7 +27701,7 @@ Eater of Hope|Commander 2015|123|R|{5}{B}{B}|Creature - Demon|6|4|Flying${B}, Sa
Extractor Demon|Commander 2015|124|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.)|
Fallen Ideal|Commander 2015|125|U|{2}{B}|Enchantment - Aura|||Enchant creature$Enchanted creature has flying and "Sacrifice a creature: This creature gets +2/+1 until end of turn."$When Fallen Ideal is put into a graveyard from the battlefield, return Fallen Ideal to its owner's hand.|
Fate Unraveler|Commander 2015|126|R|{3}{B}|Enchantment Creature - Hag|3|4|Whenever an opponent draws a card, Fate Unraveler deals 1 damage to that player.|
-Gild|Commander 2015|127|R|{3}{B}|Sorcery|||Exile target creature. Put a colorless artifact token named Gold onto the battlefield. It has "Sacrifice this artifact: Add one mana of any color to your mana pool."|
+Gild|Commander 2015|127|R|{3}{B}|Sorcery|||Exile target creature. Put a colorless artifact token named Gold onto the battlefield. It has "Sacrifice this artifact: Add one mana of any color."|
Grave Peril|Commander 2015|128|C|{1}{B}|Enchantment|||When a nonblack creature enters the battlefield, sacrifice Grave Peril. If you do, destroy that creature.|
Nighthowler|Commander 2015|129|R|{1}{B}{B}|Enchantment Creature - Horror|0|0|Bestow {2}{B}{B} (If you cast this card for its bestow cost, it's an Aura spell with enchant creature. It becomes a creature again if it's not attached to a creature.)$Nighthowler and enchanted creature each get +X/+X, where X is the number of creature cards in all graveyards.|
Mirror Match|Commander 2015|13|U|{4}{U}{U}|Instant|||Cast Mirror Match only during the declare blockers step.$For each creature attacking you or a planeswalker you control, put a token that's a copy of that creature onto the battlefield blocking that creature. Exile those tokens at end of combat.|
@@ -27722,7 +27722,7 @@ Borderland Behemoth|Commander 2015|142|R|{5}{R}{R}|Creature - Giant Warrior|4|4|
Breath of Darigaaz|Commander 2015|143|U|{1}{R}|Sorcery|||Kicker {2} (You may pay an additional {2} as you cast this spell.)$Breath of Darigaaz deals 1 damage to each creature without flying and each player. If Breath of Darigaaz was kicked, it deals 4 damage to each creature without flying and each player instead.|
Chain Reaction|Commander 2015|144|R|{2}{R}{R}|Sorcery|||Chain Reaction deals X damage to each creature, where X is the number of creatures on the battlefield.|
Charmbreaker Devils|Commander 2015|145|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.|
-Comet Storm|Commander 2015|146|M|{X}{R}{R}|Instant|||Multikicker {1} (You may pay an additional {1} any number of times as you cast this spell.)$Choose target creature or player, then choose another target creature or player for each time Comet Storm was kicked. Comet Storm deals X damage to each of them.|
+Comet Storm|Commander 2015|146|M|{X}{R}{R}|Instant|||Multikicker {1} (You may pay an additional {1} any number of times as you cast this spell.)$Choose any target, then choose another any target for each time Comet Storm was kicked. Comet Storm deals X damage to each of them.|
Curse of the Nightly Hunt|Commander 2015|147|U|{2}{R}|Enchantment - Aura Curse|||Enchant player$Creatures enchanted player controls attack each turn if able.|
Desolation Giant|Commander 2015|148|R|{2}{R}{R}|Creature - Giant|3|3|Kicker {W}{W} (You may pay an additional {W}{W} as you cast this spell.)$When Desolation Giant enters the battlefield, destroy all other creatures you control. If it was kicked, destroy all other creatures instead.|
Desperate Ravings|Commander 2015|149|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.)|
@@ -27747,10 +27747,10 @@ Stoneshock Giant|Commander 2015|165|U|{3}{R}{R}|Creature - Giant|5|4|{6}{R}{R}:
Sunrise Sovereign|Commander 2015|166|R|{5}{R}|Creature - Giant Warrior|5|5|Other Giant creatures you control get +2/+2 and have trample.|
Taurean Mauler|Commander 2015|167|R|{2}{R}|Creature - Shapeshifter|2|2|Changeling (This card is every creature type at all times.)$Whenever an opponent casts a spell, you may put a +1/+1 counter on Taurean Mauler.|
Thundercloud Shaman|Commander 2015|168|U|{3}{R}{R}|Creature - Giant Shaman|4|4|When Thundercloud Shaman enters the battlefield, it deals damage equal to the number of Giants you control to each non-Giant creature.|
-Urza's Rage|Commander 2015|169|R|{2}{R}|Instant|||Kicker {8}{R} (You may pay an additional {8}{R} as you cast this spell.)$Urza's Rage can't be countered by spells or abilities.$Urza's Rage deals 3 damage to target creature or player. If Urza's Rage was kicked, instead it deals 10 damage to that creature or player and the damage can't be prevented.|
+Urza's Rage|Commander 2015|169|R|{2}{R}|Instant|||Kicker {8}{R} (You may pay an additional {8}{R} as you cast this spell.)$Urza's Rage can't be countered by spells or abilities.$Urza's Rage deals 3 damage to any target. If Urza's Rage was kicked, instead it deals 10 damage to that creature or player and the damage can't be prevented.|
Corpse Augur|Commander 2015|17|U|{3}{B}|Creature - Zombie Wizard|4|2|When Corpse Augur dies, you draw X cards and you lose X life, where X is the number of creature cards in target player's graveyard.|
Vandalblast|Commander 2015|170|U|{R}|Sorcery|||Destroy target artifact you don't control.$Overload {4}{R} (You may cast this spell for its overload cost. If you do, change its text by replacing all instances of "target" with "each.")|
-Warstorm Surge|Commander 2015|171|R|{5}{R}|Enchantment|||Whenever a creature enters the battlefield under your control, it deals damage equal to its power to target creature or player.|
+Warstorm Surge|Commander 2015|171|R|{5}{R}|Enchantment|||Whenever a creature enters the battlefield under your control, it deals damage equal to its power to any target.|
Word of Seizing|Commander 2015|172|R|{3}{R}{R}|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.)$Untap target permanent and gain control of it until end of turn. It gains haste until end of turn.|
Acidic Slime|Commander 2015|173|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.|
Arbor Colossus|Commander 2015|174|R|{2}{G}{G}{G}|Creature - Giant|6|6|Reach${3}{G}{G}{G}: Monstrosity 3. (If this creature isn't monstrous, put three +1/+1 counters on it and it becomes monstrous.)$When Arbor Colossus becomes monstrous, destroy target creature with flying an opponent controls.|
@@ -27799,7 +27799,7 @@ Wall of Blossoms|Commander 2015|211|U|{1}{G}|Creature - Plant Wall|0|4|Defender$
Wood Elves|Commander 2015|212|C|{2}{G}|Creature - Elf Scout|1|1|When Wood Elves enters the battlefield, search your library for a Forest card and put that card onto the battlefield. Then shuffle your library.|
Coiling Oracle|Commander 2015|213|C|{G}{U}|Creature - Snake Elf Druid|1|1|When Coiling Oracle enters the battlefield, reveal the top card of your library. If it's a land card, put it onto the battlefield. Otherwise, put that card into your hand.|
Counterflux|Commander 2015|214|R|{U}{U}{R}|Instant|||Counterflux can't be countered by spells or abilities.$Counter target spell you don't control.$Overload {1}{U}{U}{R} (You may cast this spell for its overload cost. If you do, change its text by replacing all instances of "target" with "each.")|
-Death Grasp|Commander 2015|215|R|{X}{W}{B}|Sorcery|||Death Grasp deals X damage to target creature or player. You gain X life.|
+Death Grasp|Commander 2015|215|R|{X}{W}{B}|Sorcery|||Death Grasp deals X damage to any target. You gain X life.|
Epic Experiment|Commander 2015|216|M|{X}{U}{R}|Sorcery|||Exile the top X cards of your library. For each instant and sorcery card with converted mana cost X or less among them, you may cast that card without paying its mana cost. Then put all cards exiled this way that weren't cast into your graveyard.|
Etherium-Horn Sorcerer|Commander 2015|217|R|{4}{U}{R}|Artifact Creature - Minotaur Wizard|3|6|{1}{U}{R}: Return Etherium-Horn Sorcerer to its owner's hand.$Cascade (When you cast this spell, exile cards from the top of your library until you exile a nonland card that costs less. You may cast it without paying its mana cost. Put the exiled cards on the bottom in a random order.)|
Firemind's Foresight|Commander 2015|218|R|{5}{U}{R}|Instant|||Search your library for an instant card with converted mana cost 3, reveal it, and put it into your hand. Then repeat this process for instant cards with converted mana costs 2 and 1. Then shuffle your library.|
@@ -27817,7 +27817,7 @@ Mystic Snake|Commander 2015|228|R|{1}{G}{U}{U}|Creature - Snake|2|2|Flash$When M
Necromancer's Covenant|Commander 2015|229|R|{3}{W}{B}{B}|Enchantment|||When Necromancer's Covenant enters the battlefield, exile all creature cards from target player's graveyard, then put a 2/2 black Zombie creature token onto the battlefield for each card exiled this way.$Zombies you control have lifelink.|
Wretched Confluence|Commander 2015|23|R|{3}{B}{B}|Instant|||Choose three. You may choose the same mode more than once.$� Target player draws a card and loses 1 life.$� Target creature gets -2/-2 until end of turn.$� Return target creature card from your graveyard to your hand.|
Prime Speaker Zegana|Commander 2015|230|M|{2}{G}{G}{U}{U}|Legendary Creature - Merfolk Wizard|1|1|Prime Speaker Zegana enters the battlefield with X +1/+1 counters on it, where X is the greatest power among other creatures you control.$When Prime Speaker Zegana enters the battlefield, draw cards equal to its power.|
-Prophetic Bolt|Commander 2015|231|R|{3}{U}{R}|Instant|||Prophetic Bolt deals 4 damage to target creature or player. Look at the top four cards of your library. Put one of those cards into your hand and the rest on the bottom of your library in any order.|
+Prophetic Bolt|Commander 2015|231|R|{3}{U}{R}|Instant|||Prophetic Bolt deals 4 damage to any target. Look at the top four cards of your library. Put one of those cards into your hand and the rest on the bottom of your library in any order.|
Putrefy|Commander 2015|232|U|{1}{B}{G}|Instant|||Destroy target artifact or creature. It can't be regenerated.|
Steam Augury|Commander 2015|233|R|{2}{U}{R}|Instant|||Reveal the top five cards of your library and separate them into two piles. An opponent chooses one of those piles. Put that pile into your hand and the other into your graveyard.|
Teysa, Envoy of Ghosts|Commander 2015|234|R|{5}{W}{B}|Legendary Creature - Human Advisor|4|4|Vigilance, protection from creatures$Whenever a creature deals combat damage to you, destroy that creature. Put a 1/1 white and black Spirit creature token with flying onto the battlefield.|
@@ -27836,13 +27836,13 @@ Bonehoard|Commander 2015|245|R|{4}|Artifact - Equipment|||Living weapon (When
Boros Cluestone|Commander 2015|246|C|{3}|Artifact|||{tap}: Add {R} or {W}.${R}{W}, {tap}, Sacrifice Boros Cluestone: Draw a card.|
Boros Signet|Commander 2015|247|C|{2}|Artifact|||{1}, {tap}: Add {R}{W}.|
Burnished Hart|Commander 2015|248|U|{3}|Artifact Creature - Elk|2|2|{3}, Sacrifice Burnished Hart: Search your library for up to two basic land cards, put them onto the battlefield tapped, then shuffle your library.|
-Coldsteel Heart|Commander 2015|249|U|{2}|Snow Artifact|||Coldsteel Heart enters the battlefield tapped.$As Coldsteel Heart enters the battlefield, choose a color.${tap}: Add one mana of the chosen color to your mana pool.|
+Coldsteel Heart|Commander 2015|249|U|{2}|Snow Artifact|||Coldsteel Heart enters the battlefield tapped.$As Coldsteel Heart enters the battlefield, choose a color.${tap}: Add one mana of the chosen color.|
Dream Pillager|Commander 2015|25|R|{5}{R}{R}|Creature - Dragon|4|4|Flying$Whenever Dream Pillager deals combat damage to a player, exile that many cards from the top of your library. Until end of turn, you may cast nonland cards exiled this way.|
Crystal Chimes|Commander 2015|250|U|{3}|Artifact|||{3}, {tap}, Sacrifice Crystal Chimes: Return all enchantment cards from your graveyard to your hand.|
-Darksteel Ingot|Commander 2015|251|U|{3}|Artifact|||Indestructible${tap}: Add one mana of any color to your mana pool.|
+Darksteel Ingot|Commander 2015|251|U|{3}|Artifact|||Indestructible${tap}: Add one mana of any color.|
Dreamstone Hedron|Commander 2015|252|U|{6}|Artifact|||{tap}: Add {C}{C}{C}.${3}, {tap}, Sacrifice Dreamstone Hedron: Draw three cards.|
Eldrazi Monument|Commander 2015|253|M|{5}|Artifact|||Creatures you control get +1/+1 and have flying and indestructible.$At the beginning of your upkeep, sacrifice a creature. If you can't, sacrifice Eldrazi Monument.|
-Fellwar Stone|Commander 2015|254|U|{2}|Artifact|||{tap}: Add to your mana pool one mana of any color that a land an opponent controls could produce.|
+Fellwar Stone|Commander 2015|254|U|{2}|Artifact|||{tap}: Add one mana of any color that a land an opponent controls could produce.|
Golgari Signet|Commander 2015|255|C|{2}|Artifact|||{1}, {tap}: Add {B}{G}.|
Izzet Signet|Commander 2015|256|C|{2}|Artifact|||{1}, {tap}: Add {U}{R}.|
Lightning Greaves|Commander 2015|257|U|{2}|Artifact - Equipment|||Equipped creature has haste and shroud. (It can't be the target of spells or abilities.)$Equip {0}|
@@ -27860,7 +27860,7 @@ Skullclamp|Commander 2015|267|U|{1}|Artifact - Equipment|||Equipped creature get
Sol Ring|Commander 2015|268|U|{1}|Artifact|||{tap}: Add {C}{C}.|
Solemn Simulacrum|Commander 2015|269|R|{4}|Artifact Creature - Golem|2|2|When Solemn Simulacrum enters the battlefield, you may search your library for a basic land card, put that card onto the battlefield tapped, then shuffle your library.$When Solemn Simulacrum dies, you may draw a card.|
Magus of the Wheel|Commander 2015|27|R|{2}{R}|Creature - Human Wizard|3|3|{1}{R}, {tap}, Sacrifice Magus of the Wheel: Each player discards his or her hand, then draws seven cards.|
-Staff of Nin|Commander 2015|270|R|{6}|Artifact|||At the beginning of your upkeep, draw a card.${tap}: Staff of Nin deals 1 damage to target creature or player.|
+Staff of Nin|Commander 2015|270|R|{6}|Artifact|||At the beginning of your upkeep, draw a card.${tap}: Staff of Nin deals 1 damage to any target.|
Swiftfoot Boots|Commander 2015|271|U|{2}|Artifact - Equipment|||Equipped creature has hexproof and haste.$Equip {1}|
Sword of Vengeance|Commander 2015|272|R|{3}|Artifact - Equipment|||Equipped creature gets +2/+0 and has first strike, vigilance, trample, and haste.$Equip {3}|
Urza's Incubator|Commander 2015|273|R|{3}|Artifact|||As Urza's Incubator enters the battlefield, choose a creature type.$Creature spells of the chosen type cost {2} less to cast.|
@@ -27872,7 +27872,7 @@ Blasted Landscape|Commander 2015|278|U||Land|||{tap}: Add {C}.$Cycling {2} ({
Boros Garrison|Commander 2015|279|C||Land|||Boros Garrison enters the battlefield tapped.$When Boros Garrison enters the battlefield, return a land you control to its owner's hand.${tap}: Add {R}{W}.|
Meteor Blast|Commander 2015|28|U|{X}{R}{R}{R}|Sorcery|||Meteor Blast deals 4 damage to each of X target creatures and/or players.|
Boros Guildgate|Commander 2015|280|C||Land - Gate|||Boros Guildgate enters the battlefield tapped.${tap}: Add {R} or {W}.|
-Command Tower|Commander 2015|281|C||Land|||{tap}: Add to your mana pool one mana of any color in your commander's color identity.|
+Command Tower|Commander 2015|281|C||Land|||{tap}: Add one mana of any color in your commander's color identity.|
Drifting Meadow|Commander 2015|282|C||Land|||Drifting Meadow enters the battlefield tapped.${tap}: Add {W}.$Cycling {2} ({2}, Discard this card: Draw a card.)|
Evolving Wilds|Commander 2015|283|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.|
Forgotten Cave|Commander 2015|284|C||Land|||Forgotten Cave enters the battlefield tapped.${tap}: Add {R}.$Cycling {R} ({R}, Discard this card: Draw a card.)|
@@ -27911,12 +27911,12 @@ Tainted Wood|Commander 2015|312|U||Land|||{tap}: Add {C}.${tap}: Add {B} or {G}.
Temple of the False God|Commander 2015|313|U||Land|||{tap}: Add {C}{C}. Activate this ability only if you control five or more lands.|
Terramorphic Expanse|Commander 2015|314|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.|
Thornwood Falls|Commander 2015|315|C||Land|||Thornwood Falls enters the battlefield tapped.$When Thornwood Falls enters the battlefield, you gain 1 life.${tap}: Add {G} or {U}.|
-Vivid Crag|Commander 2015|316|U||Land|||Vivid Crag enters the battlefield tapped with two charge counters on it.${tap}: Add {R}.${tap}, Remove a charge counter from Vivid Crag: Add one mana of any color to your mana pool.|
-Vivid Creek|Commander 2015|317|U||Land|||Vivid Creek enters the battlefield tapped with two charge counters on it.${tap}: Add {U}.${tap}, Remove a charge counter from Vivid Creek: Add one mana of any color to your mana pool.|
-Vivid Grove|Commander 2015|318|U||Land|||Vivid Grove enters the battlefield tapped with two charge counters on it.${tap}: Add {G}.${tap}, Remove a charge counter from Vivid Grove: Add one mana of any color to your mana pool.|
-Vivid Marsh|Commander 2015|319|U||Land|||Vivid Marsh enters the battlefield tapped with two charge counters on it.${tap}: Add {B}.${tap}, Remove a charge counter from Vivid Marsh: Add one mana of any color to your mana pool.|
+Vivid Crag|Commander 2015|316|U||Land|||Vivid Crag enters the battlefield tapped with two charge counters on it.${tap}: Add {R}.${tap}, Remove a charge counter from Vivid Crag: Add one mana of any color.|
+Vivid Creek|Commander 2015|317|U||Land|||Vivid Creek enters the battlefield tapped with two charge counters on it.${tap}: Add {U}.${tap}, Remove a charge counter from Vivid Creek: Add one mana of any color.|
+Vivid Grove|Commander 2015|318|U||Land|||Vivid Grove enters the battlefield tapped with two charge counters on it.${tap}: Add {G}.${tap}, Remove a charge counter from Vivid Grove: Add one mana of any color.|
+Vivid Marsh|Commander 2015|319|U||Land|||Vivid Marsh enters the battlefield tapped with two charge counters on it.${tap}: Add {B}.${tap}, Remove a charge counter from Vivid Marsh: Add one mana of any color.|
Arachnogenesis|Commander 2015|32|R|{2}{G}|Instant|||Put X 1/2 green Spider creature tokens with reach onto the battlefield, where X is the number of creatures attacking you. Prevent all combat damage that would be dealt this turn by non-Spider creatures.|
-Vivid Meadow|Commander 2015|320|U||Land|||Vivid Meadow enters the battlefield tapped with two charge counters on it.${tap}: Add {W}.${tap}, Remove a charge counter from Vivid Meadow: Add one mana of any color to your mana pool.|
+Vivid Meadow|Commander 2015|320|U||Land|||Vivid Meadow enters the battlefield tapped with two charge counters on it.${tap}: Add {W}.${tap}, Remove a charge counter from Vivid Meadow: Add one mana of any color.|
Wind-Scarred Crag|Commander 2015|321|C||Land|||Wind-Scarred Crag enters the battlefield tapped.$When Wind-Scarred Crag enters the battlefield, you gain 1 life.${tap}: Add {R} or {W}.|
Zoetic Cavern|Commander 2015|322|U||Land|||{tap}: Add {C}.$Morph {2} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
Plains|Commander 2015|323|L||Basic Land - Plains|||W|
@@ -28012,7 +28012,7 @@ Lone Revenant|Commander 2015|96|R|{3}{U}{U}|Creature - Spirit|4|4|Hexproof (T
Mulldrifter|Commander 2015|97|U|{4}{U}|Creature - Elemental|2|2|Flying$When Mulldrifter enters the battlefield, draw two cards.$Evoke {2}{U} (You may cast this spell for its evoke cost. If you do, it's sacrificed when it enters the battlefield.)|
Mystic Retrieval|Commander 2015|98|U|{3}{U}|Sorcery|||Return target instant or sorcery card from your graveyard to your hand.$Flashback {2}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Ninja of the Deep Hours|Commander 2015|99|C|{3}{U}|Creature - Human Ninja|2|2|Ninjutsu {1}{U} ({1}{U}, Return an unblocked attacker you control to hand: Put this card onto the battlefield from your hand tapped and attacking.)$Whenever Ninja of the Deep Hours deals combat damage to a player, you may draw a card.|
-Ugin, the Spirit Dragon|Ugin's Fate|1|M|{8}|Legendary Planeswalker - Ugin|||+2: Ugin, the Spirit Dragon deals 3 damage to target creature or player.$?X: Exile each permanent with converted mana cost X or less that's one or more colors.$?10: You gain 7 life, draw seven cards, then put up to seven permanent cards from your hand onto the battlefield.|
+Ugin, the Spirit Dragon|Ugin's Fate|1|M|{8}|Legendary Planeswalker - Ugin|||+2: Ugin, the Spirit Dragon deals 3 damage to any target.$?X: Exile each permanent with converted mana cost X or less that's one or more colors.$?10: You gain 7 life, draw seven cards, then put up to seven permanent cards from your hand onto the battlefield.|
Mastery of the Unseen|Ugin's Fate|19|R|{1}{W}|Enchantment|||Whenever a permanent you control is turned face up, you gain 1 life for each creature you control.${3}{W}: Manifest the top card of your library. (Put it onto the battlefield face down as a 2/2 creature. Turn it face up any time for its mana cost if it's a creature card.)|
Smite the Monstrous|Ugin's Fate|24|C|{3}{W}|Instant|||Destroy target creature with power 4 or greater.|
Soul Summons|Ugin's Fate|26|C|{1}{W}|Sorcery|||Manifest the top card of your library. (Put it onto the battlefield face down as a 2/2 creature. Turn it face up any time for its mana cost if it's a creature card.)|
@@ -28068,13 +28068,13 @@ Island|European Land Program|12|L||Basic Land - Island|||U|
Mountain|European Land Program|13|L||Basic Land - Mountain|||R|
Plains|European Land Program|14|L||Basic Land - Plains|||W|
Swamp|European Land Program|15|L||Basic Land - Swamp|||B|
-Thran Quarry|Super Series|1|Special||Land|||At the beginning of the end step, if you control no creatures, sacrifice Thran Quarry.${tap}: Add one mana of any color to your mana pool.|
+Thran Quarry|Super Series|1|Special||Land|||At the beginning of the end step, if you control no creatures, sacrifice Thran Quarry.${tap}: Add one mana of any color.|
Serra Avatar|Super Series|2|Special|{4}{W}{W}{W}|Creature - Avatar|*|*|Serra Avatar's power and toughness are each equal to your life total.$When Serra Avatar is put into a graveyard from anywhere, shuffle it into its owner's library.|
Lord of Atlantis|Super Series|3|Special|{U}{U}|Creature - Merfolk|2|2|Other Merfolk creatures get +1/+1 and have islandwalk.|
Crusade|Super Series|4|Special|{W}{W}|Enchantment|||White creatures get +1/+1.|
Elvish Lyrist|Super Series|5|C|{G}|Creature - Elf|1|1|{G}, {tap}, Sacrifice Elvish Lyrist: Destroy target enchantment.|
-City of Brass|Super Series|6|Special||Land|||Whenever City of Brass becomes tapped, it deals 1 damage to you.${tap}: Add one mana of any color to your mana pool.|
-Volcanic Hammer|Super Series|7|C|{1}{R}|Sorcery|||Volcanic Hammer deals 3 damage to target creature or player.|
+City of Brass|Super Series|6|Special||Land|||Whenever City of Brass becomes tapped, it deals 1 damage to you.${tap}: Add one mana of any color.|
+Volcanic Hammer|Super Series|7|C|{1}{R}|Sorcery|||Volcanic Hammer deals 3 damage to any target.|
Giant Growth|Super Series|8|C|{G}|Instant|||Target creature gets +3/+3 until end of turn.|
Two-Headed Dragon|Super Series|9|Special|{4}{R}{R}|Creature - Dragon|4|4|Flying${1}{R}: Two-Headed Dragon gets +2/+0 until end of turn.$Two-Headed Dragon can't be blocked except by two or more creatures.$Two-Headed Dragon can block an additional creature each combat.|
Slith Firewalker|Super Series|10|Special|{R}{R}|Creature - Slith|1|1|Haste$Whenever Slith Firewalker deals combat damage to a player, put a +1/+1 counter on it.|
@@ -28129,7 +28129,7 @@ Mountain|Arena League|26|Special||Basic Land - Mountain|||R|
Forest|Arena League|27|Special||Basic Land - Forest|||G|
Creeping Mold|Arena League|28|Special|{2}{G}{G}|Sorcery|||Destroy target artifact, enchantment, or land.|
Dismiss|Arena League|29|Special|{2}{U}{U}|Instant|||Counter target spell.$Draw a card.|
-Fling|Arena League|30|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.|
+Fling|Arena League|30|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 any target.|
Empyrial Armor|Arena League|31|Special|{1}{W}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+1 for each card in your hand.|
Plains|Arena League|32|Special||Basic Land - Plains|||W|
Island|Arena League|33|Special||Basic Land - Island|||U|
@@ -28149,7 +28149,7 @@ Island|Arena League|46|Special||Basic Land - Island|||U|
Swamp|Arena League|47|Special||Basic Land - Swamp|||B|
Mountain|Arena League|48|Special||Basic Land - Mountain|||R|
Forest|Arena League|49|Special||Basic Land - Forest|||G|
-Skirk Marauder|Arena League|50|C|{1}{R}|Creature - Goblin|2|1|Morph {2}{R} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Skirk Marauder is turned face up, it deals 2 damage to target creature or player.|
+Skirk Marauder|Arena League|50|C|{1}{R}|Creature - Goblin|2|1|Morph {2}{R} You may cast this card face downn as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Skirk Marauder is turned face up, it deals 2 damage to any target.|
Elvish Aberration|Arena League|51|C|{5}{G}|Creature - Elf Mutant|4|5|{tap}: Add {G}{G}{G}.$Forestcycling {2} ({2}, Discard this card: Search your library for a Forest card, reveal it, and put it into your hand. Then shuffle your library.)|
Bonesplitter|Arena League|52|C|{1}|Artifact - Equipment|||Equipped creature gets +2/+0.$Equip {1} ({1}: Attach to target creature you control. Equip only as a sorcery. This card enters the battlefield unattached and stays on the battlefield if the creature leaves.)|
Plains|Arena League|53|Special||Basic Land - Plains|||W|
@@ -28157,9 +28157,9 @@ Island|Arena League|54|Special||Basic Land - Island|||U|
Swamp|Arena League|55|Special||Basic Land - Swamp|||B|
Mountain|Arena League|56|Special||Basic Land - Mountain|||R|
Forest|Arena League|57|Special||Basic Land - Forest|||G|
-Darksteel Ingot|Arena League|58|C|{3}|Artifact|||Indestructible${T}: Add one mana of any color to your mana pool.|
+Darksteel Ingot|Arena League|58|C|{3}|Artifact|||Indestructible${T}: Add one mana of any color.|
Serum Visions|Arena League|59|C|{U}|Sorcery|||Draw a card.$Scry 2. (To scry 2, look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)|
-Glacial Ray|Arena League|60|C|{1}{R}|Instant - Arcane|||Glacial Ray deals 2 damage to target creature or player.$Splice onto Arcane {1}{R} (As you cast an Arcane spell, you may reveal this card from your hand and pay its splice cost. If you do, add this card's effects to that spell.)|
+Glacial Ray|Arena League|60|C|{1}{R}|Instant - Arcane|||Glacial Ray deals 2 damage to any target.$Splice onto Arcane {1}{R} (As you cast an Arcane spell, you may reveal this card from your hand and pay its splice cost. If you do, add this card's effects to that spell.)|
Circle of Protection: Art|Arena League|61|C|{1}{W}|Enchantment|||As Circle of Protection: Art comes into play, choose an artist.${1}{W}: The next time a source of your choice by the chosen artist would deal damage to you this turn, prevent that damage.${1}{W}: Return Circle of Protection: Art to its owner's hand.|
Mise|Arena League|62|Special|{U}|Instant|||Name a nonland card, then reveal the top card of your library. If that card is the named card, draw three cards.|
Booster Tutor|Arena League|63|Special|{B}|Instant|||Open a sealed Magic booster pack, reveal the cards, and put one of those cards into your hand. (Remove that card from your deck before beginning a new game.)|
@@ -28182,9 +28182,9 @@ Forest|Arena League|79|Special||Basic Land - Forest|||G|
Castigate|Arena League|80|C|{W}{B}|Sorcery|||Target opponent reveals his or her hand. You choose a nonland card from it and exile that card.|
Wee Dragonauts|Arena League|81|C|{1}{U}{R}|Creature - Faerie Wizard|1|3|Flying$Whenever you cast an instant or sorcery spell, Wee Dragonauts gets +2/+0 until end of turn.|
Coiling Oracle|Arena League|82|C|{G}{U}|Creature - Snake Elf Druid|1|1|When Coiling Oracle enters the battlefield, reveal the top card of your library. If it's a land card, put it onto the battlefield. Otherwise, put that card into your hand.|
-Surging Flame|Arena League|83|C|{1}{R}|Instant|||Ripple 4 (When you cast this spell, you may reveal the top four cards of your library. You may cast any revealed cards with the same name as this spell without paying their mana costs. Put the rest on the bottom of your library.)$Surging Flame deals 2 damage to target creature or player.|
+Surging Flame|Arena League|83|C|{1}{R}|Instant|||Ripple 4 (When you cast this spell, you may reveal the top four cards of your library. You may cast any revealed cards with the same name as this spell without paying their mana costs. Put the rest on the bottom of your library.)$Surging Flame deals 2 damage to any target.|
Electrolyze|Champs|1|Special|{1}{U}{R}|Instant|||Electrolyze deals 2 damage divided as you choose among one or two target creatures and/or players.$Draw a card.|
-Niv-Mizzet, the Firemind|Champs|2|Special|{2}{U}{U}{R}{R}|Legendary Creature - Dragon Wizard|4|4|Flying$Whenever you draw a card, Niv-Mizzet, the Firemind deals 1 damage to target creature or player.${T}: Draw a card.|
+Niv-Mizzet, the Firemind|Champs|2|Special|{2}{U}{U}{R}{R}|Legendary Creature - Dragon Wizard|4|4|Flying$Whenever you draw a card, Niv-Mizzet, the Firemind deals 1 damage to any target.${T}: Draw a card.|
Rakdos Guildmage|Champs|3|Special|{BR}{BR}|Creature - Zombie Shaman|2|2|({BR} can be paid with either {B} or {R}.)${3}{B}, Discard a card: Target creature gets -2/-2 until end of turn.${3}{R}: Put a 2/1 red Goblin creature token with haste onto the battlefield. Exile it at the beginning of the next end step.|
Voidslime|Champs|4|Special|{G}{U}{U}|Instant|||Counter target spell, activated ability, or triggered ability. (Mana abilities can't be targeted.)|
Urza's Factory|Champs|5|Special||Land - Urza s|||{tap}: Add {C}.${7}, {tap}: Put a 2/2 colorless Assembly-Worker artifact creature token onto the battlefield.|
@@ -28242,16 +28242,16 @@ Flooded Grove|Zendikar Expeditions|35|M||Land|||{tap}: Add {C}.${GU}, {tap}: Add
Ancient Tomb|Zendikar Expeditions|36|M||Land|||{T}: Add {C}{C}. Ancient Tomb deals 2 damage to you.|
Dust Bowl|Zendikar Expeditions|37|M||Land|||{tap}: Add {C}.$${3}, {tap}, Sacrifice a land: Destroy target nonbasic land.|
Eye of Ugin|Zendikar Expeditions|38|M||Legendary Land|||Colorless Eldrazi spells you cast cost {2} less to cast.${7}, {tap}: Search your library for a colorless creature card, reveal it, and put it into your hand. Then shuffle your library.|
-Forbidden Orchard|Zendikar Expeditions|39|M||Land|||{T}: Add one mana of any color to your mana pool.$Whenever you tap Forbidden Orchard for mana, target opponent puts a 1/1 colorless Spirit creature token onto the battlefield.|
+Forbidden Orchard|Zendikar Expeditions|39|M||Land|||{T}: Add one mana of any color.$Whenever you tap Forbidden Orchard for mana, target opponent puts a 1/1 colorless Spirit creature token onto the battlefield.|
Horizon Canopy|Zendikar Expeditions|40|M||Land|||{tap}, Pay 1 life: Add {G} or {W}.${1}, {tap}, Sacrifice Horizon Canopy: Draw a card.|
Kor Haven|Zendikar Expeditions|41|M||Legendary Land|||{tap}: Add {C}.$${1}{W}, {tap}: Prevent all combat damage that would be dealt by target attacking creature this turn.|
-Mana Confluence|Zendikar Expeditions|42|M||Land|||{tap}, Pay 1 life: Add one mana of any color to your mana pool.|
+Mana Confluence|Zendikar Expeditions|42|M||Land|||{tap}, Pay 1 life: Add one mana of any color.|
Strip Mine|Zendikar Expeditions|43|M||Land|||{T}: Add {C}.${T}, Sacrifice Strip Mine: Destroy target land.|
Tectonic Edge|Zendikar Expeditions|44|M||Land|||{tap}: Add {C}.${1}, {tap}, Sacrifice Tectonic Edge: Destroy target nonbasic land. Activate this ability only if an opponent controls four or more lands.|
Wasteland|Zendikar Expeditions|45|M||Land|||{tap}: Add {C}.${tap}, Sacrifice Wasteland: Destroy target nonbasic land.|
Deceiver of Form|Oath of the Gatewatch|1|R|{6}{C}|Creature - Eldrazi|8|8|At the beginning of combat on your turn, reveal the top card of your library. If a creature card is revealed this way, you may have creatures you control other than Deceiver of Form becomes copies of that card until end of turn. You may put that card on the bottom of your library.|
Eldrazi Mimic|Oath of the Gatewatch|2|R|{2}|Creature - Eldrazi|2|1|Whenever another colorless creature enters the battlefield under your control, you may have the base power and toughness of Eldrazi Mimic become that creature's power and toughness until end of turn.|
-Endbringer|Oath of the Gatewatch|3|R|{5}{C}|Creature - Eldrazi|5|5|Untap Endbringer during each other player's untap step.${T}: Endbringer deals 1 damage to target creature or player.${C}, {T}: Target creature can't attack or block this turn.${C}{C}, {T}: Draw a card.|
+Endbringer|Oath of the Gatewatch|3|R|{5}{C}|Creature - Eldrazi|5|5|Untap Endbringer during each other player's untap step.${T}: Endbringer deals 1 damage to any target.${C}, {T}: Target creature can't attack or block this turn.${C}{C}, {T}: Draw a card.|
Kozilek, the Great Distortion|Oath of the Gatewatch|4|M|{8}{C}{C}|Legendary Creature - Eldrazi|12|12|When you cast Kozilek, the Great Distortion, if you have fewer than seven cards in hand, draw cards equal to the difference.$Menace$Discard a card with converted mana cost X: Counter target spell with converted mana cost X.|
Kozilek's Pathfinder|Oath of the Gatewatch|5|C|{6}|Creature - Eldrazi|5|5|{C}: Target creature can't block Kozilek's Pathfinder this turn.|
Matter Reshaper|Oath of the Gatewatch|6|R|{2}{C}|Creature - Eldrazi|3|2|When Matter Reshaper dies, reveal the top card of your library. You may put that card onto the battlefield if it's a permanent card with converted mana cost 3 or less. Otherwise, put that card into your hand.|
@@ -28348,7 +28348,7 @@ Eldrazi Obligator|Oath of the Gatewatch|96|R|{2}{R}|Creature - Eldrazi Drone|3|1
Immobilizer Eldrazi|Oath of the Gatewatch|97|U|{1}{R}|Creature - Eldrazi Drone|2|1|Devoid (This card has no color.)${2}{C}: Each creature with toughness greater than its power can't block this turn.|
Kozilek's Return|Oath of the Gatewatch|98|M|{2}{R}|Instant|||Devoid (This card has no color.)$Kozilek's Return deals 2 damage to each creature.$Whenever you cast an Eldrazi creature spell with converted mana cost 7 or greater, you may exile Kozilek's Return from your graveyard. If you do, Kozilek's Return deals 5 damage to each creature.|
Maw of Kozilek|Oath of the Gatewatch|99|C|{3}{R}|Creature - Eldrazi Drone|2|5|Devoid (This card has no color.)${C}: Maw of Kozilek gets +2/-2 until end of turn.|
-Reality Hemorrhage|Oath of the Gatewatch|100|C|{1}{R}|Instant|||Devoid (This card has no color.)$Reality Hemorrhage deals 2 damage to target creature or player.|
+Reality Hemorrhage|Oath of the Gatewatch|100|C|{1}{R}|Instant|||Devoid (This card has no color.)$Reality Hemorrhage deals 2 damage to any target.|
Akoum Flameseeker|Oath of the Gatewatch|101|C|{2}{R}|Creature - Human Shaman Ally|3|2|Cohort — {T}, Tap an untapped Ally you control: Discard a card. If you do, draw a card.|
Boulder Salvo|Oath of the Gatewatch|102|C|{4}{R}|Sorcery|||Surge {1}{R} (You may cast this spell for its surge cost if you or a teammate has cast another spell this turn.)$Boulder Salvo deals 4 damage to target creature.|
Brute Strength|Oath of the Gatewatch|103|C|{1}{R}|Instant|||Target creature gets +3/+1 and gain trample until end of turn.|
@@ -28363,11 +28363,11 @@ Goblin Freerunner|Oath of the Gatewatch|111|C|{3}{R}|Creature - Goblin Warrior A
Kazuul's Toll Collector|Oath of the Gatewatch|112|U|{2}{R}|Creature - Ogre Warrior|3|2|{0}: Attach target Equipment you control to Kazuul's Toll Collector. Activate this ability only any time you could cast a sorcery.|
Oath of Chandra|Oath of the Gatewatch|113|R|{1}{R}|Legendary Enchantment|||When Oath of Chandra enters the battlefield, it deals 3 damage to target creature an opponent controls.$At the beginning of each end step, if a planeswalker entered the battlefield under your control this turn, Oath of Chandra deals 2 damage to each opponent.|
Press into Service|Oath of the Gatewatch|114|U|{4}{R}|Sorcery|||Support 2. (Put a +1/+1 counter on each of up to two target creatures.)$Gain control of target creature until end of turn. Untap that creature. It gains haste until end of turn.|
-Pyromancer's Assault|Oath of the Gatewatch|115|U|{3}{R}|Enchantment|||Whenever you cast your second spell each turn, Pyromancer's Assault deals 2 damage to target creature or player.|
+Pyromancer's Assault|Oath of the Gatewatch|115|U|{3}{R}|Enchantment|||Whenever you cast your second spell each turn, Pyromancer's Assault deals 2 damage to any target.|
Reckless Bushwhacker|Oath of the Gatewatch|116|U|{2}{R}|Creature - Goblin Warrior Ally|2|1|Surge {1}{R} (You may cast this spell for its surge cost if you or a teammate has cast another spell this turn.)$Haste$When Reckless Bushwhacker enters the battlefield, if its surge cost was paid, other creatures you control get +1/+0 and gain haste until end of turn.|
Sparkmage's Gambit|Oath of the Gatewatch|117|C|{1}{R}|Sorcery|||Sparkmage's Gambit deals 1 damage to each of up to two target creatures. Those creatures can't block this turn.|
Tears of Valakut|Oath of the Gatewatch|118|U|{1}{R}|Instant|||Tears of Valakut can't be countered by spells or abilities.$Tears of Valakut deals 5 damage to target creature with flying.|
-Tyrant of Valakut|Oath of the Gatewatch|119|R|{5}{R}{R}|Creature - Dragon|5|4|Surge {3}{R}{R} (You may cast this spell for its surge cost if you or a teammate has cast another spell this turn.)$Flying$When Tyrant of Valakut enters the battlefield, if its surge cost was paid, it deals 3 damage to target creature or player.|
+Tyrant of Valakut|Oath of the Gatewatch|119|R|{5}{R}{R}|Creature - Dragon|5|4|Surge {3}{R}{R} (You may cast this spell for its surge cost if you or a teammate has cast another spell this turn.)$Flying$When Tyrant of Valakut enters the battlefield, if its surge cost was paid, it deals 3 damage to any target.|
Zada's Commando|Oath of the Gatewatch|120|C|{1}{R}|Creature - Goblin Archer Ally|2|1|First strike$Cohort — {T}, Tap an untapped Ally you control: Zada's Commando deals 1 damage to target opponent.|
Birthing Hulk|Oath of the Gatewatch|121|U|{6}{G}|Creature - Eldrazi Drone|5|4|Devoid (This card has no color.)When Birthing Hulk enters the battlefield, put two 1/1 colorless Eldrazi Scion creature tokens onto the battlefield. They have "Sacrifice this creature: Add {C}."${1}{C}: Regenerate Birthing Hulk.|
Ruin in Their Wake|Oath of the Gatewatch|122|U|{1}{G}|Sorcery|||Devoid (This card has no color.)$Search your library for a basic land card and reveal it. You may put that card onto the battlefield tapped if you control a land named Wastes. Otherwise, put that card into your hand. Then shuffle your library.|
@@ -28395,7 +28395,7 @@ Seed Guardian|Oath of the Gatewatch|143|U|{2}{G}{G}|Creature - Elemental|3|4|Rea
Sylvan Advocate|Oath of the Gatewatch|144|R|{1}{G}|Creature - Elf Druid Ally|2|3|Vigilance$As long as you control six or more lands, Sylvan Advocate and land creatures you control get +2/+2.|
Tajuru Pathwarden|Oath of the Gatewatch|145|C|{4}{G}|Creature - Elf Warrior Ally|5|4|Vigilance, trample|
Vines of the Recluse|Oath of the Gatewatch|146|C|{G}|Instant|||Target creature gets +1/+2 and gains reach until end of turn. (A creature with reach can block creatures with flying.)|
-Zendikar Resurgent|Oath of the Gatewatch|147|R|{5}{G}{G}|Enchantment|||Whenever you tap a land for mana, add one mana to your mana pool of any type that land produced. (The types of mana are white, blue, black, red, green, and colorless.)$Whenever you cast a creature spell, draw a card.|
+Zendikar Resurgent|Oath of the Gatewatch|147|R|{5}{G}{G}|Enchantment|||Whenever you tap a land for mana, add one mana of any type that land produced. (The types of mana are white, blue, black, red, green, and colorless.)$Whenever you cast a creature spell, draw a card.|
Flayer Drone|Oath of the Gatewatch|148|U|{1}{B}{R}|Creature - Eldrazi Drone|3|1|Devoid (This card has no color.)$First strike$Whenever another colorless creature enters the battlefield under your control, target opponent loses 1 life.|
Mindmelter|Oath of the Gatewatch|149|U|{1}{U}{B}|Creature - Eldrazi Drone|2|2|Devoid (This card has no color.)$Mindmelter can't be blocked.${3}{C}: Target opponent exiles a card from his or her hand. Activate this ability only any time you could cast a sorcery. ({C} represents colorless mana.)|
Void Grafter|Oath of the Gatewatch|150|U|{1}{G}{U}|Creature - Eldrazi Drone|2|4|Devoid (This card has no color.)$Flash (You may cast this spell any time you could cast an instant.)$When Void Grafter enters the battlefield, another target creature you control gain hexproof until end of turn.|
@@ -28417,10 +28417,10 @@ Seer's Lantern|Oath of the Gatewatch|165|C|{3}|Artifact|||{T}: Add {C}.${2}, {T}
Stoneforge Masterwork|Oath of the Gatewatch|166|R|{1}|Artifact - Equipment|||Equipped creature gets +1/+1 for each other creature you control that shares a creature type with it.$Equip {2}|
Strider Harness|Oath of the Gatewatch|167|U|{3}|Artifact - Equipment|||Equipped creature gets +1/+1 and has haste.$Equip {1}|
Cinder Barrens|Oath of the Gatewatch|168|U||Land|||Cinder Barrens enters the battlefield tapped.${T}: Add {B} or {R}.|
-Corrupted Crossroads|Oath of the Gatewatch|169|R||Land|||{T}: Add {C}. ({C} represents colorless mana.)${T}, Pay 1 life: Add one mana of any color to your mana pool. Spend this mana only to cast a spell with devoid.|
-Crumbling Vestige|Oath of the Gatewatch|170|C||Land|||Crumbling Vestige enters the battlefield tapped.$When Crumbling Vestige enters the battlefield, add one mana of any color to your mana pool.${T}: Add {C} to you mana pool. ({C} represents colorless mana.)|
+Corrupted Crossroads|Oath of the Gatewatch|169|R||Land|||{T}: Add {C}. ({C} represents colorless mana.)${T}, Pay 1 life: Add one mana of any color. Spend this mana only to cast a spell with devoid.|
+Crumbling Vestige|Oath of the Gatewatch|170|C||Land|||Crumbling Vestige enters the battlefield tapped.$When Crumbling Vestige enters the battlefield, add one mana of any color.${T}: Add {C} to you mana pool. ({C} represents colorless mana.)|
Hissing Quagmire|Oath of the Gatewatch|171|R||Land|||Hissing Quagmire enters the battlefield tapped.${T}: Add {B} or {G}.${1}{B}{G}: Hissing Quagmire becomes a 2/2 black and green Elemental creature with deathtouch until end of turn. It's still a land.|
-Holdout Settlement|Oath of the Gatewatch|172|C||Land|||{T}: Add {C}. ({C} represents colorless mana.)${T}, Tap an untapped creature you control: Add one mana of any color to your mana pool.|
+Holdout Settlement|Oath of the Gatewatch|172|C||Land|||{T}: Add {C}. ({C} represents colorless mana.)${T}, Tap an untapped creature you control: Add one mana of any color.|
Meandering River|Oath of the Gatewatch|173|U||Land|||Meandering River enters the battlefield tapped.${T}: Add {W} or {U}.|
Mirrorpool|Oath of the Gatewatch|174|M||Land|||Mirrorpool enters the battlefield tapped.${T}: Add {C}.${2}{C}, {T}, Sacrifice Mirrorpool: Copy target instant or sorcery spell you control. You may choose new targets for the copy.${4}{C}, {T}, Sacrifice Mirrorpool: Put a token onto the battlefield that's a copy of target creature you control.|
Needle Spires|Oath of the Gatewatch|175|R||Land|||Needle Spires enters the battlefield tapped.${T}: Add {R} or {W}.${2}{R}{W}: Needle Spires becomes a 2/1 red and white Elemental creature with double strike until end of turn. It's still a land.|
@@ -28429,7 +28429,7 @@ Sea Gate Wreckage|Oath of the Gatewatch|177|R||Land|||{T}: Add {C}. ({C} repr
Submerged Boneyard|Oath of the Gatewatch|178|U||Land|||Submerged Boneyard enters the battlefield tapped.${T}: Add {U} or {B}.|
Timber Gorge|Oath of the Gatewatch|179|U||Land|||Timber Gorge enters the battlefield tapped.${T}: Add {R} or {G}.|
Tranquil Expanse|Oath of the Gatewatch|180|U||Land|||Tranquil Expanse enters the battlefield tapped.${T}: Add {G} or {W}.|
-Unknown Shores|Oath of the Gatewatch|181|C||Land|||{T}: Add {C}. ({C} represents colorless mana.)${1}, {T}: Add one mana of any color to your mana pool.|
+Unknown Shores|Oath of the Gatewatch|181|C||Land|||{T}: Add {C}. ({C} represents colorless mana.)${1}, {T}: Add one mana of any color.|
Wandering Fumarole|Oath of the Gatewatch|182|R||Land|||Wandering Fumarole enters the battlefield tapped.${T}: Add {U} or {R}.${2}{U}{R}: Until end of turn, Wandering Fumarole becomes a 1/4 blue and red Elemental creature with "0: Switch this creature's power and toughness until end of turn." It's still a land.|
Wastes|Oath of the Gatewatch|183|C||Basic Land|||{T}: Add {C}.|
Wastes|Oath of the Gatewatch|184|C||Basic Land|||{T}: Add {C}.|
@@ -28590,7 +28590,7 @@ Magmaquake|Game Day|20|R|{X}{R}{R}|Instant|||Magmaquake deals X damage to each c
Mwonvuli Beast Tracker|Game Day|21|U|{1}{G}{G}|Creature - Human Scout|2|1|When Mwonvuli Beast Tracker enters the battlefield, search your library for a creature card with deathtouch, hexproof, reach, or trample and reveal it. Shuffle your library and put that card on top of it.|
Cryptborn Horror|Game Day|22|R|{1}{BR}{BR}||Creature - Horror|0|0|Trample$Cryptborn Horror enters the battlefield with X +1/+1 counters on it, where X is the total life lost by your opponents this turn.|
Dryad Militant|Game Day|23|U|{GW}|Creature - Dryad Soldier|2|1|If an instant or sorcery card would be put into a graveyard from anywhere, exile it instead.|
-Firemane Avenger|Game Day|24|R|{2}{W}{R}|Creature - Angel|3|3|Flying$Battalion Whenever Firemane Avenger and at least two other creatures attack, Firemane Avenger deals 3 damage to target creature or player and you gain 3 life.|
+Firemane Avenger|Game Day|24|R|{2}{W}{R}|Creature - Angel|3|3|Flying$Battalion Whenever Firemane Avenger and at least two other creatures attack, Firemane Avenger deals 3 damage to any target and you gain 3 life.|
Zameck Guildmage|Game Day|25|U|{U}{G}|Creature - Elf Wizard|2|2|{G}{U}: This turn, each creature you control enters the battlefield with an additional +1/+1 counter on it.${G}{U}, Remove a +1/+1 counter from a creature you control: Draw a card.|
Melek, Izzet Paragon|Game Day|26|R|{4}{U}{R}|Legendary Creature - Weird Wizard|2|4|Play with the top card of your library revealed.$You may cast the top card of your library if it's an instant or sorcery card.$Whenever you cast an instant or sorcery spell from your library, copy it. You may choose new targets for the copy.|
Trostani's Summoner|Game Day|27|U|{5}{W}{G}|Creature - Elf Shaman|1|1|When Trostani's Summoner enters the battlefield, put a 2/2 white Knight creature token with vigilance, a 3/3 green Centaur creature token, and a 4/4 green Rhino creature token with trample onto the battlefield.|
@@ -28644,9 +28644,9 @@ Pain|Invasion|294a|U|{B}|Sorcery|||Target player discards a card.$|
Suffering|Invasion|294b|U|{3}{R}|Sorcery|||$Destroy target land.|
Pain|Invasion|294a|U|{B}|Sorcery|||Target player discards a card.$|
Suffering|Invasion|294b|U|{3}{R}|Sorcery|||$Destroy target land.|
-Assault|Invasion|295a|U|{R}|Sorcery|||Assault deals 2 damage to target creature or player.$|
+Assault|Invasion|295a|U|{R}|Sorcery|||Assault deals 2 damage to any target.$|
Battery|Invasion|295b|U|{3}{G}|Sorcery|||$Put a 3/3 green Elephant creature token onto the battlefield.|
-Assault|Invasion|295a|U|{R}|Sorcery|||Assault deals 2 damage to target creature or player.$|
+Assault|Invasion|295a|U|{R}|Sorcery|||Assault deals 2 damage to any target.$|
Battery|Invasion|295b|U|{3}{G}|Sorcery|||$Put a 3/3 green Elephant creature token onto the battlefield.|
Wax|Invasion|296a|U|{G}|Instant|||Target creature gets +2/+2 until end of turn.$|
Wane|Invasion|296b|U|{W}|Instant|||$Destroy target enchantment.|
@@ -28660,12 +28660,12 @@ Dead|Planar Chaos|113a|C|{R}|Instant|||Dead deals 2 damage to target creature.$|
Gone|Planar Chaos|113b|C|{2}{R}|Instant|||$Return target creature you don't control to its owner's hand.|
Rough|Planar Chaos|114a|U|{1}{R}|Sorcery|||Rough deals 2 damage to each creature without flying.$|
Tumble|Planar Chaos|114b|U|{5}{R}|Sorcery|||$Tumble deals 6 damage to each creature with flying.|
-Assault|Planechase|103a|U|{R}|Sorcery|||Assault deals 2 damage to target creature or player.$|
+Assault|Planechase|103a|U|{R}|Sorcery|||Assault deals 2 damage to any target.$|
Battery|Planechase|103b|U|{3}{G}|Sorcery|||$Put a 3/3 green Elephant creature token onto the battlefield.|
Order|Planechase|104a|U|{3}{W}|Instant|||Exile target attacking creature.$|
Chaos|Planechase|104b|U|{2}{R}|Instant|||$Creatures can't block this turn.|
Golgari Grave-Troll|Ravnica: City of Guilds|167|R|{4}{G}|Creature - troll skeleton|0|0|Golgari Grave-Troll enters the battlefield with a +1/+1 counter on it for each creature card in your graveyard.${1}, Remove a +1/+1 counter from Golgari Grave-Troll: Regenerate Golgari Grave-Troll.$Dredge 6 (If you would draw a card, instead you may put exactly six cards from the top of your library into your graveyard. If you do, return this card from your graveyard to your hand. Otherwise, draw a card.)|
-Assault|Time Spiral "Timeshifted"|106a|Special|{R}|Sorcery|||Assault deals 2 damage to target creature or player.$|
+Assault|Time Spiral "Timeshifted"|106a|Special|{R}|Sorcery|||Assault deals 2 damage to any target.$|
Battery|Time Spiral "Timeshifted"|106b|Special|{3}{G}|Sorcery|||$Put a 3/3 green Elephant creature token onto the battlefield.|
Alive|Dragon's Maze|121a|U|{3}{G}|Sorcery|||Put a 3/3 green Centaur creature token onto the battlefield.$Fuse (You may cast one or both halves of this card from your hand.)|
Well|Dragon's Maze|121b|U|{W}|Sorcery|||You gain 2 life for each creature you control.$Fuse (You may cast one or both halves of this card from your hand.)|
@@ -28682,7 +28682,7 @@ Down|Dragon's Maze|126b|U|{3}{B}|Sorcery|||Target player discards two cards.$Fus
Far|Dragon's Maze|127a|U|{1}{U}|Instant|||Return target creature to its owner's hand.$Fuse (You may cast one or both halves of this card from your hand.)|
Away|Dragon's Maze|127b|U|{2}{B}|Instant|||Target player sacrifices a creature.$Fuse (You may cast one or both halves of this card from your hand.)|
Flesh|Dragon's Maze|128a|R|{3}{B}{G}|Sorcery|||Exile target creature card from a graveyard. Put X +1/+1 counters on target creature, where X is the power of the card you exiled.$Fuse (You may cast one or both halves of this card from your hand.)|
-Blood|Dragon's Maze|128b|R|{R}{G}|Sorcery|||Target creature you control deals damage equal to its power to target creature or player.$Fuse (You may cast one or both halves of this card from your hand.)|
+Blood|Dragon's Maze|128b|R|{R}{G}|Sorcery|||Target creature you control deals damage equal to its power to any target.$Fuse (You may cast one or both halves of this card from your hand.)|
Give|Dragon's Maze|129a|U|{2}{G}|Sorcery|||Put three +1/+1 counters on target creature.$Fuse (You may cast one or both halves of this card from your hand.)|
Take|Dragon's Maze|129b|U|{2}{U}|Sorcery|||Remove all +1/+1 counters from target creature you control. Draw that many cards.$Fuse (You may cast one or both halves of this card from your hand.)|
Profit|Dragon's Maze|130a|U|{1}{W}|Instant|||Creatures you control get +1/+1 until end of turn.$Fuse (You may cast one or both halves of this card from your hand.)|
@@ -28693,7 +28693,7 @@ Ready|Dragon's Maze|132a|R|{1}{G}{W}|Instant|||Creatures you control are indestr
Willing|Dragon's Maze|132b|R|{1}{W}{B}|Instant|||Creatures you control gain deathtouch and lifelink until end of turn.$Fuse (You may cast one or both halves of this card from your hand.)|
Trouble|Dragon's Maze|133a|U|{2}{R}|Sorcery|||Trouble deals damage to target player equal to the number of cards in that player's hand.$Fuse (You may cast one or both halves of this card from your hand.)|
Toil|Dragon's Maze|133b|U|{2}{B}|Sorcery|||Target player draws two cards and loses 2 life.$Fuse (You may cast one or both halves of this card from your hand.)|
-Burn|Dragon's Maze|134a|U|{1}{R}|Instant|||Burn deals 2 damage to target creature or player.$Fuse (You may cast one or both halves of this card from your hand.)|
+Burn|Dragon's Maze|134a|U|{1}{R}|Instant|||Burn deals 2 damage to any target.$Fuse (You may cast one or both halves of this card from your hand.)|
Turn|Dragon's Maze|134b|U|{2}{U}|Instant|||Target creature loses all abilities and becomes a 0/1 red Weird until end of turn.$Fuse (You may cast one or both halves of this card from your hand.)|
Tear|Dragon's Maze|135a|U|{W}|Instant|||Destroy target enchantment.$Fuse (You may cast one or both halves of this card from your hand.)|
Wear|Dragon's Maze|135b|U|{1}{R}|Instant|||Destroy target artifact.$Fuse (You may cast one or both halves of this card from your hand.)|
@@ -28705,7 +28705,7 @@ Blue Elemental Blast|Media Inserts|5|Special|{U}|Instant|||Choose one - Counter
Mana Crypt|Media Inserts|6|Special|{0}|Artifact|||At the beginning of your upkeep, flip a coin. If you lose the flip, Mana Crypt deals 3 damage to you.${tap}: Add {C}{C}.|
Windseeker Centaur|Media Inserts|7|Special|{1}{R}{R}|Creature - Centaur|2|2|Vigilance|
Giant Badger|Media Inserts|8|Special|{1}{G}{G}|Creature - Badger|2|2|Whenever Giant Badger blocks, it gets +2/+2 until end of turn.|
-Scent of Cinder|Media Inserts|9|Special|{1}{R}|Sorcery|||Reveal any number of red cards in your hand. Scent of Cinder deals X damage to target creature or player, where X is the number of cards revealed this way.|
+Scent of Cinder|Media Inserts|9|Special|{1}{R}|Sorcery|||Reveal any number of red cards in your hand. Scent of Cinder deals X damage to any target, where X is the number of cards revealed this way.|
Lightning Hounds|Media Inserts|10|Special|{2}{R}{R}|Creature - Hound|3|2|First strike|
Spined Wurm|Media Inserts|11|Special|{4}{G}|Creature - Wurm|5|4||
Warmonger|Media Inserts|12|Special|{3}{R}|Creature - Minotaur Monger|3|3|{2}: Warmonger deals 1 damage to each creature without flying and each player. Any player may activate this ability.|
@@ -28714,7 +28714,7 @@ Phyrexian Rager|Media Inserts|14|Special|{2}{B}|Creature - Horror|2|2|When Phyre
Jace Beleren|Media Inserts|15|Special|{1}{U}{U}|Legendary Planeswalker - Jace|||+2: Each player draws a card.$-1: Target player draws a card.$-10: Target player puts the top twenty cards of his or her library into his or her graveyard.|
Garruk Wildspeaker|Media Inserts|16|Special|{2}{G}{G}|Legendary Planeswalker - Garruk|||+1: Untap two target lands.$-1: Put a 3/3 green Beast creature token onto the battlefield.$-4: Creatures you control get +3/+3 and gain trample until end of turn.|
Brion Stoutarm|Media Inserts|17|Special|{2}{R}{W}|Legendary Creature - Giant Warrior|4|4|Lifelink${R}, {tap}, Sacrifice a creature other than Brion Stoutarm: Brion Stoutarm deals damage equal to the sacrificed creature's power to target player.|
-Jaya Ballard, Task Mage|Media Inserts|18|Special|{1}{R}{R}|Legendary Creature - Human Spellshaper|2|2|{R}, {tap}, Discard a card: Destroy target blue permanent.${1}{R}, {tap}, Discard a card: Jaya Ballard, Task Mage deals 3 damage to target creature or player. A creature dealt damage this way can't be regenerated this turn.${5}{R}{R}, {tap}, Discard a card: Jaya Ballard deals 6 damage to each creature and each player.|
+Jaya Ballard, Task Mage|Media Inserts|18|Special|{1}{R}{R}|Legendary Creature - Human Spellshaper|2|2|{R}, {tap}, Discard a card: Destroy target blue permanent.${1}{R}, {tap}, Discard a card: Jaya Ballard, Task Mage deals 3 damage to any target. A creature dealt damage this way can't be regenerated this turn.${5}{R}{R}, {tap}, Discard a card: Jaya Ballard deals 6 damage to each creature and each player.|
Broodmate Dragon|Media Inserts|19|R|{3}{B}{R}{G}|Creature - Dragon|4|4|Flying$When Broodmate Dragon enters the battlefield, put a 4/4 red Dragon creature token with flying onto the battlefield.|
Honor of the Pure|Media Inserts|20|Special|{1}{W}|Enchantment|||White creatures you control get +1/+1.|
Steward of Valeron|Media Inserts|21|Special|{G}{W}|Creature - Human Druid Knight|2|2|Vigilance${tap}: Add {G}.|
@@ -28724,7 +28724,7 @@ Retaliator Griffin|Media Inserts|24|Special|{1}{R}{G}{W}|Creature - Griffin|2|2|
Kor Skyfisher|Media Inserts|25|Special|{1}{W}|Creature - Kor Soldier|2|3|Flying$When Kor Skyfisher enters the battlefield, return a permanent you control to its owner's hand.|
Guul Draz Assassin|Media Inserts|26|Special|{B}|Creature - Vampire Assassin|1|1|Level up {1}{B} ({1}{B}: Put a level counter on this. Level up only as a sorcery.)$LEVEL 2-3$2/2${B}, {tap}: Target creature gets -2/-2 until end of turn.$LEVEL 4+$4/4${B}, {tap}: Target creature gets -4/-4 until end of turn.|
Nissa Revane|Media Inserts|27|Special|{2}{G}{G}|Legendary Planeswalker - Nissa|||+1: Search your library for a card named Nissa's Chosen and put it onto the battlefield. Then shuffle your library.$+1: You gain 2 life for each Elf you control.$-7: Search your library for any number of Elf creature cards and put them onto the battlefield. Then shuffle your library.|
-Birds of Paradise|Media Inserts|28|Special|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color to your mana pool.|
+Birds of Paradise|Media Inserts|28|Special|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color.|
Memoricide|Media Inserts|29|Special|{3}{B}|Sorcery|||Name a nonland card. Search target player's graveyard, hand, and library for any number of cards with that name and exile them. Then that player shuffles his or her library.|
Liliana Vess|Media Inserts|30|Special|{3}{B}{B}|Legendary Planeswalker - Liliana||5|+1: Target player discards a card.$-2: Search your library for a card, then shuffle your library and put that card on top of it.$-8: Put all creature cards from all graveyards onto the battlefield under your control.|
Bloodthrone Vampire|Media Inserts|31|Special|{1}{B}|Creature - Vampire|1|1|Sacrifice a creature: Bloodthrone Vampire gets +2/+2 until end of turn.|
@@ -28736,7 +28736,7 @@ Inferno Titan|Media Inserts|36|Special|{4}{R}{R}|Creature - Giant|6|6|{R}: Infer
Chandra's Phoenix|Media Inserts|37|R|{1}{R}{R}|Creature - Phoenix|2|2|Flying, haste$Whenever an opponent is dealt damage by a red instant or sorcery spell you control or by a red planeswalker you control, return Chandra's Phoenix from your graveyard to your hand.|
Treasure Hunt|Media Inserts|38|Special|{1}{U}|Sorcery|||Reveal cards from the top of your library until you reveal a nonland card, then put all cards revealed this way into your hand.|
Faithless Looting|Media Inserts|39|Special|{R}|Sorcery|||Draw two cards, then discard two cards.$Flashback {2}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
-Devil's Play|Media Inserts|40|Special|{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.)|
+Devil's Play|Media Inserts|40|Special|{X}{R}|Sorcery|||Devil's Play deals X damage to any target.$Flashback {X}{R}{R}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Gravecrawler|Media Inserts|41|Special|{B}|Creature - Zombie|2|1|Gravecrawler can't block.$You may cast Gravecrawler from your graveyard as long as you control a Zombie.|
Electrolyze|Media Inserts|42|Special|{1}{U}{R}|Instant|||Electrolyze deals 2 damage divided as you choose among one or two target creatures and/or players.$Draw a card.|
Feast of Blood|Media Inserts|43|U|{1}{B}|Sorcery|||Cast Feast of Blood only if you control two or more Vampires.$Destroy target creature. You gain 4 life.|
@@ -28750,7 +28750,7 @@ Vampire Nocturnus|Media Inserts|50|Special|{1}{B}{B}{B}|Creature - Vampire|3|3|P
Cathedral of War|Media Inserts|51|Special||Land|||Cathedral of War enters the battlefield tapped.$Exalted (Whenever a creature you control attacks alone, that creature gets +1/+1 until end of turn.)${tap}: Add {C}.|
Terastodon|Media Inserts|52|Special|{6}{G}{G}|Creature - Elephant|9|9|When Terastodon enters the battlefield, you may destroy up to three target noncreature permanents. For each permanent put into a graveyard this way, its controller puts a 3/3 green Elephant creature token onto the battlefield.|
Arrest|Media Inserts|53|C|{2}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature can't attack or block, and its activated abilities can't be activated.|
-Consume Spirit|Media Inserts|54|Special|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Consume Spirit deals X damage to target creature or player and you gain X life.|
+Consume Spirit|Media Inserts|54|Special|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Consume Spirit deals X damage to any target and you gain X life.|
Dreg Mangler|Media Inserts|55|Special|{1}{B}{G}|Creature - Plant Zombie|3|3|Haste$Scavenge {3}{B}{G} ({3}{B}{G}, Exile this card from your graveyard: Put a number of +1/+1 counters equal to this card's power on target creature. Scavenge only as a sorcery.)|
Supreme Verdict|Media Inserts|56|R|{1}{W}{W}{U}|Sorcery|||Supreme Verdict can't be countered.$Destroy all creatures.|
Standstill|Media Inserts|57|Special|{1}{U}|Enchantment|||When a player casts a spell, sacrifice Standstill. If you do, each of that player's opponents draws three cards.|
@@ -28760,7 +28760,7 @@ Turnabout|Media Inserts|60|Special|{2}{U}{U}|Instant|||Choose artifact, creature
Nightveil Specter|Media Inserts|61|Special|{UB}{UB}{UB}|Creature - Specter|2|3|Flying$Whenever Nightveil Specter deals combat damage to a player, that player exiles the top card of his or her library.$You may play cards exiled with Nightveil Specter.|
Voidmage Husher|Media Inserts|62|Special|{3}{U}|Creature - Human Wizard|2|2|Flash (You may cast this spell any time you could cast an instant.)$When Voidmage Husher enters the battlefield, counter target activated ability. (Mana abilities can't be targeted.)$Whenever you cast a spell, you may return Voidmage Husher to its owner's hand.|
Ogre Arsonist|Media Inserts|63|Special|{4}{R}|Creature - Ogre|3|3|When Ogre Arsonist enters the battlefield, destroy target land.|
-Corrupt|Media Inserts|64|Special|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to target creature or player. You gain life equal to the damage dealt this way.|
+Corrupt|Media Inserts|64|Special|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to any target. You gain life equal to the damage dealt this way.|
Chandra's Fury|Media Inserts|65|Special|{4}{R}|Instant|||Chandra's Fury deals 4 damage to target player and 1 damage to each creature that player controls.|
Render Silent|Media Inserts|66|Special|{W}{U}{U}|Instant|||Counter target spell. Its controller can't cast spells this turn.|
Ratchet Bomb|Media Inserts|67|Special|{2}|Artifact|||{T}: Put a charge counter on Ratchet Bomb.${T}, Sacrifice Ratchet Bomb: Destroy each nonland permanent with converted mana cost equal to the number of charge counters on Ratchet Bomb.|
@@ -28773,7 +28773,7 @@ Jace, Memory Adept|Meda Inserts|73|Special|{3}{U}{U}|Legendary Planeswalker - Ja
Liliana of the Dark Realms|Media Inserts|74|Special|{2}{B}{B}|Legendary Planeswalker - Liliana|3|+1: Search your library for a Swamp card, reveal it, and put it into your hand. Then shuffle your library.$-3: Target creature gets +X/+X or -X/-X until end of turn, where X is the number of Swamps you control.$-6: You get an emblem with "Swamps you control have Tap: Add {B}{B}{B}{B}.'"|
Chandra, Pyromaster|Media Inserts|75|Special|{2}{R}{R}|Legendary Planeswalker - Chandra||4|+1: Chandra, Pyromaster deals 1 damage to target player and 1 damage to up to one target creature that player controls. That creature can't block this turn.$0: Exile the top card of your library. You may play it this turn.$-7: Exile the top ten cards of your library. Choose an instant or sorcery card exiled this way and copy it three times. You may cast the copies without paying their mana costs.|
Garruk, Caller of Beasts|Media Inserts|76|Special|{4}{G}{G}|Legendary Planeswalker - Garruk|4|+1: Reveal the top 5 cards of your library. Put all creature cards revealed this way into your hand and the rest on the bottom of your library in any order.$-3: You may put a green creature card from your hand onto the battlefield.$-7: You get an emblem with "Whenever you cast a creature spell, you may search your library for a creature card, put it onto the battlefield, then shuffle your library."|
-Sylvan Caryatid|Media Inserts|77|Special|{1}{G}|Creature - Plant|0|3|Defender, hexproof${tap}: Add one mana of any color to your mana pool.|
+Sylvan Caryatid|Media Inserts|77|Special|{1}{G}|Creature - Plant|0|3|Defender, hexproof${tap}: Add one mana of any color.|
Karametra's Acolyte|Media Inserts|78|Special|{3}{G}|Creature - Human Druid|1|4|{tap}: Add an amount of {G} equal to your devotion to green. (Each {G} in the mana costs of permanents you control counts toward your devotion to green.)|
Fated Conflagration|Media Inserts|79|R|{1}{R}{R}{R}|Instant|||Fated Conflagration deals 5 damage to target creature or planewalker. If it's your turn, scry 2.|
High Tide|Media Inserts|80|Special|{U}|Instant|||Until end of turn, whenever a player taps an Island for mana, that player adds {U} to his or her mana pool (in addition to the mana the land produces).|
@@ -28823,8 +28823,8 @@ Alhammarret, High Arbiter|Media Inserts|124|Special|{5}{U}{U}|Legendary Creature
Dwynen, Gilt-Leaf Daen|Media Inserts|125|Special|{2}{G}{G}|Legendary Creature - Elf Warrior|3|4|Reach$Other Elf creatures you control get +1/+1.$Whenever Dwynen, Gilt-Leaf Daen attacks, you gain 1 life for each attacking Elf you control.|
Hixus, Prison Warden|Media Inserts|126|Special|{3}{W}{W}|Legendary Creature - Human Soldier|4|4|Flash$Whenever a creature deals combat damage to you, if Hixus, Prison Warden entered the battlefield this turn, exile that creature until Hixus leaves the battlefield.|
Kothophed, Soul Hoarder|Media Inserts|127|Special|{4}{B}{B}|Legendary Creature - Demon|6|6|Flying$Whenever a permanent owned by another player is put into the graveyard from the battlefield, you draw one card and lose 1 life.|
-Pia and Kiran Nalaar|Media Inserts|128|Special|{2}{R}{R}|Legendary Creature - Human Artificer|2|2|When Pia and Kiran Nalaar enters the battlefield put 2 1/1 colorless Thopter artifact creature tokens with flying onto the battlefield.${2}{R}, Sacrifice an artifact: Pia and Kiran Nalaar deals 2 damage to target creature or player.|
-Honored Hierarch|Media Inserts|129|Special|{G}|Creature - Human Druid|1|1|Renown 1 (When this creature deals combat damage to a player, if it isn't renowned, put a +1/+1 counter on it and it becomes renowned.)$As long as Honored Hierarch is renowned, it has vigilance and "{t}: Add one mana of any color to your mana pool."|
+Pia and Kiran Nalaar|Media Inserts|128|Special|{2}{R}{R}|Legendary Creature - Human Artificer|2|2|When Pia and Kiran Nalaar enters the battlefield put 2 1/1 colorless Thopter artifact creature tokens with flying onto the battlefield.${2}{R}, Sacrifice an artifact: Pia and Kiran Nalaar deals 2 damage to any target.|
+Honored Hierarch|Media Inserts|129|Special|{G}|Creature - Human Druid|1|1|Renown 1 (When this creature deals combat damage to a player, if it isn't renowned, put a +1/+1 counter on it and it becomes renowned.)$As long as Honored Hierarch is renowned, it has vigilance and "{t}: Add one mana of any color."|
Seeker of the Way|Media Inserts|130|Special|{1}{W}|Creature - Human Warrior|2|2|Prowess (Whenever you cast a noncreature spell, this creature gets +1/+1 until end of turn.)$Whenever you cast a noncreature spell, Seeker of the Way gains lifelink until end of turn.|
Valorous Stance|Media Inserts|131|Special|{1}{W}|Instant|||Choose one -$ Target creature gains indestructible until end of turn.$ Destroy target creature with toughness 4 or greater.|
Dromoka, the Eternal|Media Inserts|132|Special|{3}{G}{W}|Legendary Creature - Dragon|5|5|Flying$Whenever a Dragon you control attacks, bolster 2. (Choose a creature with the least toughness among creatures you control and put two +1/+1 counters on it.)|
@@ -28834,14 +28834,14 @@ Ruinous Path|Media Inserts|135|Special|{1}{B}{B}|Sorcery|||Destroy target creatu
Hero of Goma Fada|Media Inserts|136|Special|{4}{W}|Creature - Human Knight Ally|4|3|Rally � Whenever Hero of Goma Fada or another Ally enters the battlefield under your control, creatures you control gain indestructible until end of turn.|
Drowner of Hope|Media Inserts|137|Special|{5}{U}|Creature - Eldrazi|5|5|Devoid (This card has no color.)$When Drowner of Hope enters the battlefield, put two 1/1 colorless Eldrazi Scion creature tokens onto the battlefield. They have "Sacrifice this creature: Add {C}."$Sacrifice an Eldrazi Scion: Tap Target creature.|
Defiant Bloodlord|Media Inserts|138|Special|{5}{B}{B}|Creature - Vampire|4|5|Flying$Whenever you gain life, target opponent loses that much life.|
-Barrage Tyrant|Media Inserts|139|Special|{4}{R}|Creature - Eldrazi|5|3|Devoid (This card has no color.)${2}{R}, Sacrifice another colorless creature: Barrage Tyrant deals damage equal to the sacrificed creature's power to target creature or player.|
+Barrage Tyrant|Media Inserts|139|Special|{4}{R}|Creature - Eldrazi|5|3|Devoid (This card has no color.)${2}{R}, Sacrifice another colorless creature: Barrage Tyrant deals damage equal to the sacrificed creature's power to any target.|
Oran-Rief Hydra|Media Inserts|140|Special|{4}{G}{G}|Creature - Hydra|5|5|Trample$Landfall � Whenever a land enters the battlefield under your control, put a +1/+1 counter on Oran-Rief Hydra. If that land is a Forest, put two +1/+1 counters on Oran-Rief Hydra instead.|
Scythe Leopard|Media Inserts|141|Special|{G}|Creature - Cat|1|1|Landfall-Whenever a land enters the battlefield under your control, Scythe Leopard gets +1/+1 until end of turn.|
Genesis Hydra|Media Inserts|142|Special|{X}{G}{G}|Creature - Plant Hydra|0|0|When you cast Genesis Hydra, reveal the top X cards of your library. You may put a nonland permanent card with converted mana cost X or less from among them onto the battlefield. Then shuffle the rest into your library.$Genesis Hydra enters the battlefield with X +1/+1 counters on it.|
Munda's Vanguard|Media Inserts|143|R|{4}{W}|Creature - Kor Knight Ally|3|3|Cohort — {T}, Tap an untapped Ally you control: Put a +1/+1 counter on each creature you control.|
Deepfathom Skulker|Media Inserts|144|R|{5}{U}|Creature - Eldrazi|4|4|Devoid (This card has no color.)$Whenever a creature you control deals combat damage to a player, you may draw a card.${3}{C}: Target creature can't be blocked this turn.|
Dread Defiler|Media Inserts|145|R|{6}{B}|Creature - Eldrazi|6|8|Devoid (This card has no color.)${3}{C}, Exile a creature card from your graveyard: Target opponent loses life equal to the exiled card's power.|
-Tyrant of Valakut|Media Inserts|146|R|{5}{R}{R}|Creature - Dragon|5|4|Surge {3}{R}{R} (You may cast this spell for its surge cost if you or a teammate has cast another spell this turn.)$Flying$When Tyrant of Valakut enters the battlefield, if its surge cost was paid, it deals 3 damage to target creature or player.|
+Tyrant of Valakut|Media Inserts|146|R|{5}{R}{R}|Creature - Dragon|5|4|Surge {3}{R}{R} (You may cast this spell for its surge cost if you or a teammate has cast another spell this turn.)$Flying$When Tyrant of Valakut enters the battlefield, if its surge cost was paid, it deals 3 damage to any target.|
Gladehart Cavalry|Media Inserts|147|R|{5}{G}{G}|Creature - Elf Knight|6|6|When Gladehart Cavalry enters the battlefield, support 6. (Put a +1/+1 counter on each of up to six other target creatures.)$Whenever a creature you control with a +1/+1 counter on it dies, you gain 2 life.|
Goblin Dark-Dwellers|Media Inserts|148|R|{3}{R}{R}|Creature - Goblin|4|4|Menace$When Goblin Dark-Dwellers enters the battlefield, you may cast target instant or sorcery card with converted mana cost 3 or less from your graveyard without paying its mana cost. If that card would be put into your graveyard this turn, exile it instead.|
Drogskol Cavalry|Media Inserts|149|R|{5}{W}{W}|Creature - Spirit Knight|4|4|Flying$Whenever another Spirit enters the battlefield under your control, you gain 2 life.${3}{W}: Put a 1/1 white Spirit creature token with flying onto the battlefield.|
@@ -28876,11 +28876,11 @@ Nissa, Voice of Zendikar|Media Inserts|176|M|{1}{G}{G}|Legendary Planeswalker -
Gideon of the Trials|Media Inserts|177|M|{1}{W}{W}|Legendary Planeswalker - Gideon|||+1: Until your next turn, prevent all damage target permanent would deal.$0: Until end of turn, Gideon of the Trials becomes a 4/4 Human Soldier creature with indestructible that's still a planeswalker. Prevent all damage that would be dealt to him this turn.$0: You get an emblem with "As long as you control a Gideon planeswalker, you can't lose the game and your opponents can't win the game."|
Jace, Unraveler of Secrets|Media Inserts|178|M|{3}{U}{U}|Legendary Planeswalker - Jace|||+1: Scry 1, then draw a card.$-2: Return target creature to its owner's hand.$-8: You get an emblem with "Whenever an opponent casts his or her first spell each turn, counter that spell."|
Liliana, Death's Majesty|Media Inserts|179|M|{3}{B}{B}|Legendary Planeswalker - Liliana|||+1: Create a 2/2 black Zombie creature token. Put the top two cards of your library into your graveyard.$-3: Return target creature card from your graveyard to the battlefield. That creature is a black Zombie in addition to its others colors and types.$-7: Destroy all non-Zombie creatures.|
-Chandra, Torch of Defiance|Media Inserts|180|M|{2}{R}{R}|Legendary Planeswalker - Chandra|||+1: Exile the top card of your library. You may cast that card. If you don't, Chandra, Torch of Defiance deals 2 damage to each opponent.$+1: Add {R}{R}.$-3: Chandra, Torch of Defiance deals 4 damage to target creature.$-7: You get an emblem with "Whenever you cast a spell, this emblem deals 5 damage to target creature or player."|
+Chandra, Torch of Defiance|Media Inserts|180|M|{2}{R}{R}|Legendary Planeswalker - Chandra|||+1: Exile the top card of your library. You may cast that card. If you don't, Chandra, Torch of Defiance deals 2 damage to each opponent.$+1: Add {R}{R}.$-3: Chandra, Torch of Defiance deals 4 damage to target creature.$-7: You get an emblem with "Whenever you cast a spell, this emblem deals 5 damage to any target."|
Nicol Bolas, God-Pharaoh|Media Inserts|181|M|{4}{U}{B}{R}|Legendary Planeswalker - Bolas|||+2: Target opponent exiles cards from the top of his or her library until he or she exiles a nonland card. Until end of turn, you may cast that card without paying its mana cost.$+1: Each opponent exiles two cards from his or her hand.$-4: Nicol Bolas, God-Pharaoh deals 7 damage to target opponent or creature an opponent controls.$-12: Exile each nonland permanent your opponents control.|
Nissa, Steward of Elements|Media Inserts|182|M|{X}{G}{U}|Legendary Planeswalker - Nissa|||+2: Scry 2.$0: Look at the top card of your library. If it's a land card or a creature card with converted mana cost less than or equal to the number of loyalty counters on Nissa, Steward of Elements, you may put that card onto the battlefield.$-6: Untap up to two target lands you control. They become 5/5 Elemental creatures with flying and haste until end of turn. They're still lands.|
Burning Sun's Avatar|Media Inserts|183|R|{3}{R}{R}{R}|Creature - Dinosaur Avatar|6|6|When Burning Sun's Avatar enters the battlefield, it deals 3 damage to target opponent and 3 damage to up to one target creature.|
-Unclaimed Territory|Media Inserts|184|U||Land|||As Unclaimed Territory enters the battlefield, choose a creature type.${T}: Add {C}.${T}: Add one mana of any color to your mana pool. Spend this mana only to cast a creature spell of the chosen type.|
+Unclaimed Territory|Media Inserts|184|U||Land|||As Unclaimed Territory enters the battlefield, choose a creature type.${T}: Add {C}.${T}: Add one mana of any color. Spend this mana only to cast a creature spell of the chosen type.|
Kytheon, Hero of Akros|Media Inserts|994|Special|{W}|Legendary Creature - Human Soldier|2|1|At end of combat, if Kytheon, Hero of Akros and at least two other creatures attacked this combat, exile Kytheon, then return him to the battlefield transformed under his owner's control.${2}{W}: Kytheon gains indestructible until end of turn.|
Gideon, Battle-Forged|Media Inserts|994|Special||Legendary Planeswalker - Gideon|3|+2: Up to one target creature an opponent controls attacks Gideon, Battle-Forged during its controller's next turn if able.$+1: Until your next turn, target creature gains indestructible. Untap that creature.$0: Until end of turn, Gideon, Battle-Forged becomes a 4/4 Human Soldier creature with indestructible that's still a planeswalker. Prevent all damage that would be dealt to him this turn.|
Jace, Vryn's Prodigy|Media Inserts|995|Special|{1}{U}|Legendary Creature - Human Wizard|0|2|{T}: Draw a card, then discard a card. If there are five or more cards in your graveyard, exile Jace, Vryn''s Prodigy, then return him to the battefield transformed under his owner's control. |
@@ -29055,22 +29055,22 @@ Avacyn's Judgment|Shadows over Innistrad|145|R|{1}{R}|Sorcery|||Madness {X}{R} <
Bloodmad Vampire|Shadows over Innistrad|146|C|{2}{R}|Creature - Vampire Berserker|4|1|Whenever Bloodmad Vampire deals combat damage to a player, put a +1/+1 counter on it.$Madness {1}{R} (If you discard this card, discard it into exile. When you do, cast it for its madness cost or put it into your graveyard.)|
Breakneck Rider|Shadows over Innistrad|147a|U|{1}{R}{R}|Creature - Human Scout Werewolf|3|3|At the beginning of each upkeep, if no spells were cast last turn, transform Breakneck Rider.|
Neck Breaker|Shadows over Innistrad|147b|U||Creature - Werewolf|4|3|Attacking creatures you control get +1/+0 and have trample.$At the beginning of each upkeep, if a player cast two or more spells last turn, transform Neck Breaker.|
-Burn from Within|Shadows over Innistrad|148|R|{X}{R}|Sorcery|||Burn from Within deals X damage to target creature or player. If a creature is dealt damage this way, it loses indestructible until end of turn. If that creature would die this turn, exile it instead.|
+Burn from Within|Shadows over Innistrad|148|R|{X}{R}|Sorcery|||Burn from Within deals X damage to any target. If a creature is dealt damage this way, it loses indestructible until end of turn. If that creature would die this turn, exile it instead.|
Convicted Killer|Shadows over Innistrad|149a|C|{2}{R}|Creature - Human Werewolf|2|2|At the beginning of each upkeep, if no spells were cast last turn, transform Convicted Killer.|
Branded Howler|Shadows over Innistrad|149b|C||Creature - Werewolf|4|4|At the beginning of each upkeep, if a player cast two or more spells last turn, transform Branded Howler.|
-Dance with Devils|Shadows over Innistrad|150|U|{3}{R}|Instant|||Put two 1/1 red Devil creature tokens onto the battlefield. They have "When this creature dies, it deals 1 damage to target creature or player."|
-Devil's Playground|Shadows over Innistrad|151|R|{4}{R}{R}|Sorcery|||Put four 1/1 red Devil creature tokens onto the battlefield. They have "When this creature dies, it deals 1 damage to target creature or player."|
+Dance with Devils|Shadows over Innistrad|150|U|{3}{R}|Instant|||Put two 1/1 red Devil creature tokens onto the battlefield. They have "When this creature dies, it deals 1 damage to any target."|
+Devil's Playground|Shadows over Innistrad|151|R|{4}{R}{R}|Sorcery|||Put four 1/1 red Devil creature tokens onto the battlefield. They have "When this creature dies, it deals 1 damage to any target."|
Dissension in the Ranks|Shadows over Innistrad|152|U|{3}{R}{R}|Instant|||Target blocking creature fights another target blocking creature.|
Dual Shot|Shadows over Innistrad|153|C|{R}|Instant|||Dual Shot deals 1 damage to each of up to two target creatures.|
Ember-Eye Wolf|Shadows over Innistrad|154|C|{1}{R}|Creature - Wolf|1|2|Haste${1}{R}: Ember-Eye Wolf gets +2/+0 until end of turn.|
Falkenrath Gorger|Shadows over Innistrad|155|R|{R}|Creature - Vampire Warrior|2|1|Each Vampire creature card you own that isn't on the battlefield has madness. Its madness cost is equal to its mana cost. (If you discard a card with madness, discard it into exile. When you do, cast it for its madness cost or put it into your graveyard.)|
-Fiery Temper|Shadows over Innistrad|156|C|{1}{R}{R}|Instant|||Fiery Temper deals 3 damage to target creature or player.$Madness {R} (If you discard this card, you may play it for its madness cost instead of putting it into your graveyard.)|
+Fiery Temper|Shadows over Innistrad|156|C|{1}{R}{R}|Instant|||Fiery Temper deals 3 damage to any target.$Madness {R} (If you discard this card, you may play it for its madness cost instead of putting it into your graveyard.)|
Flameblade Angel|Shadows over Innistrad|157|R|{4}{R}{R}|Creature - Angel|4|4|Flying$Whenever a source an opponent controls deals damage to you or a permanent you control, you may have Flameblade Angel deal 1 damage to that source's controller.|
Gatstaf Arsonists|Shadows over Innistrad|158a|C|{4}{R}|Creature - Human Werewolf|5|4|At the beginning of each upkeep, if no spells were cast last turn, transform Gatstaf Arsonists.|
Gatstaf Ravagers|Shadows over Innistrad|158b|C||Creature - Werewolf|6|5|Menace (THis creature 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 Gatstaf Ravagers.|
Geier Reach Bandit|Shadows over Innistrad|159a|R|{2}{R}|Creature - Human Rogue Werewolf|3|2|Haste$At the beginning of each upkeep, if no spells were cast last turn, transform Geier Reach Bandit.|
Vildin-Pack Alpha|Shadows over Innistrad|159b|R||Creature - Werewolf|4|3|Whenever a Werewolf enters the battlefield under your control, you may transform it.$At the beginning of each upkeep, if a player cast two or more spells last turn, transform Vildin-Pack Alpha.|
-Geistblast|Shadows over Innistrad|160|U|{2}{R}|Instant|||Geistblast deals 2 damage to target creature or player.${2}{U}, Exile Geist from your graveyard: Copy target instant or sorcery you control. You may choose new targets for the copy.|
+Geistblast|Shadows over Innistrad|160|U|{2}{R}|Instant|||Geistblast deals 2 damage to any target.${2}{U}, Exile Geist from your graveyard: Copy target instant or sorcery you control. You may choose new targets for the copy.|
Gibbering Fiend|Shadows over Innistrad|161|U|{1}{R}|Creature - Devil|2|1|When Gibbering Fiend enters the battlefield, it deals 1 damage to each opponent.$Delirium — At the beginning of each opponent's upkeep, if there are four or more card types among cards in your graveyard, Gibbering Fiend deals 1 damage to that player.|
Goldnight Castigator|Shadows over Innistrad|162|M|{2}{R}{R}|Creature - Angel|4|9|Flying, haste$If a source would deal damage to you, it deals double that damage to you instead.$If a source would deal damage to Goldnight Castigator, it deals double that damage to Goldnight Castigator instead.|
Harness the Storm|Shadows over Innistrad|163|R|{2}{R}|Enchantment|||Whenever you cast an instant or sorcery spell from your hand, you may cast target card with the same name as that spell from your graveyard.|
@@ -29114,7 +29114,7 @@ Byway Courier|Shadows over Innistrad|196|C|{2}{G}|Creature - Human Scout|3|2|Whe
Clip Wings|Shadows over Innistrad|197|C|{1}{G}|Instant|||Each opponent sacrifices a creature with flying.|
Confront the Unknown|Shadows over Innistrad|198|C|{G}|Instant|||Investigate, then target creature gets +1/+1 until end of turn. (To investigate, put a colorless Clue artifact token onto the battlefield with "{2}, Sacrifice this artifact: Draw a card.")|
Crawling Sensation|Shadows over Innistrad|199|U|{2}{G}|Enchantment|||At the beginning of your upkeep, you may put the top two cards of your library into your graveyard.$Whenever one or more land cards are put into your graveyard from anywhere for the first time each turn, put a 1/1 green Insect creature token onto the battlefield.|
-Cryptolith Rite|Shadows over Innistrad|200|R|{1}{R}|Enchantment|||Creature you control have "{T}: Add one mana of any color to your mana pool."|
+Cryptolith Rite|Shadows over Innistrad|200|R|{1}{R}|Enchantment|||Creature you control have "{T}: Add one mana of any color."|
Cult of the Waxing Moon|Shadows over Innistrad|201|U|{4}{G}|Creature - Human Shaman|5|4|Whenever a permanent you control transfrom into a non-Human creature, put a 2/2 green Wolf creature token onto the battlefield.|
Deathcap Cultivator|Shadows over Innistrad|202|R|{1}{G}|Creature - Human Druid|2|1|{T}: Add {B} or {G}.$Delirium — Deathcap Cultivator has deathtouch as long as there are four or more card types among cards in your graveyard.|
Duskwatch Recruiter|Shadows over Innistrad|203a|U|{1}{G}|Creature - Human Warrior Werewolf|2|2|{2}{G}: Look at the top three cards of your library. You may reveal a creature card from among them and put it into your hand. Put the rest on the bottom of your library in any order.$At the beginning of each upkeep, if no spells were cast last turn, transform Duskwatch Recruiter.|
@@ -29134,7 +29134,7 @@ Intrepid Provisioner|Shadows over Innistrad|213|C|{3}{G}|Creature - Human Scout|
Kessig Dire Swine|Shadows over Innistrad|214|C|{4}{G}{G}|Creature - Boar Horror|6|6|Delirium — Kessig Dire Swine has trample as long as there are four or more card types among cards in your graveyard.|
Lambholt Pacifist|Shadows over Innistrad|215a|U|{1}{G}|Creature - Human Shaman Werewolf|3|3|Lambholt Pacifist can't attack unless you control a creature with power 4 or greater.$At the beginning of each upkeep, if no spells were cast last turn, transform Lambholt Pacifist.|
Lambholt Butcher|Shadows over Innistrad|215b|U||Creature - Werewolf|4|4|At the beginning of each upkeep, if a player cast two or more spells last turn, transform Lambholt Butcher.|
-Loam Dryad|Shadows over Innistrad|216|C|{G}|Creature - Dryad Horror|1|2|{T}, Tap an untapped creature you control: Add one mana of any color to your mana pool.|
+Loam Dryad|Shadows over Innistrad|216|C|{G}|Creature - Dryad Horror|1|2|{T}, Tap an untapped creature you control: Add one mana of any color.|
Might Beyond Reason|Shadows over Innistrad|217|C|{3}{G}|Instant|||Put two +1/+1 counter on target creature.$Delirium — Put three +1/+1 counter on that creature instead if there are four or more card types among cards in your graveyard.|
Moldgraf Scavenger|Shadows over Innistrad|218|C|{1}{G}|Creature - Fungus|0|4|Delirium — Moldgraf Scavenger gets +3/+0 as long as there are four or more card types among cards in your graveyard.|
Moonlight Hunt|Shadows over Innistrad|219|U|{1}{G}|Instant|||Choose target creature you don't control. Each creature you control that's a Wolf or Werewolf deals damage equal to its power to that creature.|
@@ -29160,11 +29160,11 @@ Ulvenwald Mysteries|Shadows over Innistrad|236|U|{2}{G}|Enchantment|||Whenever a
Vessel of Nascency|Shadows over Innistrad|237|C|{G}|Enchantment|||{1}{G}, Sacrifice Vessel of Nascency: Reveal the top four cards of your library. You may put an artifact, creature, enchantment, land, or planeswalker card from among them into your hand. Put the rest into your graveyard.|
Veteran Cathar|Shadows over Innistrad|238|U|{1}{G}|Creature - Human Soldier|2|2|{3}{W}: Target Human gains double strike until end of turn.|
Watcher in the Web|Shadows over Innistrad|239|C|{4}{G}|Creature - Spider|2|5|Reach (This creature can block creature with flying.)$Watcher in the Web can block an additional seven creatures each combat.|
-Weirding Wood|Shadows over Innistrad|240|U|{2}{G}|Enchantment - Aura|||Enchant land$When Weirding Wood enters the battlefield, investigate. (Put a colorless Clue artifact token onto the battlefield with "{2}, Sacrifice this artifact: Draw a card.")$Enchanted land has "{T}: Add two mana of any one color to your mana pool."|
+Weirding Wood|Shadows over Innistrad|240|U|{2}{G}|Enchantment - Aura|||Enchant land$When Weirding Wood enters the battlefield, investigate. (Put a colorless Clue artifact token onto the battlefield with "{2}, Sacrifice this artifact: Draw a card.")$Enchanted land has "{T}: Add two mana of any one color."|
Altered Ego|Shadows over Innistrad|241|R|{X}{2}{G}{U}|Creature - Shapeshifter|0|0|Altered Ego can't be countered.$You may have Altered Ego enter the battlefield as a copy of any creature on the battlefield, except it enters with an additional X +1/+1 counters on it.|
Anguished Unmaking|Shadows over Innistrad|242|R|{1}{W}{B}|Instant|||Exile target nonland permanent. You lose 3 life.|
Arlinn Kord|Shadows over Innistrad|243a|M|{2}{R}{G}|Legendary Planeswalker - Arlinn|||+1: Until end of turn, up to one target creature gets +2/+2 and gains vigilance and haste.$0: Put a 2/2 green Wolf creature token onto the battlefield. Transform Arlinn Kord.|
-Arlinn, Embraced by the Moon|Shadows over Innistrad|243b|M||Legendary Planeswalker - Arlinn|||+1: Creatures you control get +1/+1 and gain trample until end of turn.$-1: Arlinn, Embraced by the Moon deals 3 damage to target creature or player. Transform Arlinn, Embraced by the Moon.$-6: You get an emblem with "Creatures you control have haste and '{T}: This creature deals damage equal to its power to target creature or player.'"|
+Arlinn, Embraced by the Moon|Shadows over Innistrad|243b|M||Legendary Planeswalker - Arlinn|||+1: Creatures you control get +1/+1 and gain trample until end of turn.$-1: Arlinn, Embraced by the Moon deals 3 damage to any target. Transform Arlinn, Embraced by the Moon.$-6: You get an emblem with "Creatures you control have haste and '{T}: This creature deals damage equal to its power to any target.'"|
Fevered Visions|Shadows over Innistrad|244|R|{1}{U}{R}|Enchantment|||At the beginning of each player's end step, that player draws a card. If the player is your opponent and has four or more cards in hand, Fevered Visions deals 2 damage to him or her.|
The Gitrog Monster|Shadows over Innistrad|245|M|{3}{B}{G}|Legendary Creature - Frog Horror|6|6|Deathtouch$At the beginning of your upkeep, sacrifice The Gitrog Monster unless you sacrifice a land.$You may play an additional land on each of your turns.$Whenever one or more land cards are put into your graveyard from anywhere, draw a card.|
Invocation of Saint Traft|Shadows over Innistrad|246|R|{1}{W}{U}|Enchantment - Aura|||Enchant Creature$Enchanted creature has "Whenever this creature attacks, put a 4/4 white Angel creature token with flying onto the battlefield tapped and attacking. Exile that token at end of combat."|
@@ -29174,9 +29174,9 @@ Prized Amalgam|Shadows over Innistrad|249|R|{1}{U}{B}|Creature - Zombie|3|3|When
Sigarda, Heron's Grace|Shadows over Innistrad|250|M|{3}{G}{W}|Legendary Creature - Angel|4|5|Flying$You and Humans you control have hexproof.${2}, Exile a card from your graveyard: Put a 1/1 white Human Soldier creature token onto the battlefield.|
Sorin, Grim Nemesis|Shadows over Innistrad|251|M|{4}{W}{B}|Legendary Planeswalker - Sorin|||+1: Reveal the top card of your library and put that card into your hand. Each opponent loses life equal to its converted mana cost.$-X: Sorin, Grim Nemesis deals X damage to target creature or planeswalker and you gain X life.$-9: Put a number of 1/1 black Vampire Knight creature tokens with lifelink onto the battlefield equal to the highest life total among all players.|
Brain in a Jar|Shadows over Innistrad|252|R|{2}|Artifact|||{1}, {T}: Put a charge counter on Brain in a Jar, then you may cast an instant or sorcery card with converted mana costs equal to the number of charge counters on Brain in a Jar from your hand without paying its mana cost.${3}< {T}, Remove X charge counters from Brain in a Jar: Scry X.|
-Corrupted Grafstone|Shadows over Innistrad|253|R|{2}|Artifact|||Corrupted Grafstone enters the battlefield tapped.${T}: Choose a color of a card in your graveyard. Add mana of that color to your mana pool.|
+Corrupted Grafstone|Shadows over Innistrad|253|R|{2}|Artifact|||Corrupted Grafstone enters the battlefield tapped.${T}: Choose a color of a card in your graveyard. Add mana of that color.|
Epitaph Golem|Shadows over Innistrad|254|U|{5}|Artifact Creature - Golem|3|5|{2}: Put target card from your graveyard on the bottom of your library.|
-Explosive Apparatus|Shadows over Innistrad|255|C|{1}|Artifact|||{3}, {T}, Sacrifice Explosive Apparatus: Explosive Apparatus deals 2 damage to target creature or player.|
+Explosive Apparatus|Shadows over Innistrad|255|C|{1}|Artifact|||{3}, {T}, Sacrifice Explosive Apparatus: Explosive Apparatus deals 2 damage to any target.|
Harvest Hand|Shadows over Innistrad|256a|U|{3}|Artifact Creature - Scarecrow|2|2|When Harvest Hand dies, return it to the battlefield transformed under your control.|
Scrounged Scythe|Shadows over Innistrad|256b|U||Artifact - Equipment|||Equipped creature gets +1/+1.$As long as equipped creature is a Human, it has menace. (It can't be blocked except by two or more creatures.)$Equip {2}|
Haunted Cloak|Shadows over Innistrad|257|U|{3}|Artifact - Equipment|||Equipped creature has vigilance, trample, and haste.$Equip {1}|
@@ -29244,7 +29244,7 @@ Jace, the Mind Sculptor|Eternal Masters|57|M|{2}{U}{U}|Legendary Planeswalker -
Man-o'-War|Eternal Masters|59|C|{2}{U}|Creature - Jellyfish|2|2|When Man-o'-War enters the battlefield, return target creature to its owner's hand.|
Mystical Tutor|Eternal Masters|62|R|{U}|Instant|||Search your library for an instant or sorcery card and reveal that card. Shuffle your library, then put the card on top of it.|
Oona's Grace|Eternal Masters|63|C|{2}{U}|Instant|||Target player draws a card.$Retrace (You may cast this card from your graveyard by discarding a land card in addition to paying its other costs.)|
-Prodigal Sorcerer|Eternal Masters|67|U|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to target creature or player.|
+Prodigal Sorcerer|Eternal Masters|67|U|{2}{U}|Creature - Human Wizard|1|1|{tap}: Prodigal Sorcerer deals 1 damage to any target.|
Quiet Speculation|Eternal Masters|68|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.|
Animate Dead|Eternal Masters|78|U|{1}{B}|Enchantment - Aura|||Enchant creature card in a graveyard$When Animate Dead enters the battlefield, if it's on the battlefield, it loses "enchant creature card in a graveyard" and gains "enchant creature put onto the battlefield with Animate Dead." Return enchanted creature card to the battlefield under your control and attach Animate Dead to it. When Animate Dead leaves the battlefield, that creature's controller sacrifices it.$Enchanted creature gets -1/-0.|
Cabal Therapy|Eternal Masters|83|U|{B}|Sorcery|||Name a nonland card. Target player reveals his or her hand and discards all cards with that name.$Flashback Sacrifice a creature. (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
@@ -29258,10 +29258,10 @@ Sengir Autocrat|Eternal Masters|105|U|{3}{B}|Creature - Human|2|2|When Sengir Au
Sinkhole|Eternal Masters|106|R|{B}{B}|Sorcery|||Destroy target land.|
Toxic Deluge|Eternal Masters|108|R|{2}{B}|Sorcery|||As an additional cost to cast Toxic Deluge, pay X life.$All creatures get -X/-X until end of turn.|
Vampiric Tutor|Eternal Masters|112|M|{B}|Instant|||Search your library for a card, then shuffle your library and put that card on top of it. You lose 2 life.|
-Burning Vengeance|Eternal Masters|121|U|{2}{R}|Enchantment|||Whenever you cast a spell from your graveyard, Burning Vengeance deals 2 damage to target creature or player.|
-Chain Lightning|Eternal Masters|123|U|{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.|
+Burning Vengeance|Eternal Masters|121|U|{2}{R}|Enchantment|||Whenever you cast a spell from your graveyard, Burning Vengeance deals 2 damage to any target.|
+Chain Lightning|Eternal Masters|123|U|{R}|Sorcery|||Chain Lightning deals 3 damage to any target. 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.|
Dualcaster Mage|Eternal Masters|127|R|{1}{R}{R}|Creature - Human Wizard|2|2|Flash$When Dualcaster Mage enters the battlefield, copy target instant or sorcery spell. You may choose new targets for the copy.|
-Firebolt|Eternal Masters|130|C|{R}|Sorcery|||Firebolt deals 2 damage to target creature or player.$Flashback {4}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
+Firebolt|Eternal Masters|130|C|{R}|Sorcery|||Firebolt deals 2 damage to any target.$Flashback {4}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Gamble|Eternal Masters|132|R|{R}|Sorcery|||Search your library for a card, put that card into your hand, discard a card at random, then shuffle your library.|
Price of Progress|Eternal Masters|141|U|{1}{R}|Instant|||Price of Progress deals damage to each player equal to twice the number of nonbasic lands that player controls.|
Pyroblast|Eternal Masters|142|U|{R}|Instant|||Choose one - Counter target spell if it's blue; or destroy target permanent if it's blue.|
@@ -29293,11 +29293,11 @@ Vindicate|Eternal Masters|210|R|{1}{W}{B}|Sorcery|||Destroy target permanent.|
Void|Eternal Masters|211|R|{3}{B}{R}|Sorcery|||Choose a number. Destroy all artifacts and creatures with converted mana cost equal to that number. Then target player reveals his or her hand and discards all nonland cards with converted mana cost equal to the number.|
Wee Dragonauts|Eternal Masters|212|U|{1}{U}{R}|Creature - Faerie Wizard|1|3|Flying$Whenever you cast an instant or sorcery spell, Wee Dragonauts gets +2/+0 until end of turn.|
Call the Skybreaker|Eternal Masters|214|R|{5}{UR}{UR}|Sorcery|||Put a 5/5 blue and red Elemental creature token with flying onto the battlefield.$Retrace (You may cast this card from your graveyard by discarding a land card in addition to paying its other costs.)|
-Deathrite Shaman|Eternal Masters|215|R|{BG}|Creature - Elf Shaman|1|2|{tap}: Exile target land card from a graveyard. Add one mana of any color to your mana pool.${B}, {tap}: Exile target instant or sorcery card from a graveyard. Each opponent loses 2 life.${G}, {tap}: Exile target creature card from a graveyard. You gain 2 life.|
+Deathrite Shaman|Eternal Masters|215|R|{BG}|Creature - Elf Shaman|1|2|{tap}: Exile target land card from a graveyard. Add one mana of any color.${B}, {tap}: Exile target instant or sorcery card from a graveyard. Each opponent loses 2 life.${G}, {tap}: Exile target creature card from a graveyard. You gain 2 life.|
Giant Solifuge|Eternal Masters|216|R|{2}{RG}{RG}|Creature - Insect|4|1|({RG} can be paid with either {R} or {G}.)$Trample; haste; shroud (This permanent can't be the target of spells or abilities.)|
Ashnod's Altar|Eternal Masters|218|U|{3}|Artifact|||Sacrifice a creature: Add {C}{C}.|
-Chrome Mox|Eternal Masters|219|M|{0}|Artifact|||Imprint - When Chrome Mox enters the battlefield, you may exile a nonartifact, nonland card from your hand.${tap}: Add one mana of any of the exiled card's colors to your mana pool.|
-Goblin Charbelcher|Eternal Masters|222|R|{4}|Artifact|||{3}, {tap}: Reveal cards from the top of your library until you reveal a land card. Goblin Charbelcher deals damage equal to the number of nonland cards revealed this way to target creature or player. If the revealed land card was a Mountain, Goblin Charbelcher deals double that damage instead. Put the revealed cards on the bottom of your library in any order.|
+Chrome Mox|Eternal Masters|219|M|{0}|Artifact|||Imprint - When Chrome Mox enters the battlefield, you may exile a nonartifact, nonland card from your hand.${tap}: Add one mana of any of the exiled card's colors.|
+Goblin Charbelcher|Eternal Masters|222|R|{4}|Artifact|||{3}, {tap}: Reveal cards from the top of your library until you reveal a land card. Goblin Charbelcher deals damage equal to the number of nonland cards revealed this way to any target. If the revealed land card was a Mountain, Goblin Charbelcher deals double that damage instead. Put the revealed cards on the bottom of your library in any order.|
Isochron Scepter|Eternal Masters|223|R|{2}|Artifact|||Imprint When Isochron Scepter enters the battlefield, you may exile an instant card with converted mana cost 2 or less from your hand.${2}, {T}: You may copy the exiled card. If you do, you may cast the copy without paying its mana cost.|
Mana Crypt|Eternal Masters|225|M|{0}|Artifact|||At the beginning of your upkeep, flip a coin. If you lose the flip, Mana Crypt deals 3 damage to you.${tap}: Add {C}{C}.|
Nevinyrral's Disk|Eternal Masters|228|R|{4}|Artifact|||Nevinyrral's Disk enters the battlefield tapped.${1}, {T}: Destroy all artifacts, creatures, and enchantments.|
@@ -29306,7 +29306,7 @@ Karakas|Eternal Masters|240|M||Legendary Land|||{tap}: Add {W}.${tap}: Return ta
Maze of Ith|Eternal Masters|241|R||Land|||{T}: Untap target attacking creature. Prevent all combat damage that would be dealt to and dealt by that creature this turn.|
Mishra's Factory|Eternal Masters|242|U||Land|||{tap}: Add {C}.${1}: Mishra's Factory becomes a 2/2 Assembly-Worker artifact creature until end of turn. It's still a land.${tap}: Target Assembly-Worker creature gets +1/+1 until end of turn.|
Wasteland|Eternal Masters|248|R||Land|||{T}: Add {C}.${T}, Sacrifice Wasteland: Destroy target nonbasic land.|
-Abundant Growth|Eternal Masters|156|C|{G}|Enchantment - Aura|||Enchant land$When Abundant Growth enters the battlefield, draw a card.$Enchanted land has "{tap}: Add one mana of any color to your mana pool."|
+Abundant Growth|Eternal Masters|156|C|{G}|Enchantment - Aura|||Enchant land$When Abundant Growth enters the battlefield, draw a card.$Enchanted land has "{tap}: Add one mana of any color."|
Annihilate|Eternal Masters|79|U|{3}{B}{B}|Instant|||Destroy target nonblack creature. It can't be regenerated.$Draw a card.|
Arcanis the Omnipotent|Eternal Masters|39|R|{3}{U}{U}{U}|Legendary Creature - Wizard|3|4|{tap}: Draw three cards.${2}{U}{U}: Return Arcanis the Omnipotent to its owner's hand.|
Armadillo Cloak|Eternal Masters|195|U|{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.|
@@ -29325,7 +29325,7 @@ Brago, King Eternal|Eternal Masters|198|R|{2}{W}{U}|Legendary Creature - Spirit|
Braids, Cabal Minion|Eternal Masters|82|R|{2}{B}{B}|Legendary Creature - Human Minion|2|2|At the beginning of each player's upkeep, that player sacrifices an artifact, creature, or land.|
Brawn|Eternal Masters|159|U|{3}{G}|Creature - Incarnation|3|3|Trample$As long as Brawn is in your graveyard and you control a Forest, creatures you control have trample.|
Calciderm|Eternal Masters|5|U|{2}{W}{W}|Creature - Beast|5|5|Shroud (This creature can't be the target of spells or abilities.)$Vanishing 4 (This permanent enters the battlefield with four time counters on it. At the beginning of your upkeep, remove a time counter from it. When the last is removed, sacrifice it.)|
-Carbonize|Eternal Masters|122|C|{2}{R}|Instant|||Carbonize deals 3 damage to target creature or player. That creature can't be regenerated this turn. If the creature would die this turn, exile it instead.|
+Carbonize|Eternal Masters|122|C|{2}{R}|Instant|||Carbonize deals 3 damage to any target. That creature can't be regenerated this turn. If the creature would die this turn, exile it instead.|
Carrion Feeder|Eternal Masters|84|C|{B}|Creature - Zombie|1|1|Carrion Feeder can't block.$Sacrifice a creature: Put a +1/+1 counter on Carrion Feeder.|
Centaur Chieftain|Eternal Masters|160|U|{3}{G}|Creature - Centaur|3|3|Haste$Threshold - As long as seven or more cards are in your graveyard, Centaur Chieftain has "When Centaur Chieftain enters the battlefield, creatures you control get +1/+1 and gain trample until end of turn."|
Cephalid Sage|Eternal Masters|41|C|{3}{U}|Creature - Cephalid|2|3|Threshold - As long as seven or more cards are in your graveyard, Cephalid Sage has "When Cephalid Sage enters the battlefield, draw three cards, then discard two cards."|
@@ -29353,13 +29353,13 @@ Faith's Fetters|Eternal Masters|10|U|{3}{W}|Enchantment - Aura|||Enchant permane
Faithless Looting|Eternal Masters|128|C|{R}|Sorcery|||Draw two cards, then discard two cards.$Flashback {2}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Fervent Cathar|Eternal Masters|129|C|{2}{R}|Creature - Human Knight|2|1|Haste$When Fervent Cathar enters the battlefield, target creature can't block this turn.|
Field of Souls|Eternal Masters|11|U|{2}{W}{W}|Enchantment|||Whenever a nontoken creature is put into your graveyard from the battlefield, put a 1/1 white Spirit creature token with flying onto the battlefield.|
-Flame Jab|Eternal Masters|131|U|{R}|Sorcery|||Flame Jab deals 1 damage to target creature or player.$Retrace (You may cast this card from your graveyard by discarding a land card in addition to paying its other costs.)|
+Flame Jab|Eternal Masters|131|U|{R}|Sorcery|||Flame Jab deals 1 damage to any target.$Retrace (You may cast this card from your graveyard by discarding a land card in addition to paying its other costs.)|
Flame-Kin Zealot|Eternal Masters|201|U|{1}{R}{R}{W}|Creature - Elemental Berserker|2|2|When Flame-Kin Zealot enters the battlefield, creatures you control get +1/+1 and gain haste until end of turn.|
Flinthoof Boar|Eternal Masters|166|U|{1}{G}|Creature - Boar|2|2|Flinthoof Boar gets +1/+1 as long as you control a Mountain.${R}: Flinthoof Boar gains haste until end of turn. (It can attack and {tap} this turn.)|
Fog|Eternal Masters|167|C|{G}|Instant|||Prevent all combat damage that would be dealt this turn.|
Future Sight|Eternal Masters|50|R|{2}{U}{U}{U}|Enchantment|||Play with the top card of your library revealed.$You may play the top card of your library.|
Gaseous Form|Eternal Masters|51|C|{2}{U}|Enchantment - Aura|||Enchant creature$Prevent all combat damage that would be dealt to and dealt by enchanted creature.|
-Ghitu Slinger|Eternal Masters|133|U|{2}{R}|Creature - Human Nomad|2|2|Echo {2}{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 Ghitu Slinger enters the battlefield, it deals 2 damage to target creature or player.|
+Ghitu Slinger|Eternal Masters|133|U|{2}{R}|Creature - Human Nomad|2|2|Echo {2}{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 Ghitu Slinger enters the battlefield, it deals 2 damage to any target.|
Glacial Wall|Eternal Masters|53|C|{2}{U}|Creature - Wall|0|7|Defender (This creature can't attack.)|
Glare of Subdual|Eternal Masters|202|R|{2}{G}{W}|Enchantment|||Tap an untapped creature you control: Tap target artifact or creature.|
Glimmerpoint Stag|Eternal Masters|12|U|{2}{W}{W}|Creature - Elk|3|3|Vigilance$When Glimmerpoint Stag enters the battlefield, exile another target permanent. Return that card to the battlefield under its owner's control at the beginning of the next end step.|
@@ -29368,7 +29368,7 @@ Harmonize|Eternal Masters|170|U|{2}{G}{G}|Sorcery|||Draw three cards.|
Havoc Demon|Eternal Masters|90|U|{5}{B}{B}|Creature - Demon|5|5|Flying$When Havoc Demon dies, all creatures get -5/-5 until end of turn.|
Heritage Druid|Eternal Masters|171|R|{G}|Creature - Elf Druid|1|1|Tap three untapped Elves you control: Add {G}{G}{G}.|
Honden of Cleansing Fire|Eternal Masters|13|U|{3}{W}|Legendary Enchantment - Shrine|||At the beginning of your upkeep, you gain 2 life for each Shrine you control.|
-Honden of Infinite Rage|Eternal Masters|134|U|{2}{R}|Legendary Enchantment - Shrine|||At the beginning of your upkeep, Honden of Infinite Rage deals damage to target creature or player equal to the number of Shrines you control.|
+Honden of Infinite Rage|Eternal Masters|134|U|{2}{R}|Legendary Enchantment - Shrine|||At the beginning of your upkeep, Honden of Infinite Rage deals damage to any target equal to the number of Shrines you control.|
Honden of Life's Web|Eternal Masters|172|U|{4}{G}|Legendary Enchantment - Shrine|||At the beginning of your upkeep, put a 1/1 colorless Spirit creature token onto the battlefield for each Shrine you control.|
Honden of Night's Reach|Eternal Masters|91|U|{3}{B}|Legendary Enchantment - Shrine|||At the beginning of your upkeep, target opponent discards a card for each Shrine you control.|
Honden of Seeing Winds|Eternal Masters|54|U|{4}{U}|Legendary Enchantment - Shrine|||At the beginning of your upkeep, draw a card for each Shrine you control.|
@@ -29394,7 +29394,7 @@ Merfolk Looter|Eternal Masters|61|U|{1}{U}|Creature - Merfolk Rogue|1|1|{tap}: D
Millikin|Eternal Masters|226|U|{2}|Artifact Creature - Construct|0|1|{tap}, Put the top card of your library into your graveyard: Add {C}.|
Mindless Automaton|Eternal Masters|227|U|{4}|Artifact Creature - Construct|0|0|Mindless Automaton enters the battlefield with two +1/+1 counters on it.${1}, Discard a card: Put a +1/+1 counter on Mindless Automaton.$Remove two +1/+1 counters from Mindless Automaton: Draw a card.|
Mistral Charger|Eternal Masters|20|C|{1}{W}|Creature - Pegasus|2|1|Flying|
-Mogg Fanatic|Eternal Masters|138|C|{R}|Creature - Goblin|1|1|Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to target creature or player.|
+Mogg Fanatic|Eternal Masters|138|C|{R}|Creature - Goblin|1|1|Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to any target.|
Mogg War Marshal|Eternal Masters|139|C|{1}{R}|Creature - Goblin Warrior|1|1|Echo {1}{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 Mogg War Marshal enters the battlefield or dies, put a 1/1 red Goblin creature token onto the battlefield.|
Monk Idealist|Eternal Masters|21|C|{2}{W}|Creature - Human Monk Cleric|2|2|When Monk Idealist enters the battlefield, return target enchantment card from your graveyard to your hand.|
Nature's Claim|Eternal Masters|178|C|{G}|Instant|||Destroy target artifact or enchantment. Its controller gains 4 life.|
@@ -29409,7 +29409,7 @@ Phyrexian Ingester|Eternal Masters|66|U|{6}{U}|Creature - Beast|3|3|Imprint - Wh
Phyrexian Rager|Eternal Masters|102|C|{2}{B}|Creature - Horror|2|2|When Phyrexian Rager enters the battlefield, you draw a card and you lose 1 life.|
Pilgrim's Eye|Eternal Masters|229|C|{3}|Artifact Creature - Thopter|1|1|Flying$When Pilgrim's Eye enters the battlefield, you may search your library for a basic land card, reveal it, put it into your hand, then shuffle your library.|
Plague Witch|Eternal Masters|103|C|{1}{B}|Creature - Elf Spellshaper|1|1|{B}, {tap}, Discard a card: Target creature gets -1/-1 until end of turn.|
-Prismatic Lens|Eternal Masters|230|U|{2}|Artifact|||{tap}: Add {C}.${1}, {tap}: Add one mana of any color to your mana pool.|
+Prismatic Lens|Eternal Masters|230|U|{2}|Artifact|||{tap}: Add {C}.${1}, {tap}: Add one mana of any color.|
Prowling Pangolin|Eternal Masters|104|C|{3}{B}{B}|Creature - Beast|6|5|When Prowling Pangolin enters the battlefield, any player may sacrifice two creatures. If a player does, sacrifice Prowling Pangolin.|
Pyrokinesis|Eternal Masters|143|R|{4}{R}{R}|Instant|||You may exile a red card from your hand rather than pay Pyrokinesis's mana cost.$Pyrokinesis deals 4 damage divided as you choose among any number of target creatures.|
Raise the Alarm|Eternal Masters|24|C|{1}{W}|Instant|||Put two 1/1 white Soldier creature tokens onto the battlefield.|
@@ -29431,7 +29431,7 @@ Serendib Efreet|Eternal Masters|70|R|{2}{U}|Creature - Efreet|3|4|Flying$At the
Serra Angel|Eternal Masters|28|U|{3}{W}{W}|Creature - Angel|4|4|Flying$Vigilance (Attacking doesn't cause this creature to tap.)|
Shelter|Eternal Masters|29|C|{1}{W}|Instant|||Target creature you control gains protection from the color of your choice until end of turn.$$Draw a card.|
Shoreline Ranger|Eternal Masters|71|C|{5}{U}|Creature - Bird Soldier|3|4|Flying$Islandcycling {2} ({2}, Discard this card: Search your library for an Island card, reveal it, and put it into your hand. Then shuffle your library.)|
-Siege-Gang Commander|Eternal Masters|147|R|{3}{R}{R}|Creature - Goblin|2|2|When Siege-Gang Commander enters the battlefield, put three 1/1 red Goblin creature tokens onto the battlefield.${1}{R}, Sacrifice a Goblin: Siege-Gang Commander deals 2 damage to target creature or player.|
+Siege-Gang Commander|Eternal Masters|147|R|{3}{R}{R}|Creature - Goblin|2|2|When Siege-Gang Commander enters the battlefield, put three 1/1 red Goblin creature tokens onto the battlefield.${1}{R}, Sacrifice a Goblin: Siege-Gang Commander deals 2 damage to any target.|
Silent Departure|Eternal Masters|72|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.)|
Silvos, Rogue Elemental|Eternal Masters|186|R|{3}{G}{G}{G}|Legendary Creature - Elemental|8|5|Trample${G}: Regenerate Silvos, Rogue Elemental.|
Skulking Ghost|Eternal Masters|107|C|{1}{B}|Creature - Spirit|2|1|Flying$When Skulking Ghost becomes the target of a spell or ability, sacrifice it.|
@@ -29445,7 +29445,7 @@ Sylvan Might|Eternal Masters|188|C|{1}{G}|Instant|||Target creature gets +2/+2 a
Thornweald Archer|Eternal Masters|189|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.)|
Thornwood Falls|Eternal Masters|246|C||Land|||Thornwood Falls enters the battlefield tapped.$When Thornwood Falls enters the battlefield, you gain 1 life.${tap}: Add {G} or {U}.|
Thunderclap Wyvern|Eternal Masters|208|U|{2}{W}{U}|Creature - Drake|2|3|Flash$Flying$Other creatures you control with flying get +1/+1.|
-Ticking Gnomes|Eternal Masters|233|U|{3}|Artifact Creature - Gnome|3|3|Echo {3} (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.)$Sacrifice Ticking Gnomes: Ticking Gnomes deals 1 damage to target creature or player.|
+Ticking Gnomes|Eternal Masters|233|U|{3}|Artifact Creature - Gnome|3|3|Echo {3} (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.)$Sacrifice Ticking Gnomes: Ticking Gnomes deals 1 damage to any target.|
Tidal Wave|Eternal Masters|75|C|{2}{U}|Instant|||Put a 5/5 blue Wall creature token with defender onto the battlefield. Sacrifice it at the beginning of the next end step.|
Tooth and Claw|Eternal Masters|151|U|{3}{R}|Enchantment|||Sacrifice two creatures: Put a 3/1 red Beast creature token named Carnivore onto the battlefield.|
Torrent of Souls|Eternal Masters|217|U|{4}{BR}|Sorcery|||Return up to one target creature card from your graveyard to the battlefield if {B} was spent to cast Torrent of Souls. Creatures target player controls get +2/+0 and gain haste until end of turn if {R} was spent to cast Torrent of Souls. (Do both if {B}{R} was spent.)|
@@ -29475,7 +29475,7 @@ Zealous Persecution|Eternal Masters|213|U|{W}{B}|Instant|||Until end of turn, cr
Aegis Angel|Welcome Deck 2016|1|R|{4}{W}{W}|Creature - Angel|5|5|Flying$When Aegis Angel enters the battlefield, another target creature gains indestructible for as long as you control Aegis Angel.|
Air Servant|Welcome Deck 2016|4|U|{4}{U}|Creature - Elemental|4|3|Flying${2}{U}: Tap target creature with flying.|
Borderland Marauder|Welcome Deck 2016|11|C|{1}{R}|Creature - Human Warrior|1|2|Whenever Borderland Marauder attacks, it gets +2/+0 until end of turn.|
-Cone of Flame|Welcome Deck 2016|12|U|{3}{R}{R}|Sorcery|||Cone of Flame deals 1 damage to target creature or player, 2 damage to another target creature or player, and 3 damage to a third target creature or player.|
+Cone of Flame|Welcome Deck 2016|12|U|{3}{R}{R}|Sorcery|||Cone of Flame deals 1 damage to any target, 2 damage to another any target, and 3 damage to a third any target.|
Disperse|Welcome Deck 2016|5|C|{1}{U}|Instant|||Return target nonland permanent to its owner's hand.|
Incremental Growth|Welcome Deck 2016|14|U|{3}{G}{G}|Sorcery|||Put a +1/+1 counter on target creature, two +1/+1 counters on another target creature, and three +1/+1 counters on a third target creature.|
Marked by Honor|Welcome Deck 2016|2|C|{3}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2 and has vigilance.|
@@ -29630,9 +29630,9 @@ Hanweir Garrison|Eldritch Moon|130|R|{2}{R}|Creature - Human Soldier|2|3|Wheneve
Hanweir, the Writhing Township|Eldritch Moon|130|R||Legendary Creature - Eldrazi Ooze|7|4|Trample, haste$Whenever Hanweir, the Writhing Township attacks, put two 3/2 colorless Eldrazi Horror creature tokens onto the battlefield tapped and attacking.|
Harmless Offering|Eldritch Moon|131|R|{2}{R}|Sorcery|||Target opponent gains control of target permanent you control.|
Impetuous Devils|Eldritch Moon|132|R|{2}{R}{R}|Creature - Devil|6|1|Trample, haste$When Impetuous Devils attacks, up to one target creature defending player controls blocks it this combat if able.$At the beginning of the end step, sacrifice Impetuous Devils.|
-Incendiary Flow|Eldritch Moon|133|U|{1}{R}|Sorcery|||Incendiary Flow deals 3 damage to target creature or player. If a creature dealt damage this way would die this turn, exile it instead.|
+Incendiary Flow|Eldritch Moon|133|U|{1}{R}|Sorcery|||Incendiary Flow deals 3 damage to any target. If a creature dealt damage this way would die this turn, exile it instead.|
Insatiable Gorgers|Eldritch Moon|134|U|{2}{R}{R}|Creature - Vampire Berserker|5|3|Insatiable Gorgers attacks each combat if able.$Madness {3}{R} (If you discard this card, discard it into exile. When you do, cast it for its madness cost or put it into your graveyard.)|
-Make Mischief|Eldritch Moon|135|C|{2}{R}|Sorcery|||Make Mischief deals 1 damage to target creature or player. Put a 1/1 red Devil creature token onto the battlefield. It has "When this creature dies, it deals 1 damage to target creature or player."|
+Make Mischief|Eldritch Moon|135|C|{2}{R}|Sorcery|||Make Mischief deals 1 damage to any target. Put a 1/1 red Devil creature token onto the battlefield. It has "When this creature dies, it deals 1 damage to any target."|
Mirrorwing Dragon|Eldritch Moon|136|M|{3}{R}{R}|Creature - Dragon|4|5|Flying$Whenever a player casts an instant or sorcery spell that targets only Mirrorwing Dragon, that player copies that spell for each other creature he or she controls that the spell could target. Each copy targets a different one of those creatures.|
Nahiri's Wrath|Eldritch Moon|137|M|{2}{R}|Sorcery|||As an additional cost to cast Nahiri's Wrath, discard X cards.$Nahiri's Wrath deals damage equal to the total converted mana cost of the discarded cards to each of up to X target creatures and/or planeswalkers.|
Otherworldly Outburst|Eldritch Moon|138|C|{R}|Instant|||Target creature gets +1/+0 until end of turn. When that creature dies this turn, put a 3/2 colorless Eldrazi Horror creature token onto the battlefield.|
@@ -29640,7 +29640,7 @@ Prophetic Ravings|Eldritch Moon|139|C|{R}|Enchantment - Aura|||Enchant creature$
Savage Alliance|Eldritch Moon|140|U|{2}{R}|Instant|||Escalate {1} (Pay this cost for each mode chosen beyond the first.)$Choose one or more — Creature target player controls gain trample until end of turn.; Savage Alliance deals 2 damage to target creature.; Savage Alliance deals 1 damage to each creature target opponent controls.|
Shreds of Sanity|Eldritch Moon|141|U|{2}{R}|Sorcery|||Return up to one target instant card and up to one target sorcery card from your graveyard to your hand, then discard a card. Exile Shreds of Sanity.|
Smoldering Werewolf|Eldritch Moon|142|U|{2}{R}{R}|Creature - Werewolf Horror|3|2|When Smoldering Werewolf enters the battlefield, it deals 1 damage to each of up to two target creatures.${4}{R}{R}: Transform Smoldering Werewolf.|
-Erupting Dreadwolf|Eldritch Moon|142|U||Creature - Eldrazi Werewolf|6|4|Whenever Erupting Dreadwolf attacks, it deals 2 damage to target creature or player.|
+Erupting Dreadwolf|Eldritch Moon|142|U||Creature - Eldrazi Werewolf|6|4|Whenever Erupting Dreadwolf attacks, it deals 2 damage to any target.|
Spreading Flames|Eldritch Moon|143|U|{6}{R}|Instant|||Spreading Flames deals 6 damage divided as you choose among any number of target creatures.|
Stensia Banquet|Eldritch Moon|144|C|{2}{R}|Sorcery|||Stensia Banquet deals damage to target opponent equal to the number of Vampires you control.$Draw a card.|
Stensia Innkeeper|Eldritch Moon|145|C|{3}{R}|Creature - Vampire|3|3|When Stensia Innkeeper enters the battlefield, tap target land an opponent controls. That land doesn't untap during its controller's next untap step.|
@@ -29684,7 +29684,7 @@ Waxing Moon|Eldritch Moon|177|C|{1}{G}|Instant|||Transform up to one target Were
Wolfkin Bond|Eldritch Moon|178|C|{4}{G}|Enchantment - Aura|||Enchant creature$When Wolfkin Bond enters the battlefield, put a 2/2 green Wolf creature token onto the battlefield.$Enchanted creature gets +2/+2.|
Woodcutter's Grit|Eldritch Moon|179|C|{2}{G}|Instant|||Target creature you control gets +3/+3 and gains hexproof until end of turn. (It can't be the target of spells or abilities your opponents control.)|
Woodland Patrol|Eldritch Moon|180|C|{2}{G}|Creature - Human Scout|3|2|Vigilance|
-Bloodhall Priest|Eldritch Moon|181|R|{2}{B}{R}|Creature - Vampire Cleric|4|4|Whenever Bloodhall Priest enters the battlefield or attacks, if you have no cards in hand, Bloodhall Priest deals 2 damage to target creature or player.$Madness {1}{B}{R} (If you discard this card, discard it into exile. When you do, cast it for its madness cost or put it into your graveyard.)|
+Bloodhall Priest|Eldritch Moon|181|R|{2}{B}{R}|Creature - Vampire Cleric|4|4|Whenever Bloodhall Priest enters the battlefield or attacks, if you have no cards in hand, Bloodhall Priest deals 2 damage to any target.$Madness {1}{B}{R} (If you discard this card, discard it into exile. When you do, cast it for its madness cost or put it into your graveyard.)|
Campaign of Vengeance|Eldritch Moon|182|U|{3}{W}{B}|Enchantment|||Whenever a creature you control attacks, defending player loses 1 life and you gain 1 life.|
Gisa and Geralf|Eldritch Moon|183|M|{2}{U}{B}|Legendary Creature - Human Wizard|4|4|When Gisa and Geralf enters the battlefield, put the top four cards of your library into your graveyard.$During each of your turns, you may cast a Zombie creature card from your graveyard.|
Grim Flayer|Eldritch Moon|184|M|{B}{G}|Creature - Human Warrior|2|2|Trample$Whenever Grim Flayer deals combat damage to a player, look at the top three cards of your library. Put any number of them into your graveyard and the rest back on top of your library in any order.$Delirium — Grim Flayer gets +2/+2 as long as there are four or more card types among cards in your graveyard.|
@@ -29697,7 +29697,7 @@ Tamiyo, Field Researcher|Eldritch Moon|190|M|{1}{G}{W}{U}|Legendary Planeswalker
Ulrich of the Krallenhorde|Eldritch Moon|191|M|{3}{R}{G}|Legendary Creature - Human Werewolf|4|4|Whenever this creature enters the battlefield or transforms into Ulrich of the Krallenhorde, target creature gets +4/+4 until end of turn.$At the beginning of each upkeep, if no spells were cast last turn, transform Ulrich of the Krallenhorde.|
Ulrich, Uncontested Alpha|Eldritch Moon|191|M||Legendary Creature - Werewolf|6|6|Whenever this creature transforms into Ulrich, Uncontested Alpha, you may have it fight target non-Werewolf creature you don't control.$At the beginning of each upkeep, if a player cast two or more spells last turn, transform Ulrich, Uncontested Alpha.|
Cathar's Shield|Eldritch Moon|192|C|{0}|Artifact - Equipment|||Equipped creature gets +0/+3 and has vigilance.$Equip {3} ({3}: Attach to target creature you control. Equip only as a sorcery.)|
-Cryptolith Fragment|Eldritch Moon|193|U|{3}|Artifact|||Cryptolith Fragment enters the battlefield tapped.${T}: Add one mana of any color to your mana pool. Each player loses 1 life.$At the beginning of your upkeep, if each player has 10 or less life, transform Cryptolith Fragment.|
+Cryptolith Fragment|Eldritch Moon|193|U|{3}|Artifact|||Cryptolith Fragment enters the battlefield tapped.${T}: Add one mana of any color. Each player loses 1 life.$At the beginning of your upkeep, if each player has 10 or less life, transform Cryptolith Fragment.|
Aurora of Emrakul|Eldritch Moon|193|U||Creature - Eldrazi Reflection|1|4|Flying, deathtouch$Whenever Aurora of Emrakul attacks, each opponent loses 3 life.|
Cultist's Staff|Eldritch Moon|194|C|{2}|Artifact - Equipment|||Equipped creature gets +2/+2.$Equip {3} ({3}: Attach to target creature you control. Equip only as a sorcery.)|
Field Creeper|Eldritch Moon|195|C|{2}|Artifact Creature - Scarecrow|2|1||
@@ -29706,7 +29706,7 @@ Lupine Prototype|Eldritch Moon|197|R|{2}|Artifact Creature - Wolf Construct|5|5|
Slayer's Cleaver|Eldritch Moon|198|U|{3}|Artifact - Equipment|||Equipped creature gets +3/+1 and must be blocked by an Eldrazi if able.$Equip {4}|
Soul Separator|Eldritch Moon|199|R|{3}|Artifact|||{5}, {T}, Sacrifice Soul Separator: Exile target creature card from your graveyard. Put a token onto the battlefield that's a copy of that card except it's 1/1, it's a Spirit in addition to its other types, and it has flying. Put a black Zombie creature token onto the battlefield with power equal to that card's power and toughness equal that card's toughness.|
Stitcher's Graft|Eldritch Moon|200|R|{1}|Artifact - Equipment|||Equipped creature gets +3/+3.$Whenever equipped creature attacks, it doesn't untap during its controller's next untap step.$Whenever Stitcher's Graft becomes unattached from a permanent, sacrifice that permanent.$Equip {2}|
-Terrarion|Eldritch Moon|201|C|{1}|Artifact|||Terrarion enters the battlefield tapped.${2}, {T}, Sacrifice Terrarion: Add two mana in any combination of colors to your mana pool.$When Terrarion is put into a graveyard from the battlefield, draw a card.|
+Terrarion|Eldritch Moon|201|C|{1}|Artifact|||Terrarion enters the battlefield tapped.${2}, {T}, Sacrifice Terrarion: Add two mana in any combination of colors.$When Terrarion is put into a graveyard from the battlefield, draw a card.|
Thirsting Axe|Eldritch Moon|202|U|{3}|Artifact - Equipment|||Equipped creature gets +4/+0.$At the beginning of your end step, if equipped creature didn't deal combat damage to a creature this turn, sacrifice it.$Equip {2}|
Geier Reach Sanitarium|Eldritch Moon|203|R||Legendary Land|||{T}: Add {C}.${2}, {T}: Each player draws a card, then discards a card.|
Hanweir Battlements|Eldritch Moon|204|R||Land|||{T}: Add {C}.${R},{T}: Target creature gains haste until end of turn.${3}{R}{R},{T}: If you both own and control Hanweir Battlements and a creature named Hanweir Garrison, exile them, then meld them into Hanweir, the Writhing Township.|
@@ -29820,11 +29820,11 @@ Aethertorch Renegade|Kaladesh|106|U|{2}{R}|Creature - Human Rogue|1|2|When Aethe
Brazen Scourge|Kaladesh|107|U|{1}{R}{R}|Creature - Gremlin|3|3|Haste|
Built to Smash|Kaladesh|108|C|{R}|Instant|||Target attacking creature gets +3/+3 until end of turn/ If it's an artifact creature, it gains trample until end of turn.|
Cathartic Reunion|Kaladesh|109|C|{1}{R}|Sorcery|||As an additional cost to cast Cathartic Reunion, discard two cards.$Draw three cards.|
-Chandra, Torch of Defiance|Kaladesh|110|M|{2}{R}{R}|Legendary Planeswalker - Chandra|4|+1: Exile the top card of your library. You may cast that card. If you don't, Chandra, Torch of Defiance deals 2 damage to each opponent.$+1: Add {R}{R}.$-3: Chandra, Torch of Defiance deals 4 damage to target creature.$-7: You get an emblem with "Whenever you cast a spell, this emblem deals 5 damage to target creature or player."|
+Chandra, Torch of Defiance|Kaladesh|110|M|{2}{R}{R}|Legendary Planeswalker - Chandra|4|+1: Exile the top card of your library. You may cast that card. If you don't, Chandra, Torch of Defiance deals 2 damage to each opponent.$+1: Add {R}{R}.$-3: Chandra, Torch of Defiance deals 4 damage to target creature.$-7: You get an emblem with "Whenever you cast a spell, this emblem deals 5 damage to any target."|
Chandra's Pyrohelix|Kaladesh|111|C|{1}{R}|Instant|||Chandra's Pyrohelix deals 2 damage divided as you choose among one or two target creatures and/or players.|
Combustible Gearhulk|Kaladesh|112|M|{4}{R}{R}|Artifact Creature - Construct|6|6|First strike$When Combustible Gearhulk enters the battlefield, target opponent may have you draw three cards. If the player doesn't, put the top three cards of your library into the graveyard, then Combustible Gearhulk deals damage to that player equal to the total converted mana cost of those cards. |
Demolish|Kaladesh|113|C|{3}{R}|Sorcery|||Destroy target artifact or land.|
-Fateful Showdown|Kaladesh|114|R|{2}{R}{R}|Instant|||Fateful Showdown deals damage to target creature or player equal to the number of cards in your hand. Discard all the cards in your hand, then draw that many cards.|
+Fateful Showdown|Kaladesh|114|R|{2}{R}{R}|Instant|||Fateful Showdown deals damage to any target equal to the number of cards in your hand. Discard all the cards in your hand, then draw that many cards.|
Furious Reprisal|Kaladesh|115|U|{3}{R}|Sorcery|||Furious Reprisal deals 2 damage to each of two target creatures and/or players.|
Giant Spectacle|Kaladesh|116|C|{1}{R}|Enchantment - Aura|||Enchant Creature$Enchanted creature gets +2/+1 and has menace|
Harnessed Lightning|Kaladesh|117|U|{1}{R}|Instant|||Choose target creature. You get {E}{E}{E} (three energy counters), then you may pay any amount of {E}. Harnessed Lightning deals that much damage to that creature.|
@@ -29879,7 +29879,7 @@ Oviya Pashiri, Sage Lifecrafter|Kaladesh|165|R|{G}|Legendary Creature - Human Ar
Peema Outrider|Kaladesh|166|C|{2}{G}{G}|Creature - Elf Artificer|3|3|Trample$Fabricate 1 (When this creature enters the battlefield, put a +1/+1 counter on it or create a 1/1 colorless Servo artifact creature token.)|
Riparian Tiger|Kaladesh|167|C|{3}{G}{G}|Creature - Cat|4|4|Trample$When Riparian Tiger enters the battlefield, you get {E}{E} (two energy counters).$Whenever Riparian Tiger attacks, you may pay {E}{E}. If you do, it gets +2/+2 until end of turn.|
Sage of Shaila's Claim|Kaladesh|168|C|{1}{G}|Creature - Elf Druid|2|1|When Sage of Shalia's Claim enters the battlefield, you get {E}{E}{E} (three energy counters).|
-Servant of the Conduit|Kaladesh|169|U|{1}{G}|Creature - Elf Druid|2|2|When Servant of the Conduit enters teh battlefield, you get {E}{E} (two energy counters).${T}, Pay {E}: Add one mana of any color to your mana pool.|
+Servant of the Conduit|Kaladesh|169|U|{1}{G}|Creature - Elf Druid|2|2|When Servant of the Conduit enters teh battlefield, you get {E}{E} (two energy counters).${T}, Pay {E}: Add one mana of any color.|
Take Down|Kaladesh|170|C|{G}|Sorcery|||Choose one —$• Take Down deals 4 damage to target creature with flying.$• Take Down deals 1 damage to each creature with flying|
Thriving Rhino|Kaladesh|171|C|{2}{G}|Creature - Rhino|2|3|When Thriving Rhino enters the battlefield, you get {E}{E} (two energy counters).$Whenever Thriving Rhino attacks, you may pay {E}{E}. If you do, put a +1/+1 counter on it.|
Verdurous Gearhulk|Kaladesh|172|M|{3}{G}{G}|Artifact Creature - Construct|4|4|Trample$When Verdurous Gearhulk enters the battlefield, distribute four +1/+1 counters among any number of target creatures you control.|
@@ -29902,28 +29902,28 @@ Veteran Motorist|Kaladesh|188|U|{R}{W}|Creature - Dwarf Pilot|3|1|When Veteran M
Voltaic Brawler|Kaladesh|189|U|{R}{G}|Creature - Human Warrior|3|2|When Voltaic Brawler enters the battlefield, you get {E}{E} (two energy counters).$Whenever Voltaic Brawler attacks, you may pay {E}. If you do, it gets +1/+1 and gains trample until end of turn.|
Whirler Virtuoso|Kaladesh|190|U|{1}{U}{R}|Creature - Vedalken Artificer|2|3|When Whirler Virtuoso enters the battlefield, you get {E}{E}{E} (three energy counters).$Pay {E}{E}{E}: Create a 1/1 colorless Thopter artifact creature token with flying.|
Accomplished Automaton|Kaladesh|191|C|{7}|Artifact Creature - Construct|5|7|Fabricate 1 When this creature enters the battlefield, put a +1/+1 counter on it or create a 1/1 colorless Servo artifact creature token.)|
-Aetherflux Reservoir|Kaladesh|192|R|{4}|Artifact|||Whenever you cast a spell, you gain 1 life for each spell you've cast this turn.$Pay 50 life: Aetherflux Reservoir deals 50 damage to target creature or player.|
+Aetherflux Reservoir|Kaladesh|192|R|{4}|Artifact|||Whenever you cast a spell, you gain 1 life for each spell you've cast this turn.$Pay 50 life: Aetherflux Reservoir deals 50 damage to any target.|
Aetherworks Marvel|Kaladesh|193|M|{4}|Legendary Artifact|||Whenever a permanent you control is put into a graveyard, you get {E} (an energy counter).${T}, Pay {E}{E}{E}{E}{E}{E}: Look at the top six cards of your library. You may cast a card from among them without paying its mana cost. Put the rest on the bottom of your library in a random order.|
Animation Module|Kaladesh|194|R|{1}|Artifact|||Whenever one or more +1/+1 counters are placed on a permanent you control, you may pay {1}. If you do you create a 1/1 colorless Servo artifact creature token.${3}, {t}: Choose a counter on target permanent or player. Give that permanent or player another counter of that kind.|
Aradara Express|Kaladesh|195|C|{5}|Artifact - Vehicle|8|6|Menace$Crew 4 (Tap any number of creatures you control with total power 2 or more: This Vehicle becomes an artifact creature until end of turn.)|
-Ballista Charger|Kaladesh|196|U|{5}|Artifact - Vehicle|6|6|Whenever Ballista Charger attacks, it deals 1 damage to target creature or player.$Crew 3 (Tap any number of creatures you control with total power 3 or more: This Vehicle becomes an artifact creature until end of turn.)|
+Ballista Charger|Kaladesh|196|U|{5}|Artifact - Vehicle|6|6|Whenever Ballista Charger attacks, it deals 1 damage to any target.$Crew 3 (Tap any number of creatures you control with total power 3 or more: This Vehicle becomes an artifact creature until end of turn.)|
Bastion Mastodon|Kaladesh|197|C|{5}|Artifact Creature - Elephant|4|5|{W}: Bastion Mastodon gets vigilance until end of turn.|
Bomat Bazaar Barge|Kaladesh|198|U|{4}|Artifact - Vehicle|5|5|When Bomat Bazaar Barge enters the battlefield, draw a card.$Crew 3 (Tap any number of creatures you control with total power 3 or more: This Vehicle becomes an artifact creature until end of turn.)|
Bomat Courier|Kaladesh|199|R|{1}|Artifact Creature - Construct|1|1|Haste$Whenever Bomat Courier attacks, exile the top card of your library face down. (You can't look at it.)${R}, Discard your hand, Sacrifice Bomat Courier: Put all cards exiled with Bomat Courier into their owners' hands.|
Chief of the Foundry|Kaladesh|200|U|{3}|Artifact Creature - Construct|2|3|Other artifact creatures you control get +1/+1.|
Cogworker's Puzzleknot|Kaladesh|201|C|{2}|Artifact|||When Cogworker's Puzzleknot enters the battlefield, create a 1/1 colorless Servo artifact creature token.${1}{W}, Sacrifice Cogworker's Puzzleknot: Create a 1/1 colorless Servo artifact creature token.|
Consulate Skygate|Kaladesh|202|C|{2}|Artifact Creature - Wall|0|4|Defender$Reach|
-Cultivator's Caravan|Kaladesh|203|R|{3}|Artifact - Vehicle|5|5|{T}: Add one mana of any color to your mana pool.$Crew 3 (Tap any number of creatures you control with total power 3 or more: This vehicle becomes an artifact creature until end of turn.)|
+Cultivator's Caravan|Kaladesh|203|R|{3}|Artifact - Vehicle|5|5|{T}: Add one mana of any color.$Crew 3 (Tap any number of creatures you control with total power 3 or more: This vehicle becomes an artifact creature until end of turn.)|
Deadlock Trap|Kaladesh|204|R|{3}|Artifact|||Deadlock Trap enters the battlefield tapped.$When Deadlock Trap enters the battlefield, you get {E}{E} (two energy counters)${t}, Pay {E}: Tap target creature or planeswalker. It's activated abilities can't be activated this turn.|
Decoction Module|Kaladesh|205|U|{2}|Artifact|||Whenever a creature enters the battlefield under your control, you get {E} (an energy counter).${4}, {t}: Return target creature you control to its owner's hand.|
Demolition Stomper|Kaladesh|206|U|{6}|Artifact - Vehicle|10|7|Demolition Stomper can't be blocked by creatures with power 2 or less.$Crew 5 (Tap any number of creatures you control with total power 5 or more: This Vehicle becomes an artifact creature until end of turn.)|
Dukhara Peafowl|Kaladesh|207|C|{4}|Artifact Creature - Bird|2|4|{U}: Dukhara Peafowl gains flying until end of turn.|
-Dynavolt Tower|Kaladesh|208|R|{3}|Artifact|||Whenever you cast an instant or sorcery spell, you get {E}{E} (two energy counters).${t}, Pay {E}{E}{E}{E}{E}: Dynavolt Tower deals 3 damage to target creature or player.|
+Dynavolt Tower|Kaladesh|208|R|{3}|Artifact|||Whenever you cast an instant or sorcery spell, you get {E}{E} (two energy counters).${t}, Pay {E}{E}{E}{E}{E}: Dynavolt Tower deals 3 damage to any target.|
Eager Construct|Kaladesh|209|C|{2}|Artifact Creature - Construct|2|2|When Eager Construct enters the battlefield, each player may scry 1.|
Electrostatic Pummeler|Kaladesh|210|R|{3}|Artifact Creature - Construct|1|1|When Electrostatic Pummeler enters the battlefield, you get {E}{E}{E} (three energy counters).$Pay {E}{E}{E}: Electrostatic Pummeler gets +X/+X until end of turn, where X is its power.|
Fabrication Module|Kaladesh|211|U|{3}|Artifact|||Whenever you get one or more {E} (energy counters), put a +1/+1 counter on target creature you control.${4}, {t}: You get {E}.|
Filigree Familiar|Kaladesh|212|U|{3}|Artifact Creature - Fox|2|2|When Filigree Familiar enters the battlefield, you gain 2 life.$When Filigree Familiar dies, draw a card.|
-Fireforger's Puzzleknot|Kaladesh|213|C|{2}|Artifact|||When Fireforger's Puzzleknot enters the battlefield, it deals 1 damage to target creature or player.${2}{R}, Sacrifice Fireforger's Puzzleknot: It deals 1 damage to target creature or player.|
+Fireforger's Puzzleknot|Kaladesh|213|C|{2}|Artifact|||When Fireforger's Puzzleknot enters the battlefield, it deals 1 damage to any target.${2}{R}, Sacrifice Fireforger's Puzzleknot: It deals 1 damage to any target.|
Fleetwheel Cruiser|Kaladesh|214|R|{4}|Artifact - Vehicle|5|3|Trample, Haste $When Fleetwheel Cruiser enters the battlefield, it becomes an artifact creature until the end of turn.$Crew 2 (Tap any number of creatures you control with total power 2 or more: This Vehicle becomes an artifact creature until end of turn.)|
Foundry Inspector|Kaladesh|215|U|{3}|Artifact Creature - Construct|3|2|Artifact spells you cast cost {1} less to cast.|
Ghirapur Orrery|Kaladesh|216|R|{4}|Artifact|||Each player may play an additional land on each of his or her turns.$At the beginning of each player's upkeep, if that player has no cards in hand, that player draws three cards.|
@@ -29939,7 +29939,7 @@ Ovalchase Dragster|Kaladesh|225|U|{4}|Artifact - Vehicle|6|1|Trample, haste$Crew
Panharmonicon|Kaladesh|226|R|{4}|Artifact|||If an artifact or creature entering the battlefield causes a triggered ability of a permanent you control to trigger, that ability triggers an additional time.|
Perpetual Timepiece|Kaladesh|227|U|{2}|Artifact|||{t}: Put the top two cards of your library into your graveyard.${2}, Exile Perpetual Timepiece: Shuffle any number of target cards from your graveyard into your library.|
Prakhata Pillar-Bug|Kaladesh|228|C|{3}|Artifact Creature - Insect|2|3|{B}: Prakhata Pillar-Bug gains lifelink until end of turn.|
-Prophetic Prism|Kaladesh|229|C|{2}|Artifact|||When Prophetic Prism enters the battlefield, draw a card.${1}, {T}: Add one mana of any color to your mana pool.|
+Prophetic Prism|Kaladesh|229|C|{2}|Artifact|||When Prophetic Prism enters the battlefield, draw a card.${1}, {T}: Add one mana of any color.|
Renegade Freighter|Kaladesh|230|C|{3}|Artifact - Vehicle|4|3|Whenever Renegade Freighter attacks, it gets +1/+1 and gains trample until end of turn.$Crew 2 (Tap any number of creatures you control with total power 2 or more: The Vehicle becomes an artifact creature until end of turn.)|
Scrapheap Scrounger|Kaladesh|231|R|{2}|Artifact Creature - Construct|3|2|Scrapheap Scrounger can't block.${1}{B}, Exile another creature card from your graveyard: Return Scrapheap Scrounger from your graveyard to the battlefield.|
Self-Assembler|Kaladesh|232|C|{5}|Artifact Creature - Assembly-Worker|4|4|When Self-Assembler enters the battlefield, you may search your library for an Assembly-Worker creature card, reveal it, put it into your hand, then shuffle your library.|
@@ -29952,7 +29952,7 @@ Weldfast Monitor|Kaladesh|238|C|{3}|Artifact Creature - Lizard|3|2|{R}: Weldfast
Whirlermaker|Kaladesh|239|U|{3}|Artifact|||{4}, {T}: Create a 1/1 colorless Thopter artifact creature token with flying.|
Woodweaver's Puzzleknot|Kaladesh|240|C|{2}|Artifact|||When Woodweaver's Puzzleknot enters the battlefield, you gain 3 life and get {E}{E}{E} (three energy counters).${2}{G}, Sacrifice Woodweaver's Puzzleknot: You gain 3 life and get {E}{E}{E}.|
Workshop Assistant|Kaladesh|241|C|{3}|Artifact Creature - Construct|1|2|When Workshop Assistant dies, return another target artifact card from your graveyard to your hand.|
-Aether Hub|Kaladesh|242|U||Land|||When Aether Hub enters the battlefield, you get {E} (an energy counter).${t}: Add {C}.${t}, Pay {E}: Add one mana of any color to your mana pool.|
+Aether Hub|Kaladesh|242|U||Land|||When Aether Hub enters the battlefield, you get {E} (an energy counter).${t}: Add {C}.${t}, Pay {E}: Add one mana of any color.|
Blooming Marsh|Kaladesh|243|R||Land|||Blooming Marsh enters the battlefield tapped unless you control two or fewer other lands.${T}: Add {B} or {G}.|
Botanical Sanctum|Kaladesh|244|R||Land|||Botanical Sanctum enters the battlefield tapped unless you control two or fewer other lands.${T}: Add {G} or {U}.|
Concealed Courtyard|Kaladesh|245|R||Land|||Concealed Courtyard enters the battlefield tapped unless you control two or fewer other lands.${T}: Add {W} or {B}.|
@@ -29976,7 +29976,7 @@ Forest|Kaladesh|262|L||Basic Land - Forest||||
Forest|Kaladesh|263|L||Basic Land - Forest||||
Forest|Kaladesh|264|L||Basic Land - Forest||||
Chandra, Pyrogenius|Kaladesh|265|M|{4}{R}{R}|Legendary Planeswalker - Chandra|5|+2: Chandra, Pyrogenius deals 2 damage to each opponent.$-3: Chandra, Pyrogenius deals 4 damage to target creature.$-10: Chandra, Pyrogenius deals 6 damage to target player and each creature he or she controls.|
-Flame Lash|Kaladesh|266|C|{3}{R}|Instant|||Flame Lash deals 4 damage to target creature or player.|
+Flame Lash|Kaladesh|266|C|{3}{R}|Instant|||Flame Lash deals 4 damage to any target.|
Liberating Combustion|Kaladesh|267|R|{4}{R}|Sorcery|||Liberating Combustion deals 6 damage to target creature. You may search your library and/or graveyard for a card named Chandra, Pyrogenius, reveal it, and put it into your hand. If you search your library this way, shuffle it. |
Renegade Firebrand|Kaladesh|268|U|{2}{R}|Creature - Human Warrior|3|2|As long as you control a Chandra planeswalker, Renegade Firebrand gets +1/+0 and has first strike.|
Stone Quarry|Kaladesh|269|C||Land|||Stone Quarry enters the battlefield tapped.${t}: Add {R} or {W}.|
@@ -29992,18 +29992,18 @@ Torrential Gearhulk|Masterpiece Series|4|M|{4}{U}{U}|Artifact Creature - Constru
Verdurous Gearhulk|Masterpiece Series|5|M|{3}{G}{G}|Artifact Creature - Construct|4|4|Trample$When Verdurous Gearhulk enters the battlefield, distribute four +1/+1 counters among any number of target creatures you control.|
Aether Vial|Masterpiece Series|6|M|{1}|Artifact|||At the beginning of your upkeep, you may put a charge counter on Æther Vial.${tap}: You may put a creature card with converted mana cost equal to the number of charge counters on Æther Vial from your hand onto the battlefield.|
Champion's Helm|Masterpiece Series|7|M|{3}|Artifact - Equipment|||Equipped creature gets +2/+2.$As long as equipped creature is legendary, it has hexproof. (It can't be the target of spells or abilities your opponents control.)$Equip {1}|
-Chromatic Lantern|Masterpiece Series|8|M|{3}|Artifact|||Lands you control have "{tap}: Add one mana of any color to your mana pool."${tap}: Add one mana of any color to your mana pool.|
-Chrome Mox|Masterpiece Series|9|M|{0}|Artifact|||Imprint - When Chrome Mox enters the battlefield, you may exile a nonartifact, nonland card from your hand.${tap}: Add one mana of any of the exiled card's colors to your mana pool.|
+Chromatic Lantern|Masterpiece Series|8|M|{3}|Artifact|||Lands you control have "{tap}: Add one mana of any color."${tap}: Add one mana of any color.|
+Chrome Mox|Masterpiece Series|9|M|{0}|Artifact|||Imprint - When Chrome Mox enters the battlefield, you may exile a nonartifact, nonland card from your hand.${tap}: Add one mana of any of the exiled card's colors.|
Cloudstone Curio|Masterpiece Series|10|M|{3}|Artifact|||Whenever a nonartifact permanent enters the battlefield under your control, you may return another permanent you control that shares a card type with it to its owner's hand.|
Crucible of Worlds|Masterpiece Series|11|M|{3}|Artifact|||You may play land cards from your graveyard.|
Gauntlet of Power|Masterpiece Series|12|M|{5}|Artifact|||As Gauntlet of Power enters the battlefield, choose a color.$Creatures of the chosen color get +1/+1.$Whenever a basic land is tapped for mana of the chosen color, its controller adds one mana of that color to his or her mana pool.|
Hangarback Walker|Masterpiece Series|13|M|{X}{X}|Artifact Creature - Construct|0|0|Hangarback Walker enters the battlefield with X +1/+1 counters on it.$When Hangarback Walker dies, create a 1/1 colorless Thopter artifact creature token for each +1/+1 counter on Hangarback Walker.${1}, {T}: Put a +1/+1 counter on Hangarback Walker.|
Lightning Greaves|Masterpiece Series|14|M|{2}|Artifact - Equipment|||Equipped creature has haste and shroud. (It can't be the target of spells or abilities.)$Equip {0}|
-Lotus Petal|Masterpiece Series|15|M|{0}|Artifact|||{tap}, Sacrifice Lotus Petal: Add one mana of any color to your mana pool.|
+Lotus Petal|Masterpiece Series|15|M|{0}|Artifact|||{tap}, Sacrifice Lotus Petal: Add one mana of any color.|
Mana Crypt|Masterpiece Series|16|M|{0}|Artifact|||At the beginning of your upkeep, flip a coin. If you lose the flip, Mana Crypt deals 3 damage to you.${T}: Add {C}{C}.|
Mana Vault|Masterpiece Series|17|M|{1}|Artifact|||Mana Vault doesn't untap during your untap step.$At the beginning of your upkeep, you may pay {4}. If you do, untap Mana Vault.$At the beginning of your draw step, if Mana Vault is tapped, it deals 1 damage to you.${tap}: Add {C}{C}{C}.|
Mind's Eye|Masterpiece Series|18|M|{5}|Artifact|||Whenever an opponent draws a card, you may pay {1}. If you do, draw a card.|
-Mox Opal|Masterpiece Series|19|M|{0}|Legendary Artifact|||Metalcraft - {tap}: Add one mana of any color to your mana pool. Activate this ability only if you control three or more artifacts.|
+Mox Opal|Masterpiece Series|19|M|{0}|Legendary Artifact|||Metalcraft - {tap}: Add one mana of any color. Activate this ability only if you control three or more artifacts.|
Painter's Servant|Masterpiece Series|20|M|{2}|Artifact Creature - Scarecrow|1|3|As Painter's Servant enters the battlefield, choose a color.$All cards that aren't on the battlefield, spells, and permanents are the chosen color in addition to their other colors.|
Rings of Brighthearth|Masterpiece Series|21|M|{3}|Artifact|||Whenever you activate an ability, if it isn't a mana ability, you may pay {2}. If you do, copy that ability. You may choose new targets for the copy.|
Scroll Rack|Masterpiece Series|22|M|{2}|Artifact|||{1}, {tap}: Exile any number of cards from your hand face down. Put that many cards from the top of your library into your hand. Then look at the exiled cards and put them on top of your library in any order.|
@@ -30013,7 +30013,7 @@ Solemn Simulacrum|Masterpiece Series|25|M|{4}|Artifact Creature - Golem|2|2|When
Static Orb|Masterpiece Series|26|M|{3}|Artifact|||As long as Static Orb is untapped, players can't untap more than two permanents during their untap steps.|
Steel Overseer|Masterpiece Series|27|M|{2}|Artifact Creature - Construct|1|1|{tap}: Put a +1/+1 counter on each artifact creature you control.|
Sword of Feast and Famine|Masterpiece Series|28|M|{3}|Artifact - Equipment|||Equipped creature gets +2/+2 and has protection from black and from green.$Whenever equipped creature deals combat damage to a player, that player discards a card and you untap all lands you control.$Equip {2}|
-Sword of Fire and Ice|Masterpiece Series|29|M|{3}|Artifact - Equipment|||Equipped creature gets +2/+2 and has protection from red and from blue.$Whenever equipped creature deals combat damage to a player, Sword of Fire and Ice deals 2 damage to target creature or player and you draw a card.$Equip {2}|
+Sword of Fire and Ice|Masterpiece Series|29|M|{3}|Artifact - Equipment|||Equipped creature gets +2/+2 and has protection from red and from blue.$Whenever equipped creature deals combat damage to a player, Sword of Fire and Ice deals 2 damage to any target and you draw a card.$Equip {2}|
Sword of Light and Shadow|Masterpiece Series|30|M|{3}|Artifact - Equipment|||Equipped creature gets +2/+2 and has protection from white and from black.$Whenever equipped creature deals combat damage to a player, you gain 3 life and you may return up to one target creature card from your graveyard to your hand.$Equip {2}|
Arcbound Ravager|Masterpiece Series|31|M|{2}|Artifact Creature - Beast|0|0|Sacrifice an artifact: Put a +1/+1 counter on Arcbound Ravager.$Modular 1.|
Black Vise|Masterpiece Series|32|M|{1}|Artifact|||As Black Vise enters the battlefield, choose an opponent.$At the beginning of the chosen player's upkeep, Black Vise deals X damage to that player, where X is the number of cards in his or her hand minus 4.|
@@ -30063,7 +30063,7 @@ Diabolic Intent|Masterpiece Series Amonkhet|22|Special|{1}{B}|Sorcery|||As an ad
Entomb|Masterpiece Series Amonkhet|23|Special|{B}|Instant|||Search your library for a card and put that card into your graveyard. Then shuffle your library.|
Mind Twist|Masterpiece Series Amonkhet|24|Special|{X}{B}|Sorcery|||Target player discards X cards at random.|
Aggravated Assault|Masterpiece Series Amonkhet|25|Special|{2}{R}|Enchantment|||{3}{R}{R}: Untap all creatures you control. After this main phase, there is an additional combat phase followed by an additional main phase. Activate this ability only any time you could cast a sorcery.|
-Chain Lightning|Masterpiece Series Amonkhet|26|Special|{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.|
+Chain Lightning|Masterpiece Series Amonkhet|26|Special|{R}|Sorcery|||Chain Lightning deals 3 damage to any target. 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.|
Hazoret the Fervent|Masterpiece Series Amonkhet|27|Special|{3}{R}|Legendary Creature - God|5|4|Indestructible, haste$Hazoret the Fervent can't attack or block unless you have one or fewer cards in hand.${2}{R}, Discard a card: Hazoret deals 2 damage to each opponent.|
Maelstrom Pulse|Masterpiece Series Amonkhet|29|Special|{1}{B}{G}|Sorcery|||Destroy target nonland permanent and all other permanents with the same name as that permanent.|
Vindicate|Masterpiece Series Amonkhet|30|Special|{1}{W}{B}|Sorcery|||Destroy target permanent.|
@@ -30144,8 +30144,8 @@ Yidris, Maelstrom Wielder|Commander 2016|50|M|{U}{B}{R}{G}|Legendary Creature -
Armory Automaton|Commander 2016|51|R|{3}|Artifact Creature - Construct|2|2|Whenever Armory Automaton enters the battlefield or attacks, attach any number of target Equipments to it. (Control of Equipment doesn't change.)|
Boompile|Commander 2016|52|R|{4}|Artifact|||{T}: Flip a coin. If you win the flip, destroy all nonland permanents.|
Conqueror's Flail|Commander 2016|53|R|{2}|Artifact - Equipment|||Equipped creature gets +1/+1 for each color among permanents you control.$As long as Conqueror's Flail is attached to a creature, your opponents can't cast spells during your turn.$Equip {2}|
-Crystalline Crawler|Commander 2016|54|R|{4}|Artifact Creature - Construct|1|1|Converge — Crystalline Crawler enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.$Remove a +1/+1 counter from Crystalline Crawler: Add one mana of any color to your mana pool.${T}: Put a +1/+1 counter on Crystalline Crawler.|
-Prismatic Geoscope|Commander 2016|55|R|{5}|Artifact|||Prismatic Geoscope enters the battlefield tapped.$Domain — {T}: Add X mana in any combination of colors to your mana pool, where X is the number of basic land types among lands you control.|
+Crystalline Crawler|Commander 2016|54|R|{4}|Artifact Creature - Construct|1|1|Converge — Crystalline Crawler enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.$Remove a +1/+1 counter from Crystalline Crawler: Add one mana of any color.${T}: Put a +1/+1 counter on Crystalline Crawler.|
+Prismatic Geoscope|Commander 2016|55|R|{5}|Artifact|||Prismatic Geoscope enters the battlefield tapped.$Domain — {T}: Add X mana in any combination of colors, where X is the number of basic land types among lands you control.|
Ash Barrens|Commander 2016|56|C||Land|||{T}: Add {C}.$Basic landcycling {1} ({1}, Discard this card: Search your library for a basic land card, reveal it, and put it into your hand. Then shuffle your library.)|
Abzan Falconer|Commander 2016|57|U|{2}{W}|Creature - Human Soldier|2|3|Outlast {W} ({W}, {T}: Put a +1/+1 counter on this creature. Outlast only as a sorcery.)$Each creature you control with a +1/+1 counter on it has flying.|
Blazing Archon|Commander 2016|58|R|{6}{W}{W}{W}|Creature - Archon|5|6|Flying$Creatures can't attack you.|
@@ -30193,7 +30193,7 @@ Tezzeret's Gambit|Commander 2016|99|U|{3}{UP}|Sorcery|||({UP} can be paid wit
Thrummingbird|Commander 2016|100|U|{1}{U}|Creature - Bird Horror|1|1|Flying$Whenever Thrummingbird deals combat damage to a player, proliferate. (You choose any number of permanents and/or players with counters on them, then give each another counter of a kind already there.)|
Treasure Cruise|Commander 2016|101|C|{7}{U}|Sorcery|||Delve (Each card you exile from your graveyard while casting this spell pays for {1}.)$Draw three cards.|
Trinket Mage|Commander 2016|102|C|{2}{U}|Creature - Human Wizard|2|2|When Trinket Mage enters the battlefield, you may search your library for an artifact card with converted mana cost 1 or less, reveal that card, and put it into your hand. If you do, shuffle your library.|
-Vedalken Engineer|Commander 2016|103|C|{1}{U}|Creature - Vedalken Artificer|1|1|{T}: Add two mana of any one color to your mana pool. Spend this mana only to cast artifact spells or activate abilities of artifacts.|
+Vedalken Engineer|Commander 2016|103|C|{1}{U}|Creature - Vedalken Artificer|1|1|{T}: Add two mana of any one color. Spend this mana only to cast artifact spells or activate abilities of artifacts.|
Windfall|Commander 2016|104|U|{2}{U}|Sorcery|||Each player discards his or her hand, then draws cards equal to the greatest number of cards a player discard this way.|
Army of the Damned|Commander 2016|105|M|{5}{B}{B}{B}|Sorcery|||Create thirteen tapped 2/2 black Zombie creature tokens.$Flashback {7}{B}{B}{B} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Bane of the Living|Commander 2016|106|R|{2}{B}{B}|Creature - Insect|4|3|Morph {X}{B}{B} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Bane of the Living is turned face up, all creatures get -X/-X until end of turn.|
@@ -30216,7 +30216,7 @@ Chaos Warp|Commander 2016|122|R|{2}{R}|Instant|||The owner of target permanent s
Daretti, Scrap Savant|Commander 2016|123|M|{3}{R}|Legendary Planeswalker - Daretti|||+2: Discard up to two cards, then draw that many cards.$-2: Sacrifice an artifact. If you do, return target artifact card from your graveyard to the battlefield.$-10: You get an emblem with "Whenever an artifact is put into your graveyard from the battlefield, return that card to the battlefield at the beginning of the next end step."|
Dragon Mage|Commander 2016|124|R|{5}{R}{R}|Creature - Dragon Wizard|5|5|Flying$Whenever Dragon Mage deals combat damage to a player, each player discards his or her hand, then draws seven cards.|
Godo, Bandit Warlord|Commander 2016|125|R|{5}{R}|Legendary Creature - Human Barbarian|3|3|When Godo, Bandit Warlord enters the battlefield, you may search your library for an Equipment card and put it onto the battlefield. If you do, shuffle your library.$Whenever Godo attacks for the first time each turn, untap it and all Samurai you control. After this phase, there is an additional combat phase.|
-Grab the Reins|Commander 2016|126|U|{3}{R}|Instant|||Choose one — Until end of turn, you gain control of target creature and it gains haste.; Sacrifice a creature. Grab the Reins deals damage equal to that creature's power to target creature or player.$Entwine {2}{R} (Choose both if you pay the entwine cost.)|
+Grab the Reins|Commander 2016|126|U|{3}{R}|Instant|||Choose one — Until end of turn, you gain control of target creature and it gains haste.; Sacrifice a creature. Grab the Reins deals damage equal to that creature's power to any target.$Entwine {2}{R} (Choose both if you pay the entwine cost.)|
Hellkite Igniter|Commander 2016|127|R|{5}{R}{R}|Creature - Dragon|5|5|Flying, haste${1}{R}: Hellkite Igniter gets +X/+0 until end of turn, where X is the number of artifacts you control.|
Hellkite Tyrant|Commander 2016|128|M|{4}{R}{R}|Creature - Dragon|6|5|Flying, trample$Whenever Hellkite Tyrant deals combat damage to a player, gain control of all artifacts that player controls.$At the beginning of your upkeep, if you control twenty of more artifacts, you win the game.|
Humble Defector|Commander 2016|129|U|{1}{R}|Creature - Human Rogue|2|1|{T}: Draw two cards. Target opponent gains control of Humble Defector. Activate this ability only during your turn.|
@@ -30250,7 +30250,7 @@ Lurking Predators|Commander 2016|156|R|Enchantment|||Whenever an opponent casts
Managorger Hydra|Commander 2016|157|R|{2}{G}|Creature - Hydra|1|1|Trample$Whenever a player casts a spell, put a +1/+1 counter on Managorger Hydra.|
Mycoloth|Commander 2016|158|R|{3}{G}{G}|Creature - Fungus|4|4|Devour 2 (As this enters the battlefield, you may sacrifice any number of creatures. This creature enters the battlefield with twice that many +1/+1 counters on it.)$At the beginning of your upkeep, create a 1/1 green Saproling creature token for each +1/+1 counter on Mycoloth.|
Oath of Druids|Commander 2016|159|R|{1}{G}|Enchantment|||At the beginning of each player's upkeep, that player chooses target player who controls more creatures than he or she does and is his or her opponent. The first player may reveal cards from the top of his or her library until he or she reveals a creature card. If he or she does, that player puts that card on to the battlefield and all other cards revealed this way into his or her graveyard.|
-Quirion Explorer|Commander 2016|160|C|{1}{G}|Creature - Elf Druid Scount|1|1|{T}: Add to your mana pool one mana of any color that a land an opponent controls could produce.|
+Quirion Explorer|Commander 2016|160|C|{1}{G}|Creature - Elf Druid Scount|1|1|{T}: Add one mana of any color that a land an opponent controls could produce.|
Rampant Growth|Commander 2016|161|C|{1}{G}|Sorcery|||Search your library for a basic land card and put that card onto the battlefield tapped. Then shuffle your library.|
Realm Seekers|Commander 2016|162|R|{4}{G}{G}|Creature - Elf Scout|0|0|Realm Seekers enters the battlefield with X +1/+1 counters on it, where X is the total number of cards in all players' hands.${2}{G}, Remove a +1/+1 counter from Realm Seekers: Search your library for a land card, reveal it, put it into your hand, then shuffle your library.|
Rites of Flourishing|Commander 2016|163|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.|
@@ -30259,7 +30259,7 @@ Satyr Wayfinder|Commander 2016|165|C|{1}{G}|Creature - Satyr|1|1|When Satyr Wayf
Scavenging Ooze|Commander 2016|166|R|{1}{G}|Creature - Ooze|2|2|{G}: Exile target card from a graveyard. If it was a creature card, put a +1/+1 counter on Scavenging Ooze and you gain 1 life.|
Shamanic Revelation|Commander 2016|167|R|{3}{G}{G}|Sorcery|||Draw a card for each creature you control.$Ferocious — You gain 4 life for each creature you control with power 4 or greater.|
Solidarity of Heroes|Commander 2016|168|U|{1}{G}|Instant|||Strive — Solidarity of Heroes costs {1}{G} more to cast for each target beyond the first.$Choose any number of target creatures. Double the number of +1/+1 counters on each of them.|
-Sylvok Explorer|Commander 2016|169|C|{1}{G}|Creature - Human Druid|1|1|{T}: Add to your mana pool one mana of any color that a land an opponent controls could produce.|
+Sylvok Explorer|Commander 2016|169|C|{1}{G}|Creature - Human Druid|1|1|{T}: Add one mana of any color that a land an opponent controls could produce.|
Tempt with Discovery|Commander 2016|170|R|{3}{G}|Sorcery|||Tempting offer — Search your library for a land card and put it onto the battlefield. Each opponent may search his or her library for a land card and put it onto the battlefield. For each opponent who searches a library this way, search your library for a land card and put it onto the battlefield. Then each player who search a library this way shuffles it.|
Thelonite Hermit|Commander 2016|171|R|{3}{G}|Creature - Elf Shaman|1|1|Saproling creatures get +1/+1.$Morph {3}{G}{G} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)$When Thelonite Hermit is turned face up, create four 1/1 green Saproling creature tokens.|
Thunderfoot Baloth|Commander 2016|172|R|{4}{G}{G}|Creature - Beast|5|5|Trample$Lieutenant — As long as you control your commander, Thunderfoot Baloth gets +2/+2 and other creatures you control get +2/+2 and have trample.|
@@ -30335,18 +30335,18 @@ Order|Commander 2016|240a|U|{3}{W}|Instant|||Exile target attacking creature.|
Chaos|Commander 2016|240b|U|{2}{R}|Instant|||Creatures can't block this turn.|
Akroan Horse|Commander 2016|241|R|{4}|Artifact Creature - Horse|0|4|Defender$When Akroan Horse enters the battlefield, an opponent gains control of it.$At the beginning of your upkeep, each opponent creates a 1/1 white Soldier creature token.|
Assault Suit|Commander 2016|242|U|{4}|Artifact - Equipment|||Equipped creature gets +2/+2, has haste, can't attack you or a planeswalker you control, and can't be sacrificed.$At the beginning of each opponent's upkeep, you may have that player gain control of equipped creature until end of turn. If you do, untap it.$Equip {3}|
-Astral Cornucopia|Commander 2016|243|R|{X}{X}{X}|Artifact|||Astral Cornucopia enters the battlefield with X charge counters on it.${T}: Choose a color. Add one mana of that color to your mana pool for each charge counter on Astral Cornucopia.|
+Astral Cornucopia|Commander 2016|243|R|{X}{X}{X}|Artifact|||Astral Cornucopia enters the battlefield with X charge counters on it.${T}: Choose a color. Add one mana of that color for each charge counter on Astral Cornucopia.|
Blinkmoth Urn|Commander 2016|244|R|{5}|Artifact|||At the beginning of each player's precombat main phase, if Blinkmoth Urn is untapped, that player adds {C} to his or her mana pool for each artifact he or she counters.|
Bonehoard|Commander 2016|245|R|{4}|Artifact - Equipment|||Living Weapon (When this Equipment enters the battlefield, create a 0/0 black Germ creature token, then attack this to it.)$Equipped creatures gets +X/+X, where X is the number of creatures cards in all graveyards.$Equip {2}|
Cauldron of Souls|Commander 2016|246|R|{5}|Artifact|||{T}: Choose any number of target creatures. Each of those creatures gains persist until end of turn. (When it 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.)|
-Chromatic Lantern|Commander 2016|247|R|{3}|Artifact|||Lands you control have "{T}: Add one mana of any color to your mana pool."${T}: Add one mana of any color to your mana pool.|
-Commander's Sphere|Commander 2016|248|C|{3}|Artifact|||{T}: Add to your mana pool one mana of any color in your commander's color identity.$Sacrifice Commander's Sphere: Draw a card.|
+Chromatic Lantern|Commander 2016|247|R|{3}|Artifact|||Lands you control have "{T}: Add one mana of any color."${T}: Add one mana of any color.|
+Commander's Sphere|Commander 2016|248|C|{3}|Artifact|||{T}: Add one mana of any color in your commander's color identity.$Sacrifice Commander's Sphere: Draw a card.|
Cranial Plating|Commander 2016|249|U|{2}|Artifact - Equipment|||Equipped creature gets +1/+0 for each artifact you control.${B}{B}: Attach Cranial Plating to target creature you control.$Equip {1}|
-Darksteel Ingot|Commander 2016|250|U|{3}|Artifact|||Indestructible${T}: Add one mana of any color to your mana pool.|
+Darksteel Ingot|Commander 2016|250|U|{3}|Artifact|||Indestructible${T}: Add one mana of any color.|
Empyrial Plate|Commander 2016|251|R|{2}|Artifact - Equipment|||Equipped creature gets +1/+1 for each card in your hand.$Equip {2}|
Etched Oracle|Commander 2016|252|U|{4}|Artifact Creature - Wizard|0|0|Sunburst (This enters the battlefield with +1/+1 counter on it for each color of mana spent to cast it.)${1}, Remove four +1/+1 counters from Etched oracle: Target player draws three cards.|
Everflowing Chalice|Commander 2016|253|U|{0}|Artifact|||Multikicker {2} (You may pay an additional {2} any number of times as you cast this spell.)$Everflowing Chalice enters the battlefield wth a charge counter on it for each time it was kicked.${T}: Add {C} for each charge counter on Everflowing Chalice.|
-Fellwar Stone|Commander 2016|254|U|{2}|Artifact|||{T}: Add to your mana pool one mana of any color that a land an opponent controls could produce.|
+Fellwar Stone|Commander 2016|254|U|{2}|Artifact|||{T}: Add one mana of any color that a land an opponent controls could produce.|
Golgari Signet|Commander 2016|255|C|{2}|Artifact|||{1}, {T}: Add {B}{G}.|
Gruul Signet|Commander 2016|256|C|{2}|Artifact|||{1}, {T}: Add {R}{G}.|
Howling Mine|Commander 2016|257|R|{2}|Artifact|||At the beginning of each player's draw step, if Howling Mine is untapped, that player draws an additional card.|
@@ -30378,7 +30378,7 @@ Azorius Chancery|Commander 2016|282|U||Land|||Azorius Chancery enters the battle
Boros Garrison|Commander 2016|283|U||Land|||Boros Garrison enters the battlefield tapped.$When Boros Garrison enters the battlefield, return a land you control to its owner's hand.${T}: Add {R}{W}.|
Buried Ruin|Commander 2016|284|U||Land|||{T}: Add {C}.${2}, {T}, Sacirice Buried Ruin: Return target artifact card from your graveyard to your hand.|
Caves of Koilos|Commander 2016|285|R||Land|||{T}: Add {C}.${T}: Add {W} or {B}. Caves of Koilos deals 1 damage to you.|
-Command Tower|Commander 2016|286|C||Land|||{T}: Add to your mana pool one mana of any color in your commander's color identity.|
+Command Tower|Commander 2016|286|C||Land|||{T}: Add one mana of any color in your commander's color identity.|
Crumbling Necropolis|Commander 2016|287|U||Land|||Crumbling Necropolis enters the battlefield tapped.${T}: Add {U}, {B}, or {R}.|
Darksteel Citadel|Commander 2016|288|U||Artifact Land|||Indestructible${T}: Add {C}.|
Darkwater Catacombs|Commander 2016|289|R||Land|||{1}, {T}: Add {U}{B}.|
@@ -30387,11 +30387,11 @@ Dismal Backwater|Commander 2016|291|C||Land|||Dismal Backwater enters the battle
Dragonskull Summit|Commander 2016|292|R||Land|||Dragonskull Summit enters the battlefield tapped unless you control a Swamp or a Mountain.${T}: Add {B} or {R}.|
Dreadship Reef|Commander 2016|293|U||Land|||{T}: Add {C}.${1}, {T}: 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 {U}.|
Evolving Wilds|Commander 2016|294|C||Land|||{T}, Sacrifice Evolving Wilds: Search your library for a basic land card and put it onto the battlefield tapped. Then shuffle your library.|
-Exotic Orchard|Commander 2016|295|R||Land|||{T}: Add to your mana pool one mana of any color that a land an opponent controls could produce.|
-Forbidden Orchard|Commander 2016|296|R||Land|||{T}: Add one mana of any color to your mana pool.$Whenever you tap Forbidden Orchard for mana, target opponent creates a 1/1 colorless Spirit creature token.|
+Exotic Orchard|Commander 2016|295|R||Land|||{T}: Add one mana of any color that a land an opponent controls could produce.|
+Forbidden Orchard|Commander 2016|296|R||Land|||{T}: Add one mana of any color.$Whenever you tap Forbidden Orchard for mana, target opponent creates a 1/1 colorless Spirit creature token.|
Frontier Bivouac|Commander 2016|297|U||Land|||Frontier Bivouac enters the battlefield tapped.${T}: Add {G}, {U}, or {R}.|
Golgari Rot Farm|Commander 2016|298|U||Land|||Golgari Rot Farm enters the battlefield tapped.$When Golgari Rot Farm enters the battlefield, return a land you control to its owner's hand.${T}: Add {B}{G}.|
-Grand Coliseum|Commander 2016|299|R||Land|||Grand Coliseum enters the battlefield tapped.${T}: Add {C}.${T}: Add one mana of any color to your mana pool. Grand Coliseum deals 1 damage to you.|
+Grand Coliseum|Commander 2016|299|R||Land|||Grand Coliseum enters the battlefield tapped.${T}: Add {C}.${T}: Add one mana of any color. Grand Coliseum deals 1 damage to you.|
Gruul Turf|Commander 2016|300|U||Land|||Gruul Turf enters the battlefield tapped.$When Gruul Turf enters the battlefield, return a land you control to its owner's hand.${T}: Add {R}{G}.|
Homeward Path|Commander 2016|301|R||Land|||{T}: Add {C}.${T}: Each player gains control of all creatures he or she owns.|
Izzet Boilerworks|Commander 2016|302|U||Land|||Izzet Boilerworks enters the battlefield tapped.$When Izzet Boilerworks enters the battlefield, return a land you control to its owner's hand.${T}: Add {U}{R}.|
@@ -30404,14 +30404,14 @@ Murmuring Bosk|Commander 2016|308|R||Land - Forest|||({T}: Add {G}.)$As M
Myriad Landscape|Commander 2016|309|U||Land|||Myriad Landscape enters the battlefield tapped.${T}: Add {C}.${2}, {T}, Sacrifice Myriad Landscape: Search your library for up to two basic land cards that share a land type, put them onto the battlefield tapped, then shuffle your library.|
Mystic Monastery|Commander 2016|310|U||Land|||Mystic Monastery enters the battlefield tapped.${T}: Add {U}, {R}, or {W}.|
Nomad Outpost|Commander 2016|311|U||Land|||Nomad Outpost enters the battlefield tapped.${T}: Add {R}, {W}, or {B}.|
-Opal Palace|Commander 2016|312|C||Land|||{T}: Add {C}.${1}, {T}: Add to your mana pool one mana of any color in your commander's color identity. If you spend this mana to cast your commander, it enters the battlefield with a number of additional +1/+1 counters on it equal to the number of times it's been cast from the command zone this game.|
+Opal Palace|Commander 2016|312|C||Land|||{T}: Add {C}.${1}, {T}: Add one mana of any color in your commander's color identity. If you spend this mana to cast your commander, it enters the battlefield with a number of additional +1/+1 counters on it equal to the number of times it's been cast from the command zone this game.|
Opulent Palace|Commander 2016|313|U||Land|||Opulent Palace enters the battlefield tapped.${T}: Add {B}, {G}, or {U}.|
Orzhov Basilica|Commander 2016|314|U||Land|||Orzhov Basilica enters the battlefield tapped.$When Orzhov Basilica enters the battlefield, return a land you control to its owner's hand.${T}: Add {W}{B}.|
Rakdos Carnarium|Commander 2016|315|U||Land|||Rakdos Carnarium enters the battlefield tapped.$When Rakdos Carnarium enters the battlefield, return a land you control to its owner's hand.${T}: Add {B}{R}.|
Reliquary Tower|Commander 2016|316|U||Land|||You have no maximum hand size.${T}: Add {C}.|
Rootbound Crag|Commander 2016|317|R||Land|||Rootbound Crag enters the battlefield tapped unless you control a Mountain or a Forest.${T}: Add {R} or {G}.|
Rugged Highlands|Commander 2016|318|C||Land|||Rugged Highlands enters the battlefield tapped.$When Rugged Highlands enters the battlefield, you gain 1 life.${T}: Add {R} or {G}.|
-Rupture Spire|Commander 2016|319|C||Land|||Rupture Spire enters the battlefield tapped.$When Rupture Spire enters the battlefield, sacrifice it unless you pay {1}.${T}: Add one mana of any color to your mana pool.|
+Rupture Spire|Commander 2016|319|C||Land|||Rupture Spire enters the battlefield tapped.$When Rupture Spire enters the battlefield, sacrifice it unless you pay {1}.${T}: Add one mana of any color.|
Sandsteppe Citadel|Commander 2016|320|U||Land|||Sandsteppe Citadel enters the battlefield tapped.${T}: Add {W}, {B}, or {G}.|
Savage Lands|Commander 2016|321|U||Land|||Savage Lands enters the battlefield tapped.${T}: Add {B}, {R}, or {G}.|
Seaside Citadel|Commander 2016|322|U||Land|||Seaside Citadel enters the battlefield tapped.${T}: Add {G}, {W}, or {U}.|
@@ -30426,7 +30426,7 @@ Swiftwater Cliffs|Commander 2016|330|C||Land|||Swiftwater Cliffs enters the batt
Temple of the False God|Commander 2016|331|U||Land|||{T}: Add {C}{C}. Activate this ability only if you control five or more lands.|
Terramorphic Expanse|Commander 2016|332|C||Land|||{T}, Sacrifice Terramorphic Expanse: Search your library for a basic land card and put it onto the battlefield tapped. Then shuffle your library.|
Thornwood Falls|Commander 2016|333|C||Land|||Thornwood Falls enters the battlefield tapped$When Thornwood Falls enters the battlefield, you gain 1 life.${T}: Add {G} or {U}.|
-Transguild Promenade|Commander 2016|334|C||Land|||Transguild Promenade enters the battlefield tapped.$When Transguild Promendade enters the battlefield, sacrifice it unless you pay {1}.${T}: Add one mana of any color to your mana pool.|
+Transguild Promenade|Commander 2016|334|C||Land|||Transguild Promenade enters the battlefield tapped.$When Transguild Promendade enters the battlefield, sacrifice it unless you pay {1}.${T}: Add one mana of any color.|
Underground River|Commander 2016|335|R||Land|||{T}: Add {C}.${T}: Add {U} or {B}. Underground River deals 1 damage to you.|
Windbrisk Heights|Commander 2016|336|R||Land|||Hideaway (This land enters the battlefield tapped. When it does, look at the top four cards of your library, exile one face down, then put the rest on the bottom of your library.)${T}: Add {W}.${W}, {T}: You may play the exiled card without paying its mana cost if you attacked with three or more creatures this turn.|
Plains|Commander 2016|337|L||Basic Land - Plains||||
@@ -30536,12 +30536,12 @@ Lathnu Sailback|Aether Revolt|89|C|{4}{R}|Creature - Lizard|5|4||
Lightning Runner|Aether Revolt|90|M|{3}{R}{R}|Creature - Human Warrior|2|2|Double strike, haste$Whenever Lightning Runner attacks, you get {E}{E} (two energy counters), then you may pay {E}{E}{E}{E}{E}{E}{E}{E}. If you do, untap all creatures you control and after this phase, there is an additional combat phase.|
Pia's Revolution|Aether Revolt|91|R|{2}{R}|Enchantment|||Whenever a nontoken artifact is put into your graveyard from the battlefield, return that card to your hand unless target opponent has Pia's Revolution deal 3 damage to him or her.|
Precise Strike|Aether Revolt|92|C|{R}|Instant|||Target creature gets +1/+0 and gains first strike until end of turn.|
-Quicksmith Rebel|Aether Revolt|93|R|{3}{R}|Creature - Human Artificer|3|2|When Quicksmith Rebel enters the battlefield, target artifact you control gains "{T}: This artifact deals 2 damage to target creature or player" for as long as you control Quicksmith Rebel.|
+Quicksmith Rebel|Aether Revolt|93|R|{3}{R}|Creature - Human Artificer|3|2|When Quicksmith Rebel enters the battlefield, target artifact you control gains "{T}: This artifact deals 2 damage to any target" for as long as you control Quicksmith Rebel.|
Ravenous Intruder|Aether Revolt|94|U|{1}{R}|Creature - Gremlin|1|2|Sacrifice an artifact: Ravenous Intruder gets +2/+2 until end of turn.|
Reckless Racer|Aether Revolt|95|U|{2}{R}|Creature - Human Pilot|2|3|First strike$Whenever Reckless Racer becomes tapped, you may discard a card. If you do, draw a card.|
Release the Gremlins|Aether Revolt|96|R|{X}{X}{R}|Sorcery|||Destroy X target artifacts. Create X 2/2 red Gremlin creature tokens.|
Scrapper Champion|Aether Revolt|97|U|{3}{R}|Creature - Human Artificer|2|2|Double strike (This creature deals both first-strike and regular combat damage.)$When Scrapper Champion enters the battlefield, you get {E}{E} (two energy counters).$Whenever Scrapper Champion attacks, you may pay {E}{E}. If you do, put a +1/+1 counter on it.|
-Shock|Aether Revolt|98|C|{R}|Instant|||Deal 2 damage to target creature or player.|
+Shock|Aether Revolt|98|C|{R}|Instant|||Deal 2 damage to any target.|
Siege Modification|Aether Revolt|99|U|{1}{R}{R}|Enchantment - Aura|||Enchant creature or Vehicle$As long as enchanted permanent is a Vehicle, it's a creature in addition to its other types.$Enchanted creature gets +3/+0 and has first strike.|
Sweatworks Brawler|Aether Revolt|100|C|{3}{R}|Creature - Human Artificer|3|3|Improvise (Your artifacts can help cast this spell. Each artifact you tap after you're done activating mana abilities pays for {1}.)$Menace|
Wrangle|Aether Revolt|101|C|{1}{R}|Sorcery|||Gain control of target creature with power 4 or less until end of turn. Untap that creature. It gains haste until end of turn.|
@@ -30565,11 +30565,11 @@ Natural Obsolescence|Aether Revolt|118|C|{1}{G}|Instant|||Put target artifact on
Peema Aether-Seer|Aether Revolt|119|U|{3}{G}|Creature - Elf Druid|3|2|When Peema Aether-Seer enters the battlefield, you get an amount of {E} (energy counters) equal to the greatest power among creatures you control.$Pay {E}{E}{E}: Target creature blocks this turn if able.|
Prey Upon|Aether Revolt|120|C|{G}|Sorcery|||Target creature you control fights target creature you don't control. (Each deals damage equal to its power to the other.)|
Ridgescale Tusker|Aether Revolt|121|U|{3}{G}{G}|Creature - Beast|5|5|When Ridgescale Tusker enters the battlefield, put a +1/+1 counter on each other creature you control.|
-Rishkar, Peema Renegade|Aether Revolt|122|R|{2}{G}|Legendary Creature - Elf Druid|2|2|When Rishkar, Peema Renegade enters the battlefield, put a +1/+1 counter on each of up to two target creatures.$Each creature you control with a counter on it has "T: Add G to your mana pool."|
+Rishkar, Peema Renegade|Aether Revolt|122|R|{2}{G}|Legendary Creature - Elf Druid|2|2|When Rishkar, Peema Renegade enters the battlefield, put a +1/+1 counter on each of up to two target creatures.$Each creature you control with a counter on it has "T: Add G."|
Rishkar's Expertise|Aether Revolt|123|R|{4}{G}{G}|Sorcery|||Draw cards equal to the greatest power among creatures you control.$You may cast a card with converted mana cost 5 or less from your hand without paying its mana cost.|
Scrounging Bandar|Aether Revolt|124|C|{1}{G}|Creature - Cat Monkey|0|0|Scrounging Bandar enters the battlefield with two +1/+1 counters on it.$At the beginning of you upkeep, you may move any number of +1/+1 counters from Scrounging Bandar onto another target creature.|
Silkweaver Elite|Aether Revolt|125|C|{2}{G}|Creature - Elf Archer|2|2|Reach (This creature can block creatures with flying.)$Revolt — When Silkweaver Elite enters the battlefield, if a permanent you controlled left the battlefield this turn, draw a card.|
-Unbridled Growth|Aether Revolt|126|C|{G}|Enchantment - Aura|||Enchant land$Enchanted land has "{T}: Add one mana of any color to your mana pool."$Sacrifice Unbridled Growth: Draw a card.|
+Unbridled Growth|Aether Revolt|126|C|{G}|Enchantment - Aura|||Enchant land$Enchanted land has "{T}: Add one mana of any color."$Sacrifice Unbridled Growth: Draw a card.|
Ajani Unyielding|Aether Revolt|127|M|{4}{G}{W}|Legendary Planeswalker - Ajani|||+2: Reveal the top three cards of your library. Put all nonland permanent cards revealed this way into your hand and the rest on the bottom of your library in any order.$-2: Exile target creature. Its controller gains life equal to its power.$-9: Put five +1/+1 counters on each creature you control and five loyalty counters on each other planeswalker you control.|
Dark Intimations|Aether Revolt|128|R|{2}{U}{B}{R}|Sorcery|||Each opponent sacrifices a creature or planeswalker, then discards a card. You return a creature or planeswalker card from your graveyard to your hand, then draw a card.$When you cast a Bolas planeswalker spell, exile Dark Intimations from your graveyard. That planeswalker enters the battlefield with an additional loyalty counter on it.|
Hidden Stockpile|Aether Revolt|129|U|{W}{B}|Enchantment|||Revolt — At the beginning of your end step, if a permanent you controlled left the battlefield this turn, create a 1/1 colorless Servo artifact creature token.${1}, Sacrifice a creature: Scry 1.|
@@ -30580,7 +30580,7 @@ Renegade Rallier|Aether Revolt|133|U|{1}{G}{W}|Creature - Human Warrior|3|2|R
Renegade Wheelsmith|Aether Revolt|134|U|{1}{R}{W}|Creature - Dwarf Pilot|3|2|Whenever Renegade Wheelsmith becomes tapped, target creature can't block this turn.|
Rogue Refiner|Aether Revolt|135|U|{1}{G}{U}|Creature - Human Rogue|3|2|When Rogue Refiner enters the battlefield, draw a card and you get {E}{E} (two energy counters).|
Spire Patrol|Aether Revolt|136|U|{2}{W}{U}|Creature - Human Soldier|3|2|Flying$When Spire Patrol enters the battlefield, tap target creature an opponent controls. That creature does not untap during its controller's untap step.|
-Tezzeret the Schemer|Aether Revolt|137|M|{2}{U}{B}|Legendary Planeswalker - Tezzeret|||+1: Create a colorless artifact token named Etherium Cell which has "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."$-2: Target creature gets +X/-X until end of turn, where X is the number of artifacts you control.$-7: You get an emblem with "At the beginning of combat on your turn, target artifact you control becomes an artifact creature with base power and toughness 5/5."|
+Tezzeret the Schemer|Aether Revolt|137|M|{2}{U}{B}|Legendary Planeswalker - Tezzeret|||+1: Create a colorless artifact token named Etherium Cell which has "{T}, Sacrifice this artifact: Add one mana of any color."$-2: Target creature gets +X/-X until end of turn, where X is the number of artifacts you control.$-7: You get an emblem with "At the beginning of combat on your turn, target artifact you control becomes an artifact creature with base power and toughness 5/5."|
Tezzeret's Touch|Aether Revolt|138|U|{1}{U}{B}|Enchantment - Aura|||Enchant artifact$Enchanted artifact is a creature with base power and toughness 5/5 in addition to its other types.$When enchanted artifact is put into a graveyard, return that card to its owner's hand.|
Weldfast Engineer|Aether Revolt|139|U|{1}{B}{R}|Creature - Human Artificer|3|3|At the beginning of combat on your turn, target artifact creature you control gets +2/+0 until end of turn.|
Winding Constrictor|Aether Revolt|140|U|{B}{G}|Creature - Snake|2|3|If one or more counters would be placed on an artifact or creature you control, that many of those counters plus one are placed on that permanent instead.$If you would get one or more counters, you get that many of those counters plus one instead.|
@@ -30624,10 +30624,10 @@ Treasure Keeper|Aether Revolt|177|U|{4}|Artifact Creature - Construct|3|3|When T
Universal Solvent|Aether Revolt|178|C|{1}|Artifact|||{7}, {T}, Sacrifice Universal Solvent: Destroy target permanent.|
Untethered Express|Aether Revolt|179|U|{4}|Artifact - Vehicle|4|4|Trample$Whenever Untethered Express attacks, put a +1/+1 counter on it.$Crew 1 (Tap any number of creatures you control with total power 1 or more: This Vehicle becomes an artifact creature until end of turn.)|
Verdant Automaton|Aether Revolt|180|C|{2}|Artifact Creature - Construct|1|2|{3}{G}: Put a +1/+1 counter on Verdant Automaton.|
-Walking Ballista|Aether Revolt|181|R|{X}{X}|Artifact Creature - Construct|0|0|Walking Ballista enters the battlefield with X +1/+1 counters on it.${4}: Put a +1/+1 counter on Walking Ballista.$Remove a +1/+1 counter from Walking Ballista: It deals 1 damage to target creature or player.|
+Walking Ballista|Aether Revolt|181|R|{X}{X}|Artifact Creature - Construct|0|0|Walking Ballista enters the battlefield with X +1/+1 counters on it.${4}: Put a +1/+1 counter on Walking Ballista.$Remove a +1/+1 counter from Walking Ballista: It deals 1 damage to any target.|
Watchful Automaton|Aether Revolt|182|C|{3}|Artifact Creature - Construct|2|2|{2}{U}: Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)|
Welder Automaton|Aether Revolt|183|C|{2}|Artifact Creature - Construct|2|1|{3}{R}: Welder Automaton deals 1 damage to each opponent.|
-Spire of Industry|Aether Revolt|184|R||Land|||{T}: Add {C}.${T}, Pay 1 life: Add one mana of any color to your mana pool. Activate this ability only if you control an artifact.|
+Spire of Industry|Aether Revolt|184|R||Land|||{T}: Add {C}.${T}, Pay 1 life: Add one mana of any color. Activate this ability only if you control an artifact.|
Ajani, Valiant Protector|Aether Revolt|185|M|{4}{G}{W}|Legendary Planeswalker - Ajani|||+2: Put two +1/+1 counters on up to one target creature.$+1: Reveal cards from the top of your library until you reveal a creature card. Put that card into your hand and the rest on the bottom of your library in a random order.$-11: Put X +1/+1 counters on target creature, where X is your life total. That creature gains trample until end of turn.|
Inspiring Roar|Aether Revolt|186|C|{3}{W}|Sorcery|||Put a +1/+1 counter on each creature you control.|
Ajani's Comrade|Aether Revolt|187|U|{1}{G}|Creature - Elf Soldier|2|2|Trample$At the beginning of combat on your turn, if you control an Ajani planeswalker, put a +1/+1 counter on Ajani's Comrade.|
@@ -30738,11 +30738,11 @@ Goblin Guide|Modern Masters 2017|96|R|{R}|Creature - Goblin Scout|2|2|Haste$When
Hanweir Lancer|Modern Masters 2017|97|C|{2}{R}|Creature - Human Knight|2|2|Soulbond$As long as Hanweir Lancer is paired with another creature, both creatures have first strike.|
Hellrider|Modern Masters 2017|98|R|{2}{R}{R}|Creature - Devil|3|3|Haste$Whenever a creature you control attacks, Hellrider deals 1 damage to defending player.|
Madcap Skills|Modern Masters 2017|99|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +3/+0 and has menace.|
-Magma Jet|Modern Masters 2017|100|C|{1}{R}|Instant|||Magma Jet deals 2 damage to target creature or player. Scry 2.|
+Magma Jet|Modern Masters 2017|100|C|{1}{R}|Instant|||Magma Jet deals 2 damage to any target. Scry 2.|
Mizzium Mortars|Modern Masters 2017|101|R|{1}{R}|Sorcery|||Mizzium Mortars deals 4 damage to target creature you don't control.$Overload {3}{R}{R}{R}|
Mogg Flunkies|Modern Masters 2017|102|C|{1}{R}|Creature - Goblin|3|3|Mogg Flunkies can't attack or block alone.|
Molten Rain|Modern Masters 2017|103|U|{1}{R}{R}|Sorcery|||Destroy taget land. If that land was nonbasic, Molten Rain deals 2 damage to the land's controller.|
-Mudbutton Torchrunner|Modern Masters 2017|104|C|{2}{R}|Creature - Goblin Warrior|1|1|When Mudbutton Torchrunner dies, it deals 3 damage to target creature or player.|
+Mudbutton Torchrunner|Modern Masters 2017|104|C|{2}{R}|Creature - Goblin Warrior|1|1|When Mudbutton Torchrunner dies, it deals 3 damage to any target.|
Past in Flames|Modern Masters 2017|105|M|{3}{R}|Sorcery|||Each instant and sorcery card in your graveyard gains flashback until end of turn. The flashback cost is equal to it mana cost.$Flashbac {4}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
Pyrewild Shaman|Modern Masters 2017|106|U|{2}{R}|Creature - Goblin Shaman|3|1|Bloodrush &mdash {1}{R}, Discard Pyrewild Shaman: Target attacking creature gets +3/+1 until end of turn.$Whenever one or more creatures you control deal combat damage to a player, if Pyrewild Shaman is in your graveyard, you may pay {3}. If you do, return Pyrewild Shaman to your hand.|
Pyroclasm|Modern Masters 2017|107|U|{1}{R}|Sorcery|||Pyroclasm deals 2 damage to each creature.|
@@ -30750,10 +30750,10 @@ Pyromancer Ascension|Modern Masters 2017|108|R|{1}{R}|Enchantment|||Whenever you
Rubblebelt Maaka|Modern Masters 2017|109|C|{3}{R}|Creature - Cat|3|3|Bloodrush — {R}, Discard Rubblebelt Maaka: Target attacking creature gets +3/+3 until end of turn.|
Scorched Rusalka|Modern Masters 2017|110|C|{R}|Creature - Spirit|1|1|{R}, Sacrifice a creature: Scorched Rusalka deals 1 damage to target player.|
Scourge Devil|Modern Masters 2017|111|C|{4}{R}|Creature - Devil|3|3|When Scourge Devil enters the battlefield, creature you control get +1/+0 until end of turn.$Unearth {2}{R}|
-Skirsdag Cultist|Modern Masters 2017|112|U|{2}{R}{R}|Creature - Human Shaman|2|2|{R}, {T}, Sacrifice a creature: Skirsdag Cultist deals 2 damage to target creature or player.|
-Thunderous Wrath|Modern Masters 2017|113|C|{4}{R}{R}|Instant|||Thunderous Wrath deals 5 damage to target creature or player.$Miracle {R}|
+Skirsdag Cultist|Modern Masters 2017|112|U|{2}{R}{R}|Creature - Human Shaman|2|2|{R}, {T}, Sacrifice a creature: Skirsdag Cultist deals 2 damage to any target.|
+Thunderous Wrath|Modern Masters 2017|113|C|{4}{R}{R}|Instant|||Thunderous Wrath deals 5 damage to any target.$Miracle {R}|
Traitorous Instinct|Modern Masters 2017|114|C|{3}{R}|Sorcery|||Gain control of target creature until end of turn. Untap that creature. Until end of turn, it gets +2/+0 and gain haste.|
-Vithian Stinger|Modern Masters 2017|115|U|{2}{R}|Creature - Human Shaman|0|1|{T}: Vithian Stinger deals 1 damage to target creature or player.$Unearth {1}{R} ({1}{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.)|
+Vithian Stinger|Modern Masters 2017|115|U|{2}{R}|Creature - Human Shaman|0|1|{T}: Vithian Stinger deals 1 damage to any target.$Unearth {1}{R} ({1}{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.)|
Zealous Conscripts|Modern Masters 2017|116|R|{4}{R}|Creature - Human Warrior|3|3|Haste$When Zealous Conscripts enters the battlefield, gain control of target permanent until end of turn. Untap that permanent. It gains haste until end of turn.|
Arachnus Spinner|Modern Masters 2017|117|U|{5}{G}|Creature - Spider|5|7|Reach$Tap an untapped Spider you control: Search your graveyard and/or library for a card named Arachnus Web and put it onto the battlefield attached to target creature. If you seach your library this way, shuffle it.|
Arachnus Web|Modern Masters 2017|118|C|{2}{G}|Enchant creature$Enchanted creature can't attack or block, and its activated abilities can't be activated.$At the beginning of the end step, if enchanted creature's power is 4 or greater, destroy Arachnus Web.|
@@ -30780,7 +30780,7 @@ Strength in Numbers|Modern Masters 2017|138|C|{1}{G}|Instant|||Until end of turn
Summoning Trap|Modern Masters 2017|139|R|{4}{G}{G}|Instant - Trap|||If a creature spell you cast this turn was countered by a spell or ability an opponent controlled, you may pay {0} rather than pay Summoning Trap's mana cost.$Look at the top seven cards of your library. You may put a creature card from among them onto the battlefield. Put the rest on the bottom of your library in any order.|
Sylvan Ranger|Modern Masters 2017|140|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.|
Tarmogoyf|Modern Masters 2017|141|M|{1}{G}|Creature - Lhurgoyf|*|1+*|Tarmogoyf's power is equal to the number of cards types among cards in all graveyards and its toughness is equal to that number plus 1.|
-Thornscape Battlemage|Modern Masters 2017|142|U|{2}{G}|Creature - Elf Wizard|2|2|Kicker {R} and/or {W}$When Thornscape Battlemage enters the battlefield, if it was kicked with its {R} kicker, it deals 2 damage to target creature or player.$When Thornscape Battlemage enters the battlfield, if it was kicked with its {W} kicker, destroy target artifact.|
+Thornscape Battlemage|Modern Masters 2017|142|U|{2}{G}|Creature - Elf Wizard|2|2|Kicker {R} and/or {W}$When Thornscape Battlemage enters the battlefield, if it was kicked with its {R} kicker, it deals 2 damage to any target.$When Thornscape Battlemage enters the battlfield, if it was kicked with its {W} kicker, destroy target artifact.|
Thragtusk|Modern Masters 2017|143|R|{4}{G}|Creature - Beast|5|3|When Thragtusk enters the battlefield, you gain 5 life.$When Thragtusk leaves the battlefield, create a 3/3 green Beast creature token.|
Ulvenwald Tracker|Modern Masters 2017|144|R|{G}|Creature - Human Shaman|1|1|{1}{G}, {T}: Target creature you control fights another target creature.|
Vital Splicer|Modern Masters 2017|145|U|{3}{G}|Creature - Human Artificer|1|1|When Vital Splicer enters the battlefield, create a 3/3 colorless Golem artifact creature token.${1}: Regenerate target Golem you control.|
@@ -30812,7 +30812,7 @@ Izzet Charm|Modern Masters 2017|171|U|{U}{R}|Instant|||Choose one — Counte
Kathari Bomber|Modern Masters 2017|172|C|{1}{B}{R}|Creature - Bird Shaman|2|2|Flying$When Kathari Bomber deals combat damage to a player, create two 1/1 red Goblin creature tokens and sacrifice Kathari Bomber.$Unearth {3}{B}{R}|
Moroii|Modern Masters 2017|173|U|{2}{U}{B}|Creature - Vampire|4|4|Flying$At the beginning of your upkeep, you lose 1 life.|
Mystic Genesis|Modern Masters 2017|174|U|{2}{G}{U}{U}|Instant|||Counter target spell. Create an X/X green Ooze creature token, where X is that spell's converted mana cost.|
-Niv-Mizzet, Dracogenius|Modern Masters 2017|175|R|{2}{U}{U}{R}{R}|Legendary Creature - Dragon Wizard|5|5|Flying$Whenever Niv-Mizzet, Dracogenius deals damage to a player, you may draw a card.${U}{R}: Niv-Mizzet, Dracogenius deals 1 damage to target creature or player.|
+Niv-Mizzet, Dracogenius|Modern Masters 2017|175|R|{2}{U}{U}{R}{R}|Legendary Creature - Dragon Wizard|5|5|Flying$Whenever Niv-Mizzet, Dracogenius deals damage to a player, you may draw a card.${U}{R}: Niv-Mizzet, Dracogenius deals 1 damage to any target.|
Obzedat, Ghost Council|Modern Masters 2017|176|R|{1}{W}{W}{B}{B}|Legendary Creature - Spirit Advisor|5|5|When Obzedat, Ghost Council enters the battlefield, target opponent loses 2 life and you gain 2 life.$At the beginning of your end step, you may exile Obzedat. If you do, return it to the battlefield under its owner's control at the beginning of your next upkeep. It gains haste.|
Olivia Voldaren|Modern Masters 2017|177|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.|
Pilfered Plans|Modern Masters 2017|178|C|{1}{U}{B}|Sorcery|||Target player puts the top two cards of his or her library into his or her graveyard. Draw two cards.|
@@ -30843,7 +30843,7 @@ Wayfaring Temple|Modern Masters 2017|202|U|{1}{G}{W}|Creature - Elemental|0|0|Wa
Woolly Thoctar|Modern Masters 2017|203|U|{R}{G}{W}|Creature - Beast|5|4||
Zur the Enchanter|Modern Masters 2017|204|R|{1}{W}{U}{B}|Legendary Creature - Human Wizard|1|4|Flying$Whenever Zur the Enchanter attacks, you may search your library for an enchantment card with converted mana cost 3 or less and put it onto the battlefield. If you do, shuffle your library.|
Aethertow|Modern Masters 2017|205|C|{3}{WU}|Instant|||Put target attacking or blocking creature on top of its owner's library.$Conspire|
-Boros Reckoner|Modern Masters 2017|206|R|{RW}{RW}{RW}|Creature - Minotaur Wizard|3|3|Whenever Boros Reckoner is dealt combat damage, it deals that much damage to target creature or player.${RW}: Boros Reckoner gains first strike until end of turn.|
+Boros Reckoner|Modern Masters 2017|206|R|{RW}{RW}{RW}|Creature - Minotaur Wizard|3|3|Whenever Boros Reckoner is dealt combat damage, it deals that much damage to any target.${RW}: Boros Reckoner gains first strike until end of turn.|
Burning-Tree Emissary|Modern Masters 2017|207|C|{RG}{RG}|Creature - Human Shaman|2|2|When Burning-Tree Emissary enters the battlefield, add {R}{G}.|
Giantbaiting|Modern Masters 2017|208|C|{2}{RG}|Sorcery|||Create a 4/4 red and green Giant Warrior creature token with haste. Exile it at the beginning of the next end step.$Conspire|
Gift of Orzhova|Modern Masters 2017|209|C|{1}{WB}{WB}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+1 and has flying and lifelink.|
@@ -30869,7 +30869,7 @@ Arcane Sanctum|Modern Masters 2017|228|U||Land|||Arcane Sanctum enters the battl
Arid Mesa|Modern Masters 2017|229|R||Land|||{T}, Pay 1 life, Sacrifice Arid Mesa: Search your library for a Mountain or Plains card and put it onto the battlefield. Then shuffle your library.|
Azorius Guildgate|Modern Masters 2017|230|C||Land - Gate||||Azorius Guildgate enters the battlefield tapped.${T}: Add {W} or {U}.|
Boros Guildgate|Modern Masters 2017|231|C||Land - Gate|||Boros Guildgate enters the battlefield tapped.${T}: Add {R} or {W}.|
-Cavern of Souls|Modern Masters 2017|232|M||Land|||As Cavern of Souls enters the battlefield, choose a creature type.${T}: Add {C}.${T}: Add one mana of any color to your mana pool. Spend this mana only to cast a creature spell of the chosen type, and that spell can't be countered.|
+Cavern of Souls|Modern Masters 2017|232|M||Land|||As Cavern of Souls enters the battlefield, choose a creature type.${T}: Add {C}.${T}: Add one mana of any color. Spend this mana only to cast a creature spell of the chosen type, and that spell can't be countered.|
Crumbling Necropolis|Modern Masters 2017|233|U||Land|||Crumbling Necropolis enters the battlefield tapped.${T}: Add {U}, {B}, or {R}.|
Dimir Guildgate|Modern Masters 2017|234|C||Land - Gate|||Dimir Guildgate enters the battlefield tapped.${T}: Add {U} or {B}.|
Golgari Guildgate|Modern Masters 2017|235|C||Land - Gate|||Golgari Guildgate enters the battlefield tapped.${T}: Add {B} or {G}.|
@@ -30884,7 +30884,7 @@ Savage Lands|Modern Masters 2017|243|U||Land|||Savage Lands enters the battlefie
Scalding Tarn|Modern Masters 2017|244|R||Land|||{T}, Pay 1 life, Sacrifice Scalding Tarn: Search your library for an Island or Mountain card and put it onto the battlefield. Then shuffle your library.|
Seaside Citadel|Modern Masters 2017|245|U||Land|||Seaside Citadel enters the battlefield tapped.${T}: Add {G}, {W}, or {U}.|
Selesnya Guildgate|Modern Masters 2017|246|C||Land - Gate|||Selesnya Guildgate enters the battlefield tapped.${T}: Add {G} or {W}.|
-Shimmering Grotto|Modern Masters 2017|247|C||Land|||{T}: Add {C}.${1}, {T}: Add one mana of any color to your mana pool.|
+Shimmering Grotto|Modern Masters 2017|247|C||Land|||{T}: Add {C}.${1}, {T}: Add one mana of any color.|
Simic Guildgate|Modern Masters 2017|248|C||Land - Gate|||Simic Guildgate enters the battlefield tapped.${T}: Add {G} or {U}.|
Verdant Catacombs|Modern Masters 2017|249|R||Land|||{T}, Pay 1 life, Sacrifice Verdant Catacombs: Search your library for a Swamp or Forest card and put it onto the battlefield. Then shuffle your library.|
Angel of Sanctions|Amonkhet|1|M|{3}{W}{W}|Creature - Angel|3|4|Flying$When Angel of Sanctions enters the battlefield, you may exile target nonland permanent an opponent controls until Angel of Sanctions leaves the battlefield.$Embalm {5}{W}|
@@ -31018,13 +31018,13 @@ Desert Cerodon|Amonkhet|128|C|{5}{R}|Creature - Beast|6|4|Cycling {R}|
Electrify|Amonkhet|129|C|{3}{R}|Instant|||Electrify deals 4 damage to target creature.|
Emberhorn Minotaur|Amonkhet|130|C|{3}{R}|Creature - Minotaur Warrior|4|3|You may exert Emberhorn Minotaur as it attacks. When you do, it gets +1/+1 and gains menace until end of turn.|
Flameblade Adept|Amonkhet|131|U|{R}|Creature - Jackal Warrior|1|2|Menace$Whenever you cycle or discard a card, Flameblade Adept gets +1/+0 until end of turn.|
-Fling|Amonkhet|132|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.|
+Fling|Amonkhet|132|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 any target.|
Glorious End|Amonkhet|133|M|{2}{R}|Instant|||End the turn. (Exile all spells and abilities on the stack, including the 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.)$At the beginning of your next end step, you lose the game.|
Glorybringer|Amonkhet|134|R|{3}{R}{R}|Creature - Dragon|4|4|Flying, haste$You may exert Glorybringer as it attacks. When you do, it deals 4 damage to target non-Dragon creature an opponent controls.|
Harsh Mentor|Amonkhet|135|R|{1}{R}|Creature - Human Cleric|2|2|Whenever an opponent activates an ability of an artifact, creature, or land on the battlefield, if it isn't a mana ability, Harsh Mentor deals 2 damage to that player.|
Hazoret the Fervent|Amonkhet|136|M|{3}{R}|Legendary Creature - God|5|4|Indestructible, haste$Hazoret the Fervent can't attack or block unless you have one or fewer cards in hand.${2}{R}, Discard a card: Hazoret deals 2 damage to each opponent.|
Hazoret's Favor|Amonkhet|137|R|{2}{R}|Enchantment|||At the beginning of combat on your turn, you may have target creature you control get +2/+0 and gain haste until end of turn. If you do, sacrifice it at the beginning of the next end step.|
-Heart-Piercer Manticore|Amonkhet|138|R|{2}{R}{R}|Creature - Manticore|4|3|When Heart-Piercer Manticore enters the battlefield, you may sacrifice another creature. When you do, Heart-Piercer Manticore deals damage equal to that creature's power to target creature or player.$Embalm {5}{R}|
+Heart-Piercer Manticore|Amonkhet|138|R|{2}{R}{R}|Creature - Manticore|4|3|When Heart-Piercer Manticore enters the battlefield, you may sacrifice another creature. When you do, Heart-Piercer Manticore deals damage equal to that creature's power to any target.$Embalm {5}{R}|
Hyena Pack|Amonkhet|139|C|{2}{R}{R}|Creature - Hyena|3|4||
Limits of Solidarity|Amonkhet|140|U|{3}{R}|Sorcery|||Gain control of target creature until end of turn. Untap that creature. It gains haste until end of turn.$Cycling {2}|
Magma Spray|Amonkhet|141|C|{R}|Instant|||Magma Spray deals 2 damage to target creature. If that creature would die this turn, exile it instead.|
@@ -31038,7 +31038,7 @@ Soul-Scar Mage|Amonkhet|148|R|{R}|Creature - Human Wizard|1|2|Prowess$If a sourc
Sweltering Suns|Amonkhet|149|R|{1}{R}{R}|Sorcery|||Sweltering Suns deals 3 damage to each creature.$Cycling {3}|
Thresher Lizard|Amonkhet|150|C|{2}{R}|Creature - Lizard|3|2|Thresher Lizard gets +1/+2 as long as you have one or fewer cards in hand.|
Tormenting Voice|Amonkhet|151|C|{1}{R}|Sorcery|||As an additional cost to cast Tormenting Voice, discard a card.$Draw two cards.|
-Trial of Zeal|Amonkhet|152|U|{2}{R}|Enchantment|||When Trial of Zeal enters the battlefield, it deals 3 damage to target creature or player.$When a Cartouche enters the battlefield under your control, return Trial of Zeal to its owner's hand.|
+Trial of Zeal|Amonkhet|152|U|{2}{R}|Enchantment|||When Trial of Zeal enters the battlefield, it deals 3 damage to any target.$When a Cartouche enters the battlefield under your control, return Trial of Zeal to its owner's hand.|
Trueheart Twins|Amonkhet|153|U|{4}{R}|Creature - Jackal Warrior|4|4|You may exert Trueheart Twins as it attacks.$Whenever you exert a creature, creatures you control get +1/+0 until end of turn.|
Violent Impact|Amonkhet|154|C|{3}{R}|Sorcery|||Destroy target artifact or land.$Cycling {2}|
Warfire Javelineer|Amonkhet|155|U|{3}{R}|Creature - Minotaur Warrior|2|3|When Warfire Javelineer enters the battlefield, it deals X damage to target creature an opponent controls, where X is the number of instant and sorcery cards in your graveyard.|
@@ -31046,14 +31046,14 @@ Benefaction of Rhonas|Amonkhet|156|C|{2}{G}|Sorcery|||Reveal the top five cards
Bitterblade Warrior|Amonkhet|157|C|{1}{G}|Creature - Jackal Warrior|2|2|You may exert Bitterblade Warrior as it attacks. When you do, it gets +1/+0 and gains deathtouch until end of turn.|
Cartouche of Strength|Amonkhet|158|C|{2}{G}|Enchantment - Aura Cartouche|||Enchant creature you control$When Cartouche of Strength enters the battlefield, you may have enchanted creature fight target creature an opponent controls.$Enchanted creature gets +1/+1 and has trample.|
Champion of Rhonas|Amonkhet|159|R|{3}{G}|Creature - Jackal Warrior|3|3|You may exert Champion of Rhonas as it attacks. When you do, you may put a creature card from your hand onto the battlefield.|
-Channeler Initiate|Amonkhet|160|R|{1}{G}|Creature - Human Druid|3|4|When Channeler Initiate enters the battlefield, put three -1/-1 counters on target creature you control.${T}, Remove a -1/-1 counter from Channeler Initiate: Add one mana of any color to your mana pool.|
+Channeler Initiate|Amonkhet|160|R|{1}{G}|Creature - Human Druid|3|4|When Channeler Initiate enters the battlefield, put three -1/-1 counters on target creature you control.${T}, Remove a -1/-1 counter from Channeler Initiate: Add one mana of any color.|
Colossapede|Amonkhet|161|C|{4}{G}|Creature - Insect|5|5||
Crocodile of the Crossing|Amonkhet|162|U|{3}{G}|Creature - Crocodile|5|4|Haste$When Crocodile of the Crossing enters the battlefield, put a -1/-1 counter on target creature you control.|
Defiant Greatmaw|Amonkhet|163|U|{2}{G}|Creature - Hippo|4|5|When Defiant Greatmaw enters the battlefield, put two -1/-1 counters on target creature you control.$Whenever you put one or more -1/-1 counters on Defiant Greatmaw, remove a -1/-1 counter from another target creature you control.|
Dissenter's Deliverance|Amonkhet|164|C|{1}{G}|Instant|||Destroy target artifact.$Cycling {G}|
Exemplar of Strength|Amonkhet|165|U|{1}{G}|Creature - Human Warrior|4|4|When Exemplar of Strength enters the battlefield, put three -1/-1 counters on target creature you control.$Whenever Exemplar of Strength attacks, remove a -1/-1 counter from it. If you do, you gain 1 life.|
Giant Spider|Amonkhet|166|C|{3}{G}|Creature - Spider|2|4|Reach|
-Gift of Paradise|Amonkhet|167|C|{2}{G}|Enchantment - Aura|||Enchant land$When Gift of Paradise enters the battlefield, you gain 3 life.$Enchanted land has "{T}: Add two mana of any one color to your mana pool."|
+Gift of Paradise|Amonkhet|167|C|{2}{G}|Enchantment - Aura|||Enchant land$When Gift of Paradise enters the battlefield, you gain 3 life.$Enchanted land has "{T}: Add two mana of any one color."|
Greater Sandwurm|Amonkhet|168|C|{5}{G}{G}|Creature - Wurm|7|7|Greater Sandwurm can't be blocked by creatures with power 2 or less.$Cycling {2}|
Hapatra's Mark|Amonkhet|169|U|{G}|Instant|||Target creature you control gains hexproof until end of turn. Remove all -1/-1 counters from it.|
Harvest Season|Amonkhet|170|R|{2}{G}|Sorcery|||Search your library for up to X basic land cards, where X is the number of tapped creatures you control, and put those card onto the battlefield tapped, then shuffle your library.|
@@ -31062,7 +31062,7 @@ Honored Hydra|Amonkhet|172|R|{5}{G}|Creature - Snake Hydra|6|6|Trample$Embalm {3
Hooded Brawler|Amonkhet|173|C|{2}{G}|Creature - Naga Warrior|3|2|You may exert Hooded Brawler as it attacks. When you do, it gets +2/+2 until end of turn.|
Initiate's Companion|Amonkhet|174|C|{1}{G}|Creature - Cat|3|1|Whenever Initiate's Companion deals combat damage to a player, untap target creature or land.|
Manglehorn|Amonkhet|175|U|{2}{G}|Creature - Beast|2|2|When Manglehorn enters the battlefield, you may destroy target artifact.$Artifacts your opponents control enter the battlefield tapped.|
-Naga Vitalist|Amonkhet|176|C|{1}{G}|Creature - Naga Druid|1|2|{T}: Add to your mana pool one mana of any type that a land you control could produce.|
+Naga Vitalist|Amonkhet|176|C|{1}{G}|Creature - Naga Druid|1|2|{T}: Add one mana of any type that a land you control could produce.|
Oashra Cultivator|Amonkhet|177|C|{G}|Creature - Human Druid|0|3|{2}{G}, {T}, Sacrifice Oashra Cultivator: Search your library for a basic land card, put it onto the battlefield tapped, then shuffle your library.|
Ornery Kudu|Amonkhet|178|C|{2}{G}|Creature - Antelope|3|4|When Ornery Kudu enters the battlefield, put a -1/-1 counter on target creature you control.|
Pouncing Cheetah|Amonkhet|179|C|{2}{G}|Creature - Cat|3|2|Flash|
@@ -31136,18 +31136,18 @@ Kefnet's Monument|Amonkhet|231|U|{3}|Legendary Artifact|||Blue creature spells y
Luxa River Shrine|Amonkhet|232|C|{3}|Artifact|||{1}, {T}: You gain 1 life. Put a brick counter on Luxa River Shrine.${T}: You gain 2 life. Activate this ability only if there are three or more brick counters on Luxa River Shrine.|
Oketra's Monument|Amonkhet|233|U|{3}|Legendary Artifact|||White creature spells you cast cost {1} less to cast.$Whenever you cast a creature spell, create 1/1 a white Warrior creature token with vigilance.|
Oracle's Vault|Amonkhet|234|R|{4}|Artifact|||{2}, {T}: Exile the top card of your library. Until end of turn, you may play that card. Put a brick counter on Oracle's Vault.${T}: Exile the top card of your library. Until end of turn, you may play that card without paying its mana cost. Activate this ability only if there are three or more brick counters on Oracle's Vault.|
-Pyramid of the Pantheon|Amonkhet|235|R|{1}|Artifact|||{2}, {T}: Add one mana of any color to your mana pool. Put a brick counter on Pyramid of the Pantheon.$ {T}: Add three mana of any one color to your mana pool. Activate this ability only of there are three or more brick counters on Pyramid of the Pantheon.|
+Pyramid of the Pantheon|Amonkhet|235|R|{1}|Artifact|||{2}, {T}: Add one mana of any color. Put a brick counter on Pyramid of the Pantheon.$ {T}: Add three mana of any one color. Activate this ability only of there are three or more brick counters on Pyramid of the Pantheon.|
Rhonas's Monument|Amonkhet|236|U|{3}|Legendary Artifact|||Green creature spells you cast cost {1} less to cast.$Whenever you cast a creature spell, target creature you control gets +2/+2 and gains trample until end of turn.|
Throne of the God-Pharaoh|Amonkhet|237|R|{2}|Legendary Artifact|||At the beginning of your end step, each opponent loses life equal to the number of tapped creatures you control.|
Watchers of the Dead|Amonkhet|238|U|{2}|Artifact Creature - Cat|2|2|Exile Watchers of the Dead: Each opponent chooses two cards in his or her graveyard and exiles the rest.|
Canyon Slough|Amonkhet|239|R||Land - Swamp Mountain|||({T}: Add {B} or {R}.)$Canyon Slough enters the battlefield tapped.$Cycling {2}|
-Cascading Cataracts|Amonkhet|240|R||Land|||Indestructible${T}: Add {C}.${5}, {T}: Add five mana in any combination of colors to your mana pool.|
+Cascading Cataracts|Amonkhet|240|R||Land|||Indestructible${T}: Add {C}.${5}, {T}: Add five mana in any combination of colors.|
Cradle of the Accursed|Amonkhet|241|C||Land - Desert|||{T}: Add {C}.${3}, {T}, Sacrifice Cradle of the Accursed: Create a 2/2 black Zombie creature token. Activate this ability only any time you could cast a sorcery.|
Evolving Wilds|Amonkhet|242|C||Land|||{T}, Sacrifice Evolving Wilds: Search your library for a basic land card and put it onto the battlefield tapped. Then shuffle your library.|
Fetid Pools|Amonkhet|243|R||Land - Island Swamp|||({T}: Add {U} or {B}.)$Fetid Pools enters the battlefield tapped.$Cycling {2}|
Grasping Dunes|Amonkhet|244|U||Land - Desert|||{T}: Add {C}.${1}, {T}, Sacrifice Grasping Dunes: Put a -1/-1 counter on target creature. Activate this ability only any time you could cast a sorcery.|
Irrigated Farmland|Amonkhet|245|R||Land - Plains Island|||({T}: Add {W} or {U}.)$Irrigated Farmland enters the battlefield tapped.$Cycling {2}|
-Painted Bluffs|Amonkhet|246|C||Land - Desert|||{T}: Add {C}.${1}, {T}: Add one mana of any color to your mana pool.|
+Painted Bluffs|Amonkhet|246|C||Land - Desert|||{T}: Add {C}.${1}, {T}: Add one mana of any color.|
Scattered Groves|Amonkhet|247|R||Land - Forest Plains|||({T}: Add {G} or {W}.)$Scattered Groves enters the battlefield tapped.$Cycling {2}|
Sheltered Thicket|Amonkhet|248|R||Land - Mountain Forest|||({T}: Add {R} or {G}.)$Sheltered Thicket enters the battlefield tapped.$Cycling {2}|
Sunscorched Desert|Amonkhet|249|C||Land - Desert|||When Sunscorced Desert enters the battlefield, it deals 1 damage to target player.${T}: Add {C}.|
@@ -31253,7 +31253,7 @@ Djinn of Infinite Deceits|Commander Anthology|38|R|{4}{U}{U}|Creature - Djinn|2|
Dungeon Geists|Commander Anthology|39|R|{2}{U}{U}|Creature - Spirit|3|3|Flying$When Dungeon Geists enters the battlefield, tap target creature an opponent controls. That creature doesn't untap during its controller's untap step for as long as you control Dungeon Geists.|
Hada Spy Patrol|Commander Anthology|40|U|{1}{U}|Creature - Human Rogue|1|1|Level up {2}{U} ({2}{U}: Put a level counter on this. Level up only as a sorcery.)$LEVEL 1-2$2/2$Hada Spy Patrol is unblockable.$LEVEL 3+$3/3$Shroud$Hada Spy Patrol is unblockable.|
Lu Xun, Scholar General|Commander Anthology|41|R|{2}{U}{U}|Legendary Creature - Human Soldier|1|3|Horsemanship (This creature can't be blocked except by creatures with horsemanship.)$Whenever Lu Xun, Scholar General deals damage to an opponent, you may draw a card.|
-Thornwind Faeries|Commander Anthology|42|C|{1}{U}{U}|Creature - Faerie|1|1|Flying${tap}: Thornwind Faeries deals 1 damage to target creature or player.|
+Thornwind Faeries|Commander Anthology|42|C|{1}{U}{U}|Creature - Faerie|1|1|Flying${tap}: Thornwind Faeries deals 1 damage to any target.|
Wash Out|Commander Anthology|43|U|{3}{U}|Sorcery|||Return all permanents of the color of your choice to their owners' hands.|
Wonder|Commander Anthology|44|U|{3}{U}|Creature - Incarnation|2|2|Flying$As long as Wonder is in your graveyard and you control an Island, creatures you control have flying.|
Altar's Reap|Commander Anthology|45|C|{1}{B}|Instant|||As an additional cost to cast Altar's Reap, sacrifice a creature.$Draw two cards.|
@@ -31290,7 +31290,7 @@ Akroma, Angel of Fury|Commander Anthology|75|R|{5}{R}{R}{R}|Legendary Creature -
Anger|Commander Anthology|76|U|{3}{R}|Creature - Incarnation|2|2|Haste$As long as Anger is in your graveyard and you control a Mountain, creatures you control have haste.|
Avatar of Slaughter|Commander Anthology|77|R|{6}{R}{R}|Creature - Avatar|8|8|All creatures have double strike and attack each turn if able.|
Cleansing Beam|Commander Anthology|78|U|{4}{R}|Instant|||Radiance - Cleansing Beam deals 2 damage to target creature and each other creature that shares a color with it.|
-Comet Storm|Commander Anthology|79|M|{X}{R}{R}|Instant|||Multikicker {1} (You may pay an additional {1} any number of times as you cast this spell.)$Choose target creature or player, then choose another target creature or player for each time Comet Storm was kicked. Comet Storm deals X damage to each of them.|
+Comet Storm|Commander Anthology|79|M|{X}{R}{R}|Instant|||Multikicker {1} (You may pay an additional {1} any number of times as you cast this spell.)$Choose any target, then choose another any target for each time Comet Storm was kicked. Comet Storm deals X damage to each of them.|
Death by Dragons|Commander Anthology|80|U|{4}{R}{R}|Sorcery|||Each player other than target player puts a 5/5 red Dragon creature token with flying onto the battlefield.|
Dragon Whelp|Commander Anthology|81|U|{2}{R}{R}|Creature - Dragon|2|3|Flying${R}: Dragon Whelp gets +1/+0 until end of turn. If this ability has been activated four or more times this turn, sacrifice Dragon Whelp at the beginning of the next end step.|
Earthquake|Commander Anthology|82|R|{X}{R}|Sorcery|||Earthquake deals X damage to each creature without flying and each player.|
@@ -31424,9 +31424,9 @@ Azorius Keyrune|Commander Anthology|209|U|{3}|Artifact|||{tap}: Add {W} or {U}.$
Basalt Monolith|Commander Anthology|210|U|{3}|Artifact|||Basalt Monolith doesn't untap during your untap step.${tap}: Add {C}{C}{C}.${3}: Untap Basalt Monolith.|
Bonehoard|Commander Anthology|211|R|{4}|Artifact - Equipment|||Living Weapon (When this Equipment enters the battlefield, create a 0/0 black Germ creature token, then attack this to it.)$Equipped creatures gets +X/+X, where X is the number of creatures cards in all graveyards.$Equip {2}|
Boros Signet|Commander Anthology|212|C|{2}|Artifact|||{1}, {T}: Add {R}{W}.|
-Commander's Sphere|Commander Anthology|213|C|{3}|Artifact|||{T}: Add to your mana pool one mana of any color in your commander's color identity.$Sacrifice Commander's Sphere: Draw a card.|
+Commander's Sphere|Commander Anthology|213|C|{3}|Artifact|||{T}: Add one mana of any color in your commander's color identity.$Sacrifice Commander's Sphere: Draw a card.|
Conjurer's Closet|Commander Anthology|214|R|{5}|Artifact|||At the beginning of your end step, you may exile target creature you control, then return that card to the battlefield under your control.|
-Darksteel Ingot|Commander Anthology|215|U|{3}|Artifact|||Indestructible${T}: Add one mana of any color to your mana pool.|
+Darksteel Ingot|Commander Anthology|215|U|{3}|Artifact|||Indestructible${T}: Add one mana of any color.|
Eldrazi Monument|Commander Anthology|216|M|{5}|Artifact|||Creatures you control get +1/+1 and have flying and indestructible.$At the beginning of your upkeep, sacrifice a creature. If you can't, sacrifice Eldrazi Monument.|
Emerald Medallion|Commander Anthology|217|R|{2}|Artifact|||Green spells you cast cost {1} less to cast.|
Golgari Signet|Commander Anthology|218|C|{2}|Artifact|||{1}, {T}: Add {B}{G}.|
@@ -31456,7 +31456,7 @@ Bant Panorama|Commander Anthology|241|C||Land|||{tap}: Add {C}.${1}, {tap}, Sacr
Barren Moor|Commander Anthology|242|C||Land|||Barren Moor enters the battlefield tapped.${tap}: Add {B}.$Cycling {B} ({B}, Discard this card: Draw a card.)|
Bojuka Bog|Commander Anthology|243|C||Land|||Bojuka Bog enters the battlefield tapped.$When Bojuka Bog enters the battlefield, exile all cards from target player's graveyard.${tap}: Add {B}.|
Boros Garrison|Commander Anthology|244|C||Land|||Boros Garrison enters the battlefield tapped.$When Boros Garrison enters the battlefield, return a land you control to its owner's hand.${T}: Add {R}{W}.|
-Command Tower|Commander Anthology|245|C||Land|||{T}: Add to your mana pool one mana of any color in your commander's color identity.|
+Command Tower|Commander Anthology|245|C||Land|||{T}: Add one mana of any color in your commander's color identity.|
Crystal Vein|Commander Anthology|246|U||Land|||{T}: Add {C}.${T}, Sacrifice Crystal Vein: Add {C}{C}.|
Evolving Wilds|Commander Anthology|247|C||Land|||{T}, Sacrifice Evolving Wilds: Search your library for a basic land card and put it onto the battlefield tapped. Then shuffle your library.|
Faerie Conclave|Commander Anthology|248|U||Land|||Faerie Conclave enters the battlefield tapped.${tap}: Add {U}.${1}{U}: Faerie Conclave becomes a 2/1 blue Faerie creature with flying until end of turn. It's still a land. (It can't be blocked except by creatures with flying or reach.)|
@@ -31473,12 +31473,12 @@ Jungle Basin|Commander Anthology|258|U||Land|||Jungle Basin enters the battlefie
Jungle Hollow|Commander Anthology|259|C||Land|||Jungle Hollow enters the battlefield tapped.$When Jungle Hollow enters the battlefield, you gain 1 life.${T}: Add {B} or {G}.|
Molten Slagheap|Commander Anthology|260|U||Land|||{tap}: Add {C}.${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}.|
Myriad Landscape|Commander Anthology|261|U||Land|||Myriad Landscape enters the battlefield tapped.${T}: Add {C}.${2}, {T}, Sacrifice Myriad Landscape: Search your library for up to two basic land cards that share a land type, put them onto the battlefield tapped, then shuffle your library.|
-Opal Palace|Commander Anthology|262|C||Land|||{T}: Add {C}.${1}, {T}: Add to your mana pool one mana of any color in your commander's color identity. If you spend this mana to cast your commander, it enters the battlefield with a number of additional +1/+1 counters on it equal to the number of times it's been cast from the command zone this game.|
+Opal Palace|Commander Anthology|262|C||Land|||{T}: Add {C}.${1}, {T}: Add one mana of any color in your commander's color identity. If you spend this mana to cast your commander, it enters the battlefield with a number of additional +1/+1 counters on it equal to the number of times it's been cast from the command zone this game.|
Oran-Rief, the Vastwood|Commander Anthology|263|R||Land|||Oran-Rief, the Vastwood enters the battlefield tapped.${tap}: Add {G}.${tap}: Put a +1/+1 counter on each green creature that entered the battlefield this turn.|
Orzhov Basilica|Commander Anthology|264|C||Land|||Orzhov Basilica enters the battlefield tapped.$When Orzhov Basilica enters the battlefield, return a land you control to its owner's hand.${T}: Add {W}{B}.|
Polluted Mire|Commander Anthology|265|C||Land|||Polluted Mire enters the battlefield tapped.${tap}: Add {B}.$Cycling {2} ({2}, Discard this card: Draw a card.)|
Rakdos Carnarium|Commander Anthology|266|C||Land|||Rakdos Carnarium enters the battlefield tapped.$When Rakdos Carnarium enters the battlefield, return a land you control to its owner's hand.${T}: Add {B}{R}.|
-Rupture Spire|Commander Anthology|267|C||Land|||Rupture Spire enters the battlefield tapped.$When Rupture Spire enters the battlefield, sacrifice it unless you pay {1}.${T}: Add one mana of any color to your mana pool.|
+Rupture Spire|Commander Anthology|267|C||Land|||Rupture Spire enters the battlefield tapped.$When Rupture Spire enters the battlefield, sacrifice it unless you pay {1}.${T}: Add one mana of any color.|
Saltcrusted Steppe|Commander Anthology|268|U||Land|||{tap}: Add {C}.${1}, {tap}: Put a storage counter on Saltcrusted Steppe.${1}, Remove X storage counters from Saltcrusted Steppe: Add X mana in any combination of {G} and/or {W}.|
Seaside Citadel|Commander Anthology|269|U||Land|||Seaside Citadel enters the battlefield tapped.${T}: Add {G}, {W}, or {U}.|
Secluded Steppe|Commander Anthology|270|C||Land|||Secluded Steppe enters the battlefield tapped.${tap}: Add {W}.$Cycling {W} ({W}, Discard this card: Draw a card.)|
@@ -31491,10 +31491,10 @@ Tainted Wood|Commander Anthology|276|U||Land|||{tap}: Add {C}.${tap}: Add {B} or
Temple of the False God|Commander Anthology|277|U||Land|||{T}: Add {C}{C}. Activate this ability only if you control five or more lands.|
Terramorphic Expanse|Commander Anthology|278|C||Land|||{T}, Sacrifice Terramorphic Expanse: Search your library for a basic land card and put it onto the battlefield tapped. Then shuffle your library.|
Tranquil Thicket|Commander Anthology|279|C||Land|||Tranquil Thicket enters the battlefield tapped.${tap}: Add {G}.$Cycling {G} ({G}, Discard this card: Draw a card.)|
-Transguild Promenade|Commander Anthology|280|C||Land|||Transguild Promenade enters the battlefield tapped.$When Transguild Promendade enters the battlefield, sacrifice it unless you pay {1}.${T}: Add one mana of any color to your mana pool.|
-Vivid Grove|Commander Anthology|281|U||Land|||Vivid Grove enters the battlefield tapped with two charge counters on it.${tap}: Add {G}.${tap}, Remove a charge counter from Vivid Grove: Add one mana of any color to your mana pool.|
-Vivid Marsh|Commander Anthology|282|U||Land|||Vivid Marsh enters the battlefield tapped with two charge counters on it.${tap}: Add {B}.${tap}, Remove a charge counter from Vivid Marsh: Add one mana of any color to your mana pool.|
-Vivid Meadow|Commander Anthology|283|U||Land|||Vivid Meadow enters the battlefield tapped with two charge counters on it.${tap}: Add {W}.${tap}, Remove a charge counter from Vivid Meadow: Add one mana of any color to your mana pool.|
+Transguild Promenade|Commander Anthology|280|C||Land|||Transguild Promenade enters the battlefield tapped.$When Transguild Promendade enters the battlefield, sacrifice it unless you pay {1}.${T}: Add one mana of any color.|
+Vivid Grove|Commander Anthology|281|U||Land|||Vivid Grove enters the battlefield tapped with two charge counters on it.${tap}: Add {G}.${tap}, Remove a charge counter from Vivid Grove: Add one mana of any color.|
+Vivid Marsh|Commander Anthology|282|U||Land|||Vivid Marsh enters the battlefield tapped with two charge counters on it.${tap}: Add {B}.${tap}, Remove a charge counter from Vivid Marsh: Add one mana of any color.|
+Vivid Meadow|Commander Anthology|283|U||Land|||Vivid Meadow enters the battlefield tapped with two charge counters on it.${tap}: Add {W}.${tap}, Remove a charge counter from Vivid Meadow: Add one mana of any color.|
Zoetic Cavern|Commander Anthology|284|U||Land|||{tap}: Add {C}.$Morph {2} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)|
Plains|Commander Anthology|285|L||Basic Land - Plains|||{T}: Add {W}.|
Plains|Commander Anthology|286|L||Basic Land - Plains|||{T}: Add {W}.|
@@ -31570,22 +31570,22 @@ Okiba-Gang Shinobi|Planechase Anthology|35|C|{3}{B}{B}|Creature - Rat Ninja|3|2|
Skullsnatcher|Planechase Anthology|36|C|{1}{B}|Creature - Rat Ninja|2|1|Ninjutsu {B}$Whenever Skullsnatcher deals combat damage to a player, exile up to two target cards from that player's graveyard.|
Throat Slitter|Planechase Anthology|37|U|{4}{B}|Creature - Rat Ninja|2|2|Ninjutsu {2}{B}$Whenever Throat Slitter deals combat damage to a player, destroy target nonblack creature that player controls.|
Tormented Soul|Planechase Anthology|38|C|{B}|Creature - Spirit|1|1|Tormented Soul can't block and can't be blocked.|
-Arc Trail|Planechase Anthology|39|U|{1}{R}|Sorcery|||Arc Trail deals 2 damage to target creature or player and 1 damage to another target creature or player.|
+Arc Trail|Planechase Anthology|39|U|{1}{R}|Sorcery|||Arc Trail deals 2 damage to any target and 1 damage to another any target.|
Beetleback Chief|Planechase Anthology|40|U|{2}{R}{R}|Creature - Goblin Warrior|2|2|When Beetleback Chief enters the battlefield, create two 1/1 red Goblin creature tokens.|
-Erratic Explosion|Planechase Anthology|41|C|{2}{R}|Sorcery|||Choose target creature or player. Reveal cards from the top of your library until you reveal a nonland card. Erratic Explosion deals damage equal to that card's converted mana cost to that creature or player. Put the revealed cards on the bottom of your library in any order.|
+Erratic Explosion|Planechase Anthology|41|C|{2}{R}|Sorcery|||Choose any target. Reveal cards from the top of your library until you reveal a nonland card. Erratic Explosion deals damage equal to that card's converted mana cost to that creature or player. Put the revealed cards on the bottom of your library in any order.|
Fiery Conclusion|Planechase Anthology|42|C|{1}{R}|Instant|||As an additional cost to cast Fiery Conclusion, sacrifice a creature.$Fiery Conclusion deals 5 damage to target creature.|
Fiery Fall|Planechase Anthology|43|C|{5}{R}|Instant|||Fiery Fall deals 5 damage to target creature.$Basic landcycling {1}{R}|
-Fling|Planechase Anthology|44|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.|
+Fling|Planechase Anthology|44|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 any target.|
Hellion Eruption|Planechase Anthology|45|R|{5}{R}|Sorcery|||Sacrifice all creatures you control, then create that many 4/4 red Hellion creature tokens.|
Hissing Iguanar|Planechase Anthology|46|C|{2}{R}|Creature - Lizard|3|1|Whenever another creature dies, you may have Hissing Iguanar deal 1 damage to target player.|
Mark of Mutiny|Planechase Anthology|47|U|{2}{R}|Sorcery|||Gain control of target creature until end of turn. Put a +1/+1 counter on it and untap it. That creature gains haste until end of turn.|
Mass Mutiny|Planechase Anthology|48|R|{3}{R}{R}|Sorcery|||For each opponent, gain control of up to one target creature that player controls until end of turn. Untap those creatures. They gain haste until end of turn.|
-Mudbutton Torchrunner|Planechase Anthology|49|C|{2}{R}|Creature - Goblin Warrior|1|1|When Mudbutton Torchrunner dies, it deals 3 damage to target creature or player.|
-Preyseizer Dragon|Planechase Anthology|50|R|{4}{R}{R}|Creature - Dragon|4|4|Flying$Devour 2$Whenever Preyseizer Dragon attacks, it deals damage to target creature or player equal to the number of +1/+1 counters on Preyseizer Dragon.|
+Mudbutton Torchrunner|Planechase Anthology|49|C|{2}{R}|Creature - Goblin Warrior|1|1|When Mudbutton Torchrunner dies, it deals 3 damage to any target.|
+Preyseizer Dragon|Planechase Anthology|50|R|{4}{R}{R}|Creature - Dragon|4|4|Flying$Devour 2$Whenever Preyseizer Dragon attacks, it deals damage to any target equal to the number of +1/+1 counters on Preyseizer Dragon.|
Rivals' Duel|Planechase Anthology|51|U|{3}{R}|Sorcery|||Choose two target creatures that share no creature types. Those creatures fight each other.|
Thorn-Thrash Viashino|Planechase Anthology|52|C|{3}{R}|Creature - Viashino Warrior|2|2|Devour 2${G}: Thorn-Thrash Viashino gains trample until end of turn.|
Thunder-Thrash Elder|Planechase Anthology|53|U|{2}{R}|Creature - Viashino Warrior|1|1|Devour 3|
-Warstorm Surge|Planechase Anthology|54|R|{5}{R}|Enchantment|||Whenever a creature enters the battlefield under your control, it deals damage equal to its power to target creature or player.|
+Warstorm Surge|Planechase Anthology|54|R|{5}{R}|Enchantment|||Whenever a creature enters the battlefield under your control, it deals damage equal to its power to any target.|
Aura Gnarlid|Planechase Anthology|55|C|{2}{G}|Creature - Beast|2|2|Creatures with power less than Aura Gnarlid's power can't block it.$Aura Gnarlid gets +1/+1 for each Aura on the battlefield.|
Awakening Zone|Planechase Anthology|56|R|{2}{G}|Enchantment|||At beginning of your upkeep, you may create a 0/1 colorless Eldrazi Spawn creature token with "Sacrifice this creature: Add {C}."|
Beast Within|Planechase Anthology|57|U|{2}{G}|Instant|||Destroy target permanent. Its controller creates a 3/3 green Beast creature token.|
@@ -31648,21 +31648,21 @@ Sai of the Shinobi|Planechase Anthology|113|U|{1}|Artifact - Equipment|||Equippe
Thran Golem|Planechase Anthology|114|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.|
Whispersilk Cloak|Planechase Anthology|115|U|{3}|Artifact - Equipment|||Equipped creature can't be blocked and has shroud.$Equip {2}|
Dimir Aqueduct|Planechase Anthology|116|C||Land|||Dimir Aqueduct enters the battlefield tapped.$When Dimir Aqueduct enters the battlefield, return a land you control to its owner's hand.${T}: Add {U}{B}.|
-Exotic Orchard|Planechase Anthology|117|R||Land|||{T}: Add to your mana pool one mana of any color that a land an opponent controls could product.|
+Exotic Orchard|Planechase Anthology|117|R||Land|||{T}: Add one mana of any color that a land an opponent controls could product.|
Graypelt Refuge|Planechase Anthology|118|U||Land|||Graypelt Refuge enters the battlefield tapped.$When Graypelt Refuge enters the battlefield, you gain 1 life.${T}: Add {G} or {W}.|
Gruul Turf|Planechase Anthology|119|C||Land|||Gruul Turf enters the battlefield tapped.$When Gruul Turf enters the battlefield, return a land you control to its owner's hand.${T}: Add {R}{G}.|
Jwar Isle Refuge|Planechase Anthology|120|U||Land|||Jwar Isle Refuge enters the battlefield tapped.$When Jwar Isle Refuge enters the battlefield, you gain 1 life.${T}: Add {U} or {B}.|
Kazandu Refuge|Planechase Anthology|121|U||Land|||Kazandu Refuge enters the battlefield tapped.$When Kazandu Refuge enters the battlefield, you gain 1 life.${T}: Add {R} or {G}.|
Khalni Garden|Planechase Anthology|122|C||Land|||Khalni Garden enters the battlefield tapped.$When Khalni Garden enters the battlefield, create a 0/1 green Plant creature token.${T}: Add {G}.|
Krosan Verge|Planechase Anthology|123|U||Land|||Krosan Verge enters the battlefield tapped.${T}: Add {C}.${2}, {T}, Sacrifice Krosan Verge: Search your library for a Forest card and a Plains card and put them onto the battlefield tapped. Then shuffle your library.|
-Rupture Spire|Planechase Anthology|124|C||Land|||Rupture Spire enters the battlefield tapped.$When Rupture Spire enters the battlefield, sacrifice it unless you pay {1}.${T}: Add one mana of any color to your mana pool.|
+Rupture Spire|Planechase Anthology|124|C||Land|||Rupture Spire enters the battlefield tapped.$When Rupture Spire enters the battlefield, sacrifice it unless you pay {1}.${T}: Add one mana of any color.|
Selesnya Sanctuary|Planechase Anthology|125|C||Land|||Selesnya Sanctuary enters the battlefield tapped.$When Selesnya Sanctuary enters the battlefield, return a land you control to its owner's hand.${T}: Add {G}{W}.|
-Shimmering Grotto|Planechase Anthology|126|C||Land|||{T}: Add {C}.${1}, {T}: Add one mana of any color to your mana pool.|
+Shimmering Grotto|Planechase Anthology|126|C||Land|||{T}: Add {C}.${1}, {T}: Add one mana of any color.|
Skarrg, the Rage Pits|Planechase Anthology|127|U||Land|||{T}: Add {C}.${R}{G}, {T}: Target creature gets +1/+1 and gains trample until end of turn.|
Tainted Isle|Planechase Anthology|128|U||Land|||{T}: Add {C}.${T}: Add {U} or {B}. Activate this ability only if you control a Swamp.|
Terramorphic Expanse|Planechase Anthology|129|C||Land|||{T}, Sacrifice Terramophic Expanse: Search your library for a basic land card and put it onto the battlefield tapped. Then shuffle your library.|
Vitu-Ghazi, the City-Tree|Planechase Anthology|130|U||Land|||{T}: Add {C}.${2}{G}{W}, {T}: Create a 1/1 green Saproling creature token.|
-Vivid Creek|Planechase Anthology|131|U||Land|||Vivid Creek enters the battlefield tapped with two charge counters on it.${T}: Add {U}.${T}, Remove a charge counter from Vivid Creek: Add one mana of any color to your mana pool.|
+Vivid Creek|Planechase Anthology|131|U||Land|||Vivid Creek enters the battlefield tapped with two charge counters on it.${T}: Add {U}.${T}, Remove a charge counter from Vivid Creek: Add one mana of any color.|
Plains|Planechase Anthology|132|L||Basic Land - Plains||||
Plains|Planechase Anthology|133|L||Basic Land - Plains||||
Plains|Planechase Anthology|134|L||Basic Land - Plains||||
@@ -31711,7 +31711,7 @@ Patron of the Vein|Commander 2017|20|R|{4}{B}{B}|Creature - Vampire Shaman|4|4|F
Vindictive Lich|Commander 2017|21|R|{3}{B}|Creature - Zombie Wizard|4|1|When Vindictive Lich dies, choose one or more. Each mode must target a different player.$*Target opponent sacrifices a creature.$*Target opponent discards two cards.$*Target opponent loses 5 life.|
Bloodsworn Steward|Commander 2017|22|R|{2}{R}{R}|Creature - Vampire Knight|4|4|Flying$Commander creatures you control get +2/+2 and have haste.|
Crimson Honor Guard|Commander 2017|23|R|{3}{R}{R}|Creature - Vampire Knight|4|5|Trample$At the beginning of each player's end step, Crimson Honor Guard deals 4 damage to that player unless he or she controls a commander.|
-Curse of Opulence|Commander 2017|24|U|{R}|Enchantment - Aura Curse|||Enchant player$Whenever enchanted player is attacked, create a colorless artifact token named Gold. It has "sacrifice this artifact: Add one mana of any color to your mana pool." Each opponent attacking that player does the same.|
+Curse of Opulence|Commander 2017|24|U|{R}|Enchantment - Aura Curse|||Enchant player$Whenever enchanted player is attacked, create a colorless artifact token named Gold. It has "sacrifice this artifact: Add one mana of any color." Each opponent attacking that player does the same.|
Disrupt Decorum|Commander 2017|25|R|{2}{R}{R}|Sorcery|||Goad all creatures you don't control.$(Until your next turn, those creatures attack each combat if able and attack a player other than you if able.)|
Izzet Chemister|Commander 2017|26|R|{2}{R}|Creature - Goblin Chemister|1|3|Haste$R, T: Exile target instant or sorcery card from your graveyard.$1R, T: Sacrifice Izzet Chemister: Cast any number of cards exiled with Izzet Chemister without paying their mana costs.|
Kindred Charge|Commander 2017|27|R|{4}{R}{R}|Sorcery|||Choose a creature type. For each creature you control of the chosen type, create a token that's a copy of that creature. Those tokens gain haste. Exile them at the beginning of the next end step.|
@@ -31743,7 +31743,7 @@ Heirloom Blade|Commander 2017|52|U|{3}|Artifact - Equipment|||Equipped creature
Herald's Horn|Commander 2017|53|U|{3}|Artifact|||When Herald's Horn enters the battlefield, choose a creature type.$Creature spells you cast of the chosen type cost 1 less.$At the beginning of your upkeep, look at the top card of your library. If it's a creature card of the chosen type, you may reveal it and put it into your hand.|
Mirror of the Forebears|Commander 2017|54|U|{2}|Artifact|||As Mirror of the Forebears enters the battlefield, choose a creature type.$1: Until end of turn, Mirror of the Forebears becomes a copy of target creature you control of the chosen type, except it's an artifact in addition to its other types.|
Ramos, Dragon Engine|Commander 2017|55|M|{6}|Legendary Artifact Creature - Dragon|4|4|Flying$Whenever you cast a spell, put a +1/+1 counter on Ramos, Dragon Engine for each of that spell's colors. Remove five +1/+1 counters from Ramos: Add {W}{W}{U}{U}{B}{B}{R}{R}{G}{G}. Activate this ability only once each turn.|
-Path of Ancestry|Commander 2017|56|C||Land|||Path of Ancestry enters the battlefield tapped.$T: Add to your mana pool one mana of any color in your commander's color identity. When that mana is spent to cast a creature spell that shares a creature type with your commander, scry 1.|
+Path of Ancestry|Commander 2017|56|C||Land|||Path of Ancestry enters the battlefield tapped.$T: Add one mana of any color in your commander's color identity. When that mana is spent to cast a creature spell that shares a creature type with your commander, scry 1.|
Blind Obedience|Commander 2017|57|R|{1}{W}|Enchantment|||Extort$Artifacts and creatures your opponents control enter the battlefield tapped.|
Condemn|Commander 2017|58|U|{W}|Instant|||Put target attacking creature on the bottom of its owner's library. Its controller gains life equal to its toughness.|
Divine Reckoning|Commander 2017|59|R|{2}{W}{W}|Sorcery|||Each player chooses a creature he or she controls. Destroy the rest.$Flashback {5}{W}{W}|
@@ -31819,17 +31819,17 @@ Underworld Connections|Commander 2017|128|R|{1}{B}{B}|Enchantment - Aura|||Encha
Vampire Nighthawk|Commander 2017|129|U|{1}{B}{B}|Creature - Vampire Shaman|2|3|Flying, deathtouch, lifelink|
Vein Drinker|Commander 2017|130|R|{4}{B}{B}|Creature - Vampire|4|4|Flying${R}, {T}: Vein Drinker deals damage equal to its power to target creature. That creature deals damage equal to its power to Vein Drinker.$Whenever a creature dealt damage by Vein Drinker this turn dies, put a +1/+1 counter on Vein Drinker.|
Chaos Warp|Commander 2017|131|R|{2}{R}|Instant|||The owner of target permanent shuffles it into his or her library, then reveals the top card of his or her library. If it's a permanent card, he or she puts it onto the battlefield.|
-Comet Storm|Commander 2017|132|M|{X}{R}{R}|Instant|||Multikicker {1}$Choose target creature or player, then choose another target creature or player for each time Comet Storm was kicked. Comet Storm deals X damage to each of them.|
+Comet Storm|Commander 2017|132|M|{X}{R}{R}|Instant|||Multikicker {1}$Choose any target, then choose another any target for each time Comet Storm was kicked. Comet Storm deals X damage to each of them.|
Crucible of Fire|Commander 2017|133|R|{3}{R}|Enchantment|||Dragon creatures you control get +3/+3.|
-Dragon Tempest|Commander 2017|134|R|{1}{R}|Enchantment|||Whenever a creature with flying enters the battlefield under your control, it gains haste until end of turn.$Whenever a Dragon enters the battlefield under your control, it deals X damage to target creature or player, where X is the number of Dragons you control.|
+Dragon Tempest|Commander 2017|134|R|{1}{R}|Enchantment|||Whenever a creature with flying enters the battlefield under your control, it gains haste until end of turn.$Whenever a Dragon enters the battlefield under your control, it deals X damage to any target, where X is the number of Dragons you control.|
Dragonlord's Servant|Commander 2017|135|U|{1}{R}|Creature - Goblin Shaman|1|3|Dragon spells you cast cost {1} less to cast.|
Dragonspeaker Shaman|Commander 2017|136|U|{1}{R}{R}|Creature - Human Barbarian Shaman|2|2|Dragon spells you cast cost {2} less to cast.|
Earthquake|Commander 2017|137|R|{X}{R}|Sorcery|||Earthquake deals X damage to each creature without flying and each player.|
Hellkite Charger|Commander 2017|138|R|{4}{R}{R}|Creature - Dragon|5|5|Flying, haste$Whenever Hellkite Charger attacks, you may pay {5}{R}{R}. If you do, untap all attacking creatures and after this phase, there is an additional combat phase.|
-Outpost Siege|Commander 2017|139|R|{3}{R}|Enchantment|||As Outpost Siege enters the battlefield, choose Khans or Dragons.$Khans — At the beginning of your upkeep, exile the top card of your library. Until end of turn, you may play that card.$Dragons — Whenever a creature you control leaves the battlefield, Outpost Siege deals 1 damage to target creature or player.|
+Outpost Siege|Commander 2017|139|R|{3}{R}|Enchantment|||As Outpost Siege enters the battlefield, choose Khans or Dragons.$Khans — At the beginning of your upkeep, exile the top card of your library. Until end of turn, you may play that card.$Dragons — Whenever a creature you control leaves the battlefield, Outpost Siege deals 1 damage to any target.|
Rakish Heir|Commander 2017|140|U|{2}{R}|Creature - Vampire|2|2|Whenever a Vampire you control deals combat damage to player, put a +1/+1 counter on it.|
Ryusei, the Falling Star|Commander 2017|141|M|{5}{R}|Legendary Creature - Dragon Spirit|5|5|Flying$When Ryusei, the Falling Star dies, it deals 5 damage to each creature without flying.|
-Scourge of Valkas|Commander 2017|142|M|{2}{R}{R}{R}|Creature - Dragon|4|4|Flying$Whenever Scourge of Valkas or another Dragon enters the battlefield under your control, it deals X damage to target creature or player, where X is the number of Dragons you control.${R}: Scourge of Valkas gets +1/+0 until end of turn.|
+Scourge of Valkas|Commander 2017|142|M|{2}{R}{R}{R}|Creature - Dragon|4|4|Flying$Whenever Scourge of Valkas or another Dragon enters the battlefield under your control, it deals X damage to any target, where X is the number of Dragons you control.${R}: Scourge of Valkas gets +1/+0 until end of turn.|
Tyrant's Familiar|Commander 2017|143|R|{5}{R}{R}|Creature - Dragon|5|5|Flying, haste$Lieutenant — As long as you control your commander, Tyrant's Familiar gets +2/+2 and has "Whenever Tyrant's Familiar attacks, it deals 7 damage to target creature defending player controls."|
Utvara Hellkite|Commander 2017|144|M|{6}{R}{R}|Creature - Dragon|6|6|Flying$Whenever a Dragon you control attacks, create a 6/6 red Dragon creature token with flying.|
Abundance|Commander 2017|145|R|{2}{G}{G}|Enchantment|||If you would draw a card, you may instead choose land or nonland and reveal cards from the top of your library until you reveal a card of the chosen kind. Put that card into your hand and put all other cards revealed this way on the bottom of your library in any order.|
@@ -31847,7 +31847,7 @@ Rain of Thorns|Commander 2017|156|U|{4}{G}{G}|Sorcery|||Choose one or more &mdas
Relic Crush|Commander 2017|157|U|{4}{G}|Instant|||Destroy artifact or enchantment and up to one other target artifact or enchantment.|
Soul's Majesty|Commander 2017|158|R|{4}{G}|Sorcery|||Draw cards equal to the power of target creature you control.|
Temur Sabertooth|Commander 2017|159|U|{2}{G}{G}|Creature - Cat|4|3|{1}{G}: You may return another creature you control to its owner's hand. If you do, Temur Sabertooth gains indestructible until end of turn.|
-Zendikar Resurgent|Commander 2017|160|R|{5}{G}{G}|Enchantment|||Whenever you tap a land for mana, add one mana to your mana pool of any type that land produced.$Whenever you cast a creature spell, draw a card.|
+Zendikar Resurgent|Commander 2017|160|R|{5}{G}{G}|Enchantment|||Whenever you tap a land for mana, add one mana of any type that land produced.$Whenever you cast a creature spell, draw a card.|
Atarka, World Render|Commander 2017|161|R|{5}{R}{G}|Legendary Creature - Dragon|6|4|Flying, trample$Whenever a Dragon you control attacks, it gains double strike until end of turn.|
Behemoth Sledge|Commander 2017|162|U|{1}{G}{W}|Artifact - Equipment|||Equipped creature gets +2/+2 and has lifelink and trample.$Equip {3}|
Bladewing the Risen|Commander 2017|163|R|{3}{B}{B}{R}{R}|Legendary Creature - Zombie Dragon|4|4|Flying$When Bladewing the Risen enters the battlefield, you may return target Dragon permanent card from your graveyard to the battlefield.${B}{R}: Dragon creatures get +1/+1 until end of turn.|
@@ -31868,11 +31868,11 @@ Marchesa, the Black Rose|Commander 2017|177|M|{1}{U}{B}{R}|Legendary Creature -
Memory Plunder|Commander 2017|178|R|{UB}{UB}{UB}{UB}|Instant|||You may cast target instant or sorcery card from an opponent's graveyard without paying its mana cost.|
Merciless Eviction|Commander 2017|179|R|{4}{W}{B}|Sorcery|||Choose one — Exile all artifacts. Exile all creatures. Exile all enchantments. Exile all planeswalkers.|
Mercurial Chemister|Commander 2017|180|R|{3}{U}{R}|Creature - Human Wizard|2|3|{U}, {T}: Draw two cards.${R}, {T}, Discard a card: Mercurial Chemister deals damage to target creature equal to the discarded card's converted mana cost.|
-Mirari's Wake|Commander 2017|181|M|{3}{G}{W}|Enchantment|||Creatures you control get +1/+1.$Whenever you tap a land for mana, add one amana to your mana pool of any type that land produced.|
+Mirari's Wake|Commander 2017|181|M|{3}{G}{W}|Enchantment|||Creatures you control get +1/+1.$Whenever you tap a land for mana, add one amana of any type that land produced.|
Mortify|Commander 2017|182|U|{1}{W}{B}|Instant|||Destroy target creature or enchantment.|
Nin, the Pain Artist|Commander 2017|183|R|{U}{R}|Legendary Creature - Vedalken Wizard|1|1|{X}{U}{R}, {T}: Nin, the Pain Artist deals X damage to target creature. That creature's controller draws X cards.|
-Niv-Mizzet, Dracogenius|Commander 2017|184|R|{2}{U}{U}{R}{R}|Legendary Creature - Dragon Wizard|5|5|Flying$Whenever Niv-Mizzet, Dracogenius deals damage to a player, you may draw a card.${U}{R}: Niv-Mizzet, Dracogenius deals 1 damage to target creature or player.|
-Niv-Mizzet, the Firemind|Commander 2017|185|R|{2}{U}{U}{R}{R}|Legendary Creature - Dragon Wizard|4|4|Flying$Whenever you draw a card, Niv-Mizzet, the Firemind deals 1 damage to target creature or player.${T}: Draw a card.|
+Niv-Mizzet, Dracogenius|Commander 2017|184|R|{2}{U}{U}{R}{R}|Legendary Creature - Dragon Wizard|5|5|Flying$Whenever Niv-Mizzet, Dracogenius deals damage to a player, you may draw a card.${U}{R}: Niv-Mizzet, Dracogenius deals 1 damage to any target.|
+Niv-Mizzet, the Firemind|Commander 2017|185|R|{2}{U}{U}{R}{R}|Legendary Creature - Dragon Wizard|4|4|Flying$Whenever you draw a card, Niv-Mizzet, the Firemind deals 1 damage to any target.${T}: Draw a card.|
Nivix Guildmage|Commander 2017|186|U|{U}{R}|Creature - Human Wizard|2|2|{1}{U}{R}: Draw a card, then discard a card.${2}{U}{R}: Copy target instant or sorcery spell you control. You may choose new targets for the copy.|
Ojutai, Soul of Winter|Commander 2017|187|R|{5}{W}{U}|Legendary Creature - Dragon|5|6|Flying, vigilance$Whenever a Dragon you control attacks, tap target nonland permanent an opponent controls. That permanent doesn't untap during its controller's next untap step.|
Phantom Nishoba|Commander 2017|188|R|{5}{G}{W}|Creature - Cat Beast Spirit|0|0|Trample$Phantom Nishoba enters the battlefield with seven +1/+1 counters on it.$Whenever Phantom Nishoba deals damage, you gain that much life.$If damage would be dealt to Phantom Nishoba, prevent that damage. Remove a +1/+1 counter from Phantom Nishoba.|
@@ -31893,11 +31893,11 @@ Argentum Armor|Commander 2017|202|R|{6}|Artifact - Equipment|||Equipped creature
Armillary Sphere|Commander 2017|203|C|{2}|Artifact|||{2}, 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.|
Blade of the Bloodchief|Commander 2017|204|R|{1}|Artifact - Equipment|||Whenever a creature dies, put a +1/+1 counter on equipped creature. If equipped creature is a Vampire, put two +1/+1 counter on it instead.|
Boros Signet|Commander 2017|205|U|{2}|Artifact|||{1}, {T}: Add {R}{W}.|
-Commander's Sphere|Commander 2017|206|C|{3}|Artifact|||{T}: Add to your mana pool one mana of any color in your commander's color identity.$Sacirifice Commander's Sphere: Draw a card.|
-Darksteel Ingot|Commander 2017|207|U|{3}|Artifact|||Indestructible${T}: Add one mana of any color to your mana pool.|
+Commander's Sphere|Commander 2017|206|C|{3}|Artifact|||{T}: Add one mana of any color in your commander's color identity.$Sacirifice Commander's Sphere: Draw a card.|
+Darksteel Ingot|Commander 2017|207|U|{3}|Artifact|||Indestructible${T}: Add one mana of any color.|
Door of Destinies|Commander 2017|208|R|{4}|Artifact|||As Door of Destinies enters the battlefield, choose a creature type.$Whenever you cast a spell of the chosen type, put a charge counter on Door of Destinies.$Creatures you control of the chosen type get +1/+1 for each charge counter on Door of Destinies.|
Dreamstone Hedron|Commander 2017|209|U|{6}|Artifact|||{T}: Add {C}{C}{C}.${3}, {T}, Sacrifice Dreamstone Hedron: Draw three cards.|
-Fellwar Stone|Commander 2017|210|U|{2}|Artifact|||{T}: Add to your mana pool one mana of any color that a land an opponent controls could produce.|
+Fellwar Stone|Commander 2017|210|U|{2}|Artifact|||{T}: Add one mana of any color that a land an opponent controls could produce.|
Fist of Suns|Commander 2017|211|R|{3}|Artifact|||You may pay {W}{U}{B}{R}{G} rather than pay the mana cost for spells you cast.|
Grappling Hook|Commander 2017|212|R|{4}|Artifact - Equipment|||Equipped creature has double strike.$Whenever equipped creature attacks, you may have target creature block it this turn if able.$Equip {4}|
Hedron Archive|Commander 2017|213|U|{4}|Artifact|||{T}: Add {C}{C}.${2}, {T}, Sacrifice Hedron Archive: Draw two cards.|
@@ -31911,7 +31911,7 @@ Quietus Spike|Commander 2017|220|R|{3}|Artifact - Equipment|||Equipped creature
Rakdos Signet|Commander 2017|221|U|{2}|Artifact|||{1}, {T}: Add {B}{R}.|
Skullclamp|Commander 2017|222|U|{1}|Artifact - Equipment|||Equipped creature get +1/-1.$Whenever equipped creature dies, draw two cards.$Equip {1}|
Sol Ring|Commander 2017|223|U|{1}|Artifact|||{T}: Add {C}{C}.|
-Staff of Nin|Commander 2017|224|R|{6}|Artifact|||At the beginning of your upkeep, draw a card.${T}: Staff of Nin deals 1 damage to target creature or player.|
+Staff of Nin|Commander 2017|224|R|{6}|Artifact|||At the beginning of your upkeep, draw a card.${T}: Staff of Nin deals 1 damage to any target.|
Steel Hellkite|Commander 2017|225|R|{6}|Artifact Creature - Dragon|5|5|Flying${2}: Steel Hellkite gets +1/+0 until end of turn.${X}: Destroy each nonland permanent with converted mana cost X whose controller was dealt damage by Steel Hellkite this turn. Activate this ability only once each turn.|
Swiftfoot Boots|Commander 2017|226|U|{2}|Artifact - Equipment|||Equipped creature has hexproof and haste.$Equip {1}|
Sword of the Animist|Commander 2017|227|R|{2}|Artifact - Equipment|||Equipped creature gets +1/+1.$Whenever equipped creature attacks, you may search your library for a basic land card, put it onto the battlefield tapped, then shuffle your library.$Equip {2}|
@@ -31929,20 +31929,20 @@ Bojuka Bog|Commander 2017|238|C||Land|||Bojuka Bog enters the battlefield tapped
Boros Garrison|Commander 2017|239|C||Land|||Boros Garrison enters the battlefield tapped.$When Boros Garrison enters the battlefield, return a land you control to its owner's hand.${T}: Add {R}{W}.|
Boros Guildgate|Commander 2017|240|C||Land - Gate|||Boros Guildgate enters the battlefield tapped.${T}: Add {R} or {W}.|
Cinder Barrens|Commander 2017|241|U||Land|||Cinder Barrens enters the battlefield tapped.${T}: Add {B} or {R}.|
-Command Tower|Commander 2017|242|C||Land|||{T}: Add to your mana pool one mana of any color in your commander's color identity.|
-Crucible of the Spirit Dragon|Commander 2017|243|R||Land|||{T}: Add {C}.${1}, {T}: Put a storage counter on Crucible of the Spirit Dragon.${T}, Remove X storage counters from Crucible of the Spirit Dragon: Add X mana in any combination of colors to your mana pool. Spend this mana only to cast Dragon spells or activate abilities of Dragons.|
+Command Tower|Commander 2017|242|C||Land|||{T}: Add one mana of any color in your commander's color identity.|
+Crucible of the Spirit Dragon|Commander 2017|243|R||Land|||{T}: Add {C}.${1}, {T}: Put a storage counter on Crucible of the Spirit Dragon.${T}, Remove X storage counters from Crucible of the Spirit Dragon: Add X mana in any combination of colors. Spend this mana only to cast Dragon spells or activate abilities of Dragons.|
Crumbling Necropolis|Commander 2017|244|U||Land|||Crumbling Necropolis enters the battlefield tapped.${T}: Add {U}, {B}, or {R}.|
Dimir Aqueduct|Commander 2017|245|U||Land|||Dimir Aqueduct enters the battlefield tapped.$When Dimir Aqueduct enters the battlefield, return a land you control to its owner's hand.${T}: Add {U}{B}.|
Dismal Backwater|Commander 2017|246|C||Land|||Dismal Backwater enters the battlefield tapped.$When Dismal Backwater enters the battlefield, you gain 1 life.${T}: Add {U} or {B}.|
Elfhame Palace|Commander 2017|247|U||Land|||Elfhame Palace enters the battlefield tapped.${T}: Add {G} or {W}.|
Evolving Wilds|Commander 2017|248|C||Land|||{T}, Sacrifice Evolving Wilds: Search your library for a basic land card and put it onto the battlefield tapped. Then shuffle your library.|
-Exotic Orchard|Commander 2017|249|R||Land|||{T}: Add to your mana pool one mana of any color that a land an opponent controls could produce.|
+Exotic Orchard|Commander 2017|249|R||Land|||{T}: Add one mana of any color that a land an opponent controls could produce.|
Forsaken Sanctuary|Commander 2017|250|U||Land|||Forsaken Sanctuary enters the battlefield tapped.${T}: Add {W} or {B}.|
Frontier Bivouac|Commander 2017|251|U||Land|||Frontier Bivouac enters the battlefield tapped.${T}: Add {G}, {U}, or {R}.|
Grasslands|Commander 2017|252|U||Land|||Grasslands enters the battlefield tapped.${T}, Sacrifice Grasslands: Search your library for a Forest or Plains card and put it onto the battlefield. Then shuffle your library.|
Graypelt Refuge|Commander 2017|253|U||Land|||Graypelt Refuge enters the battlefield tapped.$When Graypelt Refuge enters the battlefield, you gain 1 life.${T}: Add {G} or {W}.|
Grixis Panorama|Commander 2017|254|C||Land|||{T}: Add {C}.${1}, {T}, Sacrifice Grixis Panorama: Search your library for a basic Island, Swamp, or Mountain card and put it onto the battlefield tapped. Then shuffle your library.|
-Haven of the Spirit Dragon|Commander 2017|255|R||Land|||{T}: Add {C}.${T}: Add one mana of any color to your mana pool. Spend this mana only to cast a Dragon creature spell.${2}, {T}, Sacrifice Haven of the Spirit Dragon: Return target Dragon creature card of Ugin planeswalker card from your graveyard to your hand.|
+Haven of the Spirit Dragon|Commander 2017|255|R||Land|||{T}: Add {C}.${T}: Add one mana of any color. Spend this mana only to cast a Dragon creature spell.${2}, {T}, Sacrifice Haven of the Spirit Dragon: Return target Dragon creature card of Ugin planeswalker card from your graveyard to your hand.|
Izzet Boilerworks|Commander 2017|256|U||Land|||Izzet Boilerworks enters the battlefield tapped.$When Izzet Boilerworks enters the battlefield, return a land you control to its owner's hand.${T}: Add {U}{R}.|
Jungle Shrine|Commander 2017|257|U||Land|||Jungle Shrine enters the battlefield tapped.${T}: Add {R}, {G}, or {W}.|
Jwar Isle Refuge|Commander 2017|258|U||Land|||Jwar Isle Refuge enters the battlefield tapped.$When Jwar Isle Refuge enters the battlefield, you gain 1 life.${T}: Add {U} or {B}.|
@@ -31953,7 +31953,7 @@ Myriad Landscape|Commander 2017|262|U||Land|||Myriad Landscape enters the battle
Mystic Monastery|Commander 2017|263|U||Land|||Mystic Monastery enters the battlefield tapped.${T}: Add {U}, {R}, or {W}.|
Mystifying Maze|Commander 2017|264|R||Land|||{T}: Add {C}.${4}, {T}: Exile target attacking creature an opponent controls. At the beginning of the next end step, return it to the battlefield tapped under its owner's control.|
Nomad Outpost|Commander 2017|265|U||Land|||Nomad Outpost enters the battlefield tapped.${T}: Add {R}, {W}, or {B}.|
-Opal Palace|Commander 2017|266|C||Land|||{T}: Add {C}.${1}, {T}: Add to your mana pool one mana of any color in your commander's color identity. If you spend this mana to cast your commander, it enters the battlefield with a number of additional +1/+1 counters on it equal to the number of times it's been cast from the command zone this game.|
+Opal Palace|Commander 2017|266|C||Land|||{T}: Add {C}.${1}, {T}: Add one mana of any color in your commander's color identity. If you spend this mana to cast your commander, it enters the battlefield with a number of additional +1/+1 counters on it equal to the number of times it's been cast from the command zone this game.|
Opulent Palace|Commander 2017|267|U||Land|||Opulant Palace enters the battlefield tapped.${T}: Add {B}, {G}, or {U}.|
Orzhov Basilica|Commander 2017|268|C||Land|||Orzhov Basilica enters the battlefield tapped.$When Orzhov Basilica enters the battlefield, return a land you control to its owner's hand.${T}: Add {W}{B}.|
Orzhov Guildgate|Commander 2017|269|C||Land - Gate||||Orzhov Guildgate enters the battlefield tapped.${T}: Add {W} or {B}.|
@@ -31976,11 +31976,11 @@ Terramorphic Expanse|Commander 2017|285|C||Land|||{T}, Sacrifice Terramorphic Ex
Tranquil Expanse|Commander 2017|286|U||Land|||Tranquil Expanse enters the battlefield tapped.${T}: Add {G} or {W}.|
Tranquil Thicket|Commander 2017|287|C||Land|||Tranquil Thicket enters the battlefield tapped.${T}: Add {G}.$Cycling {G}|
Urborg Volcano|Commander 2017|288|U||Land|||Urborg Volcano enters the battlefield tapped.${T}: Add {B} or {R}.|
-Vivid Crag|Commander 2017|289|U||Land|||Vivid Crag enters the battlefield tapped with two charge counters on it.${T}: Add {R}.${T}, Remove a charge counter from Vivid Crag: Add one mana of any color to your mana pool.|
-Vivid Creek|Commander 2017|290|U||Land|||Vivid Creek enters the battlefield tapped with two charge counters on it.${T}: Add {U}.${T}, Remove a charge counter from Vivid Creek: Add one mana of any color to your mana pool.|
-Vivid Grove|Commander 2017|291|U||Land|||Vivid Grove enters the battlefield tapped with two charge counters on it.${T}: Add {G}.${T}, Remove a charge counter from Vivid Grove: Add one mana of any color to your mana pool.|
-Vivid Marsh|Commander 2017|292|U||Land|||Vivid Marsh enters the battlefield tapped with two charge counters on it.${T}: Add {B}.${T}, Remove a charge counter from Vivid Marsh: Add one mana of any color to your mana pool.|
-Vivid Meadow|Commander 2017|293|U||Land|||Vivid Meadow enters the battlefield tapped with two charge counters on it.${T}: Add {W}.${T}, Remove a charge counter from Vivid Meadow: Add one mana of any color to your mana pool.|
+Vivid Crag|Commander 2017|289|U||Land|||Vivid Crag enters the battlefield tapped with two charge counters on it.${T}: Add {R}.${T}, Remove a charge counter from Vivid Crag: Add one mana of any color.|
+Vivid Creek|Commander 2017|290|U||Land|||Vivid Creek enters the battlefield tapped with two charge counters on it.${T}: Add {U}.${T}, Remove a charge counter from Vivid Creek: Add one mana of any color.|
+Vivid Grove|Commander 2017|291|U||Land|||Vivid Grove enters the battlefield tapped with two charge counters on it.${T}: Add {G}.${T}, Remove a charge counter from Vivid Grove: Add one mana of any color.|
+Vivid Marsh|Commander 2017|292|U||Land|||Vivid Marsh enters the battlefield tapped with two charge counters on it.${T}: Add {B}.${T}, Remove a charge counter from Vivid Marsh: Add one mana of any color.|
+Vivid Meadow|Commander 2017|293|U||Land|||Vivid Meadow enters the battlefield tapped with two charge counters on it.${T}: Add {W}.${T}, Remove a charge counter from Vivid Meadow: Add one mana of any color.|
Wind-Scarred Crag|Commander 2017|294|C||Land|||Wind-Scarred Crag enters the battlefield tapped.$When Wind-Scarred Crag enters the battlefield, you gain 1 life.${T}: Add {R} or {W}.|
Plains|Commander 2017|295|L||Basic Land - Plains|||{T}: Add {W}.|
Plains|Commander 2017|296|L||Basic Land - Plains|||{T}: Add {W}.|
@@ -32051,11 +32051,11 @@ Dualcaster Mage|Archenemy: Nicol Bolas|46|R|{1}{R}{R}|Creature - Human Wizard|2|
Fiery Fall|Archenemy: Nicol Bolas|47|C|{5}{R}|Instant|||Fiery Fall deals 5 damage to target creature.$Basic landcycling {1}{R} ({1}{R}, Discard this card: Search your library for a basic land card, reveal it, and put it into your hand. Then shuffle your library.)|
Flametongue Kavu|Archenemy: Nicol Bolas|48|U|{3}{R}|Creature - Kavu|4|2|When Flametongue Kavu enters the battlefield, it deals 4 damage to target creature.|
Gorehorn Minotaurs|Archenemy: Nicol Bolas|49|C|{2}{R}{R}|Creature - Minotaur Warrior|3|3|Bloodthirst 2 (If an opponent was dealt damage this turn, this creature enters the battlefield with two +1/+1 counters on it.)|
-Grim Lavamancer|Archenemy: Nicol Bolas|50|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.|
+Grim Lavamancer|Archenemy: Nicol Bolas|50|R|{R}|Creature - Human Wizard|1|1|{R}, {tap}, Exile two cards from your graveyard: Grim Lavamancer deals 2 damage to any target.|
Guttersnipe|Archenemy: Nicol Bolas|51|U|{2}{R}|Creature - Goblin Shaman|2|2|Whenever you cast an instant or sorcery spell, Guttersnipe deals 2 damage to each opponent.|
Hammerhand|Archenemy: Nicol Bolas|52|C|{R}|Enchantment - Aura|||Enchant creature$When Hammerhand enters the battlefield, target creature can't block this turn.$Enchanted creature gets +1/+1 and has haste.|
Inferno Titan|Archenemy: Nicol Bolas|53|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.|
-Lightning Bolt|Archenemy: Nicol Bolas|54|C|{R}|Instant|||Lightning Bolt deals 3 damage to target creature or player.|
+Lightning Bolt|Archenemy: Nicol Bolas|54|C|{R}|Instant|||Lightning Bolt deals 3 damage to any target.|
Limits of Solidarity|Archenemy: Nicol Bolas|112|U|{3}{R}|Sorcery|||Gain control of target creature until end of turn. Untap that creature. It gains haste until end of turn.$Cycling {2}|
Obsidian Fireheart|Archenemy: Nicol Bolas|55|M|{1}{R}{R}{R}|Creature - Elemental|4|4|{1}{R}{R}: Put a blaze counter on target land without a blaze counter on it. For as long as that land has a blaze counter on it, it has "At the beginning of your upkeep, this land deals 1 damage to you." (The land continues to burn after Obsidian Fireheart has left the battlefield.)|
Pathmaker Initiate|Archenemy: Nicol Bolas|113|C|{1}{R}|Creature - Human Wizard|2|1|{T}: Target creature with power 2 or less can't be blocked this turn.|
@@ -32065,7 +32065,7 @@ Stormblood Berserker|Archenemy: Nicol Bolas|58|U|{1}{R}|Creature - Human Berserk
Sudden Demise|Archenemy: Nicol Bolas|59|R|{X}{R}|Sorcery|||Choose a color. Sudden Demise deals X damage to each creature of the chosen color.|
Torchling|Archenemy: Nicol Bolas|60|R|{3}{R}{R}|Creature - Shapeshifter|3|3|{R}: Untap Torchling.${R}: Target creature blocks Torchling this turn if able.${R}: Change the target of target spell that targets only Torchling.${1}: Torchling gets +1/-1 until end of turn.${1}: Torchling gets -1/+1 until end of turn.|
Tormenting Voice|Archenemy: Nicol Bolas|114|C|{1}{R}|Sorcery|||As an additional cost to cast Tormenting Voice, discard a card.$Draw two cards.|
-Volcanic Geyser|Archenemy: Nicol Bolas|61|U|{X}{R}{R}|Instant|||Volcanic Geyser deals X damage to target creature or player.|
+Volcanic Geyser|Archenemy: Nicol Bolas|61|U|{X}{R}{R}|Instant|||Volcanic Geyser deals X damage to any target.|
Cultivate|Archenemy: Nicol Bolas|62|C|{2}{G}|Sorcery|||Search your library for up to two basic land cards, reveal those cards, and put one onto the battlefield tapped and the other into your hand. Then shuffle your library.|
Explore|Archenemy: Nicol Bolas|63|C|{1}{G}|Sorcery|||You may play an additional land this turn.$Draw a card.|
Fertilid|Archenemy: Nicol Bolas|64|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.|
@@ -32216,14 +32216,14 @@ Gilded Cerodon|Hour of Devastation|94|C|{4}{R}|Creature - Beast|4|4|Whenever Gil
Granitic Titan|Hour of Devastation|95|C|{4}{R}{R}|Creature - Elemental|5|4|Menace$Cycling {2} ({2}, Discard this card: Draw a card.)|
Hazoret's Undying Fury|Hour of Devastation|96|R|{4}{R}{R}|Sorcery|||Shuffle your library, then exile the top four cards. You may cast any number of nonland cards with converted mana cost 5 or less from among them without paying their mana costs. Land you control don't untap during your next untap step.|
Hour of Devastation|Hour of Devastation|97|R|{3}{R}{R}|Sorcery|||All creatures lose indestructible until end of turn. Hour of Devastation deals 5 damage to each creature and each non-Bolas planeswalker.|
-Imminent Doom|Hour of Devastation|98|R|{2}{R}|Enchantment|||Imminent Doom enters the battlefield with a doom counter on it.$Whenever you cast a spell with converted mana cost equal to the number of doom counters on Imminent Doom, Imminent Doom deals that much damage to target creature or player. Then put a doom counter on Imminent Doom. |
+Imminent Doom|Hour of Devastation|98|R|{2}{R}|Enchantment|||Imminent Doom enters the battlefield with a doom counter on it.$Whenever you cast a spell with converted mana cost equal to the number of doom counters on Imminent Doom, Imminent Doom deals that much damage to any target. Then put a doom counter on Imminent Doom. |
Inferno Jet|Hour of Devastation|99|U|{5}{R}|Sorcery|||Inferno Jet deals 6 damage to target opponent.$Cycling {2} ({2}, Discard this card: Draw a card.)|
Khenra Scrapper|Hour of Devastation|100|C|{2}{R}|Creature - Jackal Warrior|2|3|Menace$You may exert Khenra Scrapper as it attacks. When you do, it gets +2/+0 until end of turn. (An exerted creature won't untap during your next untap step.)|
Kindled Fury|Hour of Devastation|101|C|{R}|Instant|||Target creature gets +1/+0 and gains first strile until end of turn.|
Magmaroth|Hour of Devastation|102|U|{3}{R}|Creature - Elemental|5|5|At the beginning of your upkeep, put a -1/-1 counter on Magmaroth.$Whenever you cast a noncreature spell, remove a -1/-1 counter from Magmaroth.|
Manticore Eternal|Hour of Devastation|103|U|{3}{R}{R}|Creature - Zombie Manticore|5|4|Afflict 3 (Whenever this creature becomes blocked, defending player loses 3 life.)$Manticore Eternal attacks each combat if able.|
Neheb, the Eternal|Hour of Devastation|104|M|{3}{R}{R}|Legendary Creature - Zombie Minotaur Warrior|4|6|Afflict 3 (Whenever this creature becomes blocked, defending player loses 3 life.)$At the beginning of your postcombat main phase, add {R} for each 1 life your opponents have lost this turn.|
-Open Fire|Hour of Devastation|105|C|{2}{R}|Instant|||Open Fire does 3 damage to target creature or player.|
+Open Fire|Hour of Devastation|105|C|{2}{R}|Instant|||Open Fire does 3 damage to any target.|
Puncturing Blow|Hour of Devastation|106|C|{2}{R}{R}|Sorcery|||Puncturing Blow deals 5 damage to target creature. If that creature would die this turn, exile it instead.|
Sand Strangler|Hour of Devastation|107|U|{3}{R}|Creature - Beast|3|3|When Sand Strangler enters the battlefield, if you control a Desert or there is a Desert card in your graveyard, you may have Sand Strangler deal 3 damage to target creature.|
Thorned Moloch|Hour of Devastation|108|C|{2}{R}|Creature - Lizard|2|2|Prowess >(Whenever you cast a noncreature spell, this creature gets +1/+1 until end of turn.)$Thorned Moloch has first strike as long as it's attacking.|
@@ -32242,7 +32242,7 @@ Hour of Promise|Hour of Devastation|120|R|{4}{G}|Sorcery|||Search your library f
Life Goes On|Hour of Devastation|121|C|{G}|Instant|||You gain 4 life. If a creature died this turn, you gain 8 life instead.|
Majestic Myriarch|Hour of Devastation|122|M|{4}{G}|Creature - Chimera|0|0|Majestic Myriarch's power and toughness are each equal to twice the number of creatures you control.$At the beginning of each combat, if you control a creature with flying, Majestic Myriarch gains flying until end of turn. The same is true for first strike, double strike, deathtouch, haste, hexproof, indestructible, lifelink, menace, reach, trample, and vigilance.|
Nissa's Defeat|Hour of Devastation|123|U|{2}{G}|Sorcery|||Destroy target Forest, green enchantment, or green planeswalker. If that permanent was a Nissa planeswalker, draw a card.|
-Oasis Ritualist|Hour of Devastation|124|C|{3}{G}|Creature - Naga Druid|2|4|{t}: Add one mana of any color to your mana pool.${t}, Exert Oasis Ritualist: Add two mana of any one color to your manna pool. (An exerted creature won't untap during your next untap step.)|
+Oasis Ritualist|Hour of Devastation|124|C|{3}{G}|Creature - Naga Druid|2|4|{t}: Add one mana of any color.${t}, Exert Oasis Ritualist: Add two mana of any one color to your manna pool. (An exerted creature won't untap during your next untap step.)|
Overcome|Hour of Devastation|125|U|{3}{G}{G}|Sorcery|||Creatures you control get +2/+2 and gain trample until end of turn.|
Pride Sovereign|Hour of Devastation|126|R|{2}{G}|Creature - Cat|2|2|Pride Sovereign gets +1/+1 for each other Cat you control.${W}, {t}, Exert Pride Sovereign: Create two 1/1 white Cat creature tokens with lifelink. (An exerted creature won't untap during your next untap step.)|
Quarry Beetle|Hour of Devastation|127|U|{4}{G}|Creature - Insect|4|5|When Quarry Beetle enters the battlefield, you may return target land card from your graveyard to the battlefield.|
@@ -32282,7 +32282,7 @@ Dagger of the Worthy|Hour of Devastation|160|U|{2}|Artifact - Equipment|||Equipp
God-Pharaoh's Gift|Hour of Devastation|161|R|{7}|Artifact|||At the beginning of combat on your turn, you may exile a creature card from your graveyard. If you do, create a token that's a copy of that card, except it's a 4/4 black Zombie. It gains haste until end of turn.|
Graven Abomination|Hour of Devastation|162|C|{3}|Artifact Creature - Horror|3|1|Whenever Graven Abomination attacks, exile target card from defending player's graveyard.|
Hollow One|Hour of Devastation|163|R|{5}|Artifact Creature - Golem|4|4|Hollow One costs {2} less to cast for each card you've cycled or discarded this turn.$Cycling {2} ({2}, Discard this card: Draw a card.)|
-Manalith|Hour of Devastation|164|C|{3}|Artifact|||{T}: Add one mana of any color to your mana pool.|
+Manalith|Hour of Devastation|164|C|{3}|Artifact|||{T}: Add one mana of any color.|
Mirage Mirror|Hour of Devastation|165|R|{3}|Artifact|||{2}: Mirage Mirror becomes a copy of target artifact, creature, enchantment, or land until end of turn.|
Sunset Pyramid|Hour of Devastation|166|U|{2}|Artifact|||Sunset Pyramid enters the battlefield with three brick counters on it.${2}, {T}, Remove a brick counter from Sunset Pyramid: Draw a card.${2}, {T}: Scry 1.|
Traveler's Amulet|Hour of Devastation|167|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.|
@@ -32302,7 +32302,7 @@ Ipnu Rivulet|Hour of Devastation|180|U||Land - Desert|||{t}: Add {C}.${t}, Pay 1
Ramunap Ruins|Hour of Devastation|181|U||Land - Desert|||{t}: Add {C}.${t}, Pay 1 life: Add {R}.${2}{R}{R}, {t}, Sacrifice a Desert: Ramunap Ruins deals 2 damage to each opponent.|
Scavenger Grounds|Hour of Devastation|182|R||Land - Desert|||{t}: Add {C}.${2}, {t}, Sacrifice a Desert: Exile all cards from all graveyards.|
Shefet Dunes|Hour of Devastation|183|U||Land - Desert|||{t}: Add {C}.${t}, Pay 1 life: Add {W}.${2}{W}{W}, {t}, Sacrifice a Desert: Creatures you control get +1/+1 until end of turn. Activate this ability only any time you could cast a sorcery.|
-Survivors' Encampment|Hour of Devastation|184|C||Land - Desert|||{T}: Add {C}.${T}, Tap an untapped creature you control: Add one mana of any color to your mana pool.|
+Survivors' Encampment|Hour of Devastation|184|C||Land - Desert|||{T}: Add {C}.${T}, Tap an untapped creature you control: Add one mana of any color.|
Plains|Hour of Devastation|185|L||Basic Land - Plains||||
Island|Hour of Devastation|186|L||Basic Land - Island||||
Swamp|Hour of Devastation|187|L||Basic Land - Swamp||||
@@ -32350,7 +32350,7 @@ Kinjalli's Sunwing|Ixalan|19|R|{2}{W}|Creature - Dinosaur|2|3|Flying$Creatures y
Legion Conquistador|Ixalan|20|C|{2}{W}|Creature - Vampire Soldier|2|2|When Legion Conquistador enters the battlefield, you may search your library for any number of cards named Legion Conquistador, reveal them, put them into your hand, then shuffle your library|
Legion's Judgment|Ixalan|21|C|{2}{W}|Sorcery|||Destroy target creature with power 4 or greater.|
Legion's Landing|Ixalan|22a|R|{W}|Legendary Enchantment|||When Legion's Landing enters the battlefield, create a 1/1 white Vampire creature token with lifelink.$When you attack with three or more creatures, transform Legion's Landing.|
-Adanto, the First Fort|Ixalan|22b|R||Legendary Land|||T: Add W to your mana pool.$2W, T: Create a 1/1 white Vampire creature token with lifelink.|
+Adanto, the First Fort|Ixalan|22b|R||Legendary Land|||T: Add W.$2W, T: Create a 1/1 white Vampire creature token with lifelink.|
Looming Altisaur|Ixalan|23|C|{3}{W}|Creature - Dinosaur|1|7||
Mavren Fein, Dusk Apostle|Ixalan|24|R|{2}{W}|Legendary Creature - Vampire Cleric|2|2|Whenever one or more nontoken Vampires you control attack, create a 1/1 white Vampire creature token with lifelink.|
Paladin of the Bloodstained|Ixalan|25|C|{3}{W}|Creature - Vampire Knight|3|2|When Paladin of the Bloodstained enters the battlefield, create a 1/1 white Vampire creature token with lifelink.|
@@ -32380,7 +32380,7 @@ Chart a Course|Ixalan|48|U|{1}{U}|Sorcery||||
Daring Saboteur|Ixalan|49|R|{1}{U}|Creature - Human Pirate|2|1|{2}{U}: Daring Saboteur can't be blocked this turn.$Whenever Daring Saboteur deals combat damage to a player, you may draw a card. If you do, discard a card.|
Deadeye Quartermaster|Ixalan|50|U|{3}{U}|Creature - Human Pirate|2|2|When Deadeye Quartermaster enters the battlefield, you may search your library for an Equipment or a Vehicle card and put it into your hand. If you do, shuffle your library.|
Deeproot Waters|Ixalan|51|U|{2}{U}|Enchantment|||Whenever you cast a Merfolk spell, create a 1/1 blue Merfolk creature token with hexproof.|
-Depths of Desire|Ixalan|52|C|{2}{U}|Instant|||Return target creature to its owner's hand. Create a colorless Treasure token with "{t}, Sacrifice this artifact: Add one mana of any color to your mana pool."|
+Depths of Desire|Ixalan|52|C|{2}{U}|Instant|||Return target creature to its owner's hand. Create a colorless Treasure token with "{t}, Sacrifice this artifact: Add one mana of any color."|
Dive Down|Ixalan|53|C|{U}|Instant|||Target creature you control gets +0/+3 until end of turn. |
Dreamcaller Siren|Ixalan|54|R|{2}{U}{U}|Creature - Siren Pirate|3|3|Flash$Flying$Dreamcaller Siren can only block creatures with flying.$When Dreamcaller Siren enters the battlefield, if you control another Pirate, tap up to two nonland permanents.|
Entrancing Melody|Ixalan|55|R|{X}{U}{U}|Instant|||Gain control of target creature with converted mana cost X.|
@@ -32396,12 +32396,12 @@ One with the Wind|Ixalan|64|C|{1}{U}|Enchantment - Aura|||Enchant Creature$Ench
Opt|Ixalan|65|C|{U}|Instant|||Scry 1.$Draw a card.|
Overflowing Insight|Ixalan|66|M|{4}{U}{U}{U}|Sorcery|||Target player draws seven cards.|
Perilous Voyage|Ixalan|67|U|{1}{U}|Instant|||Return target nonland permanent you don't control to its owner's hand. If its converted mana cost was 2 or less, scry 2.|
-Pirate's Prize|Ixalan|68|C|{3}{U}|Sorcery|||Draw two cards. Create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color to your mana pool."|
-Prosperous Pirates|Ixalan|69|C|{4}{U}|Creature - Human Pirate|3|4|When Prosperous Pirates enters the battlefield, create two colorless Treasure artifact tokens with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."|
+Pirate's Prize|Ixalan|68|C|{3}{U}|Sorcery|||Draw two cards. Create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color."|
+Prosperous Pirates|Ixalan|69|C|{4}{U}|Creature - Human Pirate|3|4|When Prosperous Pirates enters the battlefield, create two colorless Treasure artifact tokens with "{T}, Sacrifice this artifact: Add one mana of any color."|
River Sneak|Ixalan|70|U|{1}{U}|Creature - Merfolk Warrior|1|1|River Sneak can't be blocked.$Whenever another Merfolk enters the battlefield under your control, River sneak gets +1/+1 until end of turn.|
River's Rebuke|Ixalan|71|R|{4}{U}{U}|Sorcery|||Return all nonland permanents target player controls to their owner's hand.|
Run Aground|Ixalan|72|C|{3}{U}|Instant|||Put target artifact or creature on top of it's owner's library.|
-Sailor of Means|Ixalan|73|C|{2}{U}|Creature - Human Pirate|1|4|When Sailor of Means enters the battlefield, create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color to your mana pool."|
+Sailor of Means|Ixalan|73|C|{2}{U}|Creature - Human Pirate|1|4|When Sailor of Means enters the battlefield, create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color."|
Search for Azcanta|Ixalan|74a|R|{1}{U}|Legendary Enchantment||||
Azcanta, The Sunken Ruin|Ixalan|74b|R||Legendary Land|||(Transforms from Search for Azcanta)/${t} : Add {U}.${2U} , {t} : Look at the top four cards of your library. You may reveal a noncreature, nonland card from among them and put it into your hand. Put the rest on the bottom of your library in any order. |
Shaper Apprentice|Ixalan|75|C|{1}{U}|Creature - Merfolk Wizard|2|1|Shaper Apprentice has flying as long as you control another Merfolk.|
@@ -32411,7 +32411,7 @@ Siren Lookout|Ixalan|78|C|{2}{U}|Creature - Siren Pirate|1|2|Flying$When Siren L
Siren Stormtamer|Ixalan|79|U|{U}|Creature - Siren Pirate Wizard|1|1|Flying${U}, Sacrifice Siren Stormtamer: Counter target spell or ability that targets you or a creature you control.|
Siren's Ruse|Ixalan|80|C|{1}{U}|Instant|||Exile target creature you control, then return that card to the battlefield under its owner's control. If a Pirate was exiled this way, draw a card.|
Spell Pierce|Ixalan|81|C|{U}|Instant|||Counter target noncreature spell unless its controller pays {2}.|
-Spell Swindle|Ixalan|82|R|{3}{U}{U}|Instant|||Counter target spell. Create X colorless Treasure artifact tokens, where X is that spell's converted mana cost. They have "T, Sacrifice this artifact: Add one mana of any color to your mana pool."|
+Spell Swindle|Ixalan|82|R|{3}{U}{U}|Instant|||Counter target spell. Create X colorless Treasure artifact tokens, where X is that spell's converted mana cost. They have "T, Sacrifice this artifact: Add one mana of any color."|
Storm Fleet Aerialist|Ixalan|83|U|{1}{U}|Creature - Human Pirate|1|2|Flying$Raid - Storm Fleet Aerialist enters the battlefield with a +1/+1 counter on it if you attacked with a creature this turn.|
Storm Fleet Spy|Ixalan|84|U|{2}{U}|Creature - Human Pirate|2|2|Raid - When Storm Fleet Spy enters the battlefield, if you attacked with a creature this turn, draw a card.|
Storm Sculptor|Ixalan|85|C|{3}{U}|Creature - Merfolk Wizard|3|2|Storm Sculptor can't be blocked.$When Storm Sculptor enters the battlefield, return a creature you control to its owner's hand.|
@@ -32425,21 +32425,21 @@ Bishop of the Bloodstained|Ixalan|91|U|{3}{B}{B}|Creature - Vampire Cleric|3|3|W
Blight Keeper|Ixalan|92|C|{B}|Creature - Bat Imp|1|1|Flying${7}{B}, {T}, Sacrifice Blight Keeper: Target opponent loses 4 life and you gain 4 life.|
Bloodcrazed Paladin|Ixalan|93|R|{1}{B}|Creature - Vampire Knight|1|1|Flash$Bloodcrazed Paladin enters the battlefield with a +1/+1 counter on it for each creature that died this turn.|
Boneyard Parley|Ixalan|94|M|{5}{B}{B}|Sorcery|||Exile up to five target creature cards from graveyards. An opponent separates those cards into two piles. Put all cards from the pile of your choice onto the battlefield under your control and the rest into their owners' graveyards.|
-Contract Killing|Ixalan|95|C|{3}{B}{B}|Sorcery|||Destroy target creature. Create two colorless Treasure artifact tokens with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."|
+Contract Killing|Ixalan|95|C|{3}{B}{B}|Sorcery|||Destroy target creature. Create two colorless Treasure artifact tokens with "{T}, Sacrifice this artifact: Add one mana of any color."|
Costly Plunder|Ixalan|96|C|{1}{B}|Instant|||As an additional cost to cast Costly Plunder, sacrifice an artifact or creature.$Draw two cards.|
-Dark Nourishment|Ixalan|97|U|{9}{7}|Instant|||Dark Nourishment deals 3 damage to target creature or player. You gain 3 life.|
+Dark Nourishment|Ixalan|97|U|{9}{7}|Instant|||Dark Nourishment deals 3 damage to any target. You gain 3 life.|
Deadeye Tormentor|Ixalan|98|C|{2}{B}|Creature - Human Pirate|2|2|Raid — When Deadeye Tormentor enters the battlefield, if you attacked with a creature this turn, target opponent discards a card.|
Deadeye Tracker|Ixalan|99|R|{B}|Creature - Human Pirate|1|1|{1}{B}, {T}: Exile two target cards from an opponent's graveyard. Deadeye Tracker explores.|
Deathless Ancient|Ixalan|100|U|{4}{B}{B}|Creature - Vampire Knight|4|4|Flying$Tap three untapped Vampires you control: Return Deathless Ancient from your graveyard to your hand.|
Desperate Castaways|Ixalan|101|C|{1}{B}|Creature - Human Pirate|2|3|Desperate Castaways can't attack unless you control an artifact.|
-Dire Fleet Hoarder|Ixalan|102|C|{1}{B}|Creature - Human Pirate|2|1|When Dire Fleet Hoarder dies, create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color to your mana pool."|
+Dire Fleet Hoarder|Ixalan|102|C|{1}{B}|Creature - Human Pirate|2|1|When Dire Fleet Hoarder dies, create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color."|
Dire Fleet Interloper|Ixalan|103|C|{3}{B}|Creature - Human Pirate|2|2|Menace$When Dire Fleet Interloper enters the battlefield, it explores. |
Dire Fleet Ravager|Ixalan|104|M|{3}{B}{B}|Creature - Orc Pirate Wizard|4|4|Menace, deathtouch$When Dire Fleet Ravager enters the battlefield, each player loses a third of his or her life, rounded up.|
Duress|Ixalan|105|C|{B}|Sorcery|||Target opponent reveals his or her hand. You choose a noncreature, nonland card from it. That player discards that card.|
Fathom Fleet Captain|Ixalan|106|R|{1}{B}|Creature - Human Pirate|2|1|Menace$Whenever Fathom Fleet Captain attacks, if you control another nontoken Pirate, you may pay {2}. If you do, creature a 2/2 black Pirate creature token with menace.|
Fathom Fleet Cutthroat|Ixalan|107|C|{3}{B}|Creature - Human Pirate|3|3|When Fathom Fleet Cutthroat enters the battlefield, destroy target creature an opponent controls that was dealt damage this turn.|
Grim Captain's Call|Ixalan|108|U|{2}{B}|Sorcery|||Return a Pirate card from your graveyard to your hand, then do the same for Vampire, Dinosaur, and Merfolk.|
-Heartless Pillage|Ixalan|109|U|{2}{B}|Sorcery|||Target opponent discards two cards.$Raid/ — If you attacked with a creature this turn, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."|
+Heartless Pillage|Ixalan|109|U|{2}{B}|Sorcery|||Target opponent discards two cards.$Raid/ — If you attacked with a creature this turn, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color."|
Kitesail Freebooter|Ixalan|110|U|{1}{B}|Creature - Human Pirate|1|2|Flying$When Kitesail Freebooter enters the battlefield, target opponent reveals his or her hand. You choose a noncreature, nonland card from it. Exile that card until Kitesail Freebooter leaves the battlefield.|
Lurking Chupacabra|Ixalan|111|U|{3}{B}|Creature - Beast Horror|2|3|Whenever a creature you control explores, target creature an opponent controls gets -2/-2 until end of turn|
March of the Drowned|Ixalan|112|C|{B}|Sorcery|||Choose one —$• Return target creature card from your graveyard to your hand.$• Return two target Pirate cards from your graveyard to your hand.|
@@ -32447,9 +32447,9 @@ Mark of the Vampire|Ixalan|113|C|{3}{B}|Enchantment - Aura|||Enchant creature$En
Queen's Agent|Ixalan|114|C|{5}{B}|Creature - Vampire Scout|3|3|Lifelink$When Queen's Agent enters the battlefield, it explores. |
Queen's Bay Soldier|Ixalan|115|C|{1}{B}|Creature - Vampire Soldier|2|2||
Raiders' Wake|Ixalan|116|U|{3}{B}|Enchantment|||Whenever an opponent discards a card, that player loses 2 life.$Raid — At the beginning of your end step, if you attacked with a creature this turn, target opponent discards a card.|
-Revel in Riches|Ixalan|117|R|{4}{B}|Enchantment|||Whenever a creature an opponent controls dies, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."$At the beginning of your upkeep, if you control ten or more Treasures, you win the game.|
+Revel in Riches|Ixalan|117|R|{4}{B}|Enchantment|||Whenever a creature an opponent controls dies, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color."$At the beginning of your upkeep, if you control ten or more Treasures, you win the game.|
Ruin Raider|Ixalan|118|R|{2}{B}|Creature - Orc Pirate|3|2|Raid — At the beginning of your end step, if you attacked with a creature this turn, reveal the top card of your library and put that card into your hand. You lose life equal to the card's converted mana cost.|
-Ruthless Knave|Ixalan|119|U|{2}{B}|Creature - Orc Pirate|3|2|{2}{B}, Sacrifice a creature: Create two colorless Treasure artifact tokens with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."$Sacrifice three Treasures: Draw a card.|
+Ruthless Knave|Ixalan|119|U|{2}{B}|Creature - Orc Pirate|3|2|{2}{B}, Sacrifice a creature: Create two colorless Treasure artifact tokens with "{T}, Sacrifice this artifact: Add one mana of any color."$Sacrifice three Treasures: Draw a card.|
Sanctum Seeker|Ixalan|120|R|{2}{B}{B}|Creature - Vampire Knight|3|4|Whenever a Vampire you control attacks, each opponent loses 1 life and you gain 1 life.|
Seekers' Squire|Ixalan|121|U|{1}{B}|Creature - Human Scout|1|2|When Seekers' Squire enters the battlefield, it explores. |
Skittering Heartstopper|Ixalan|122|C|{B}|Creature - Insect|1|2|{B}: Skittering Heartstopper gains deathtouch until end of turn.|
@@ -32461,12 +32461,12 @@ Vanquish the Weak|Ixalan|127|C|{2}{B}|Instant|||Destroy target creature with pow
Vicious Conquistador|Ixalan|128|U|{B}|Creature - Vampire Soldier|1|2|Whenever Vicious Conquistador attacks, each opponent loses 1 life.|
Vraska's Contempt|Ixalan|129|R|{2}{B}{B}|Instant|||Exile target creature or planeswalker. You gain 2 life.|
Walk the Plank|Ixalan|130|U|{B}{B}|Sorcery|||Destroy target non-Merfolk creature.|
-Wanted Scoundrels|Ixalan|131|U|{1}{B}|Creature - Human Pirate|4|3|When Wanted Scoundrels dies, target opponent creates two colorless Treasure artifact tokens with "T, Sacrifice this artifact: Add one mana of any color to your mana pool."|
+Wanted Scoundrels|Ixalan|131|U|{1}{B}|Creature - Human Pirate|4|3|When Wanted Scoundrels dies, target opponent creates two colorless Treasure artifact tokens with "T, Sacrifice this artifact: Add one mana of any color."|
Angrath's Marauders|Ixalan|132|R|{5}{R}{R}|Creature - Human Pirate|4|4|If a source you control would deal damage to a permanent or player, it deals double that damage to that permanent or player instead.|
Bonded Horncrest|Ixalan|133|U|{3}{R}|Creature - Dinosaur|5|5|Bonded Horncrest can't attack or block alone.|
Brazen Buccaneers|Ixalan|134|C|{3}{R}|Creature - Human Pirate|2|2|Haste$When Brazen Buccaneers enters the battlefield, it explores.|
Burning Sun's Avatar|Ixalan|135|R|{3}{R}{R}{R}|Creature - Dinosaur Avatar|6|6|When Burning Sun's Avatar enters the battlefield, it deals 3 damage to target opponent and 3 damage to up to one target creature.|
-Captain Lannery Storm|Ixalan|136|R|{2}{R}|Legendary Creature - Human Pirate|2|2|Haste$Whenever Captain lannery Storm attacks, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."$Whenever you sacrifice a Treasure, Captain Lannery Storm gets +1/+0 until end of turn.|
+Captain Lannery Storm|Ixalan|136|R|{2}{R}|Legendary Creature - Human Pirate|2|2|Haste$Whenever Captain lannery Storm attacks, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color."$Whenever you sacrifice a Treasure, Captain Lannery Storm gets +1/+0 until end of turn.|
Captivating Crew|Ixalan|137|R|{3}{R}|Creature - Human Pirate|4|3|{3}{R}: Gain control of target creature an opponent controls until end of turn. Untap that creature. It gains haste until end of turn. Activate this ability only any time you could cast a sorcery.|
Charging Monstrosaur|Ixalan|138|U|{4}{R}|Creature - Dinosaur|5|5|Trample, haste|
Demolish|Ixalan|139|C|{3}{R}|Sorcery|||Destroy target artifact or land.|
@@ -32479,21 +32479,21 @@ Firecannon Blast|Ixalan|145|C|{1}{R}{R}|Sorcery|||Firecannon Blast deals 3 damag
Frenzied Raptor|Ixalan|146|C|{2}{R}|Creature - Dinosaur|4|2||
Headstrong Brute|Ixalan|147|C|{2}{R}|Creature - Orc Pirate|3|3|Headstrong Brute can't block.$Headstrong Brute has menace as long as you control another Pirate.|
Hijack|Ixalan|148|C|{1}{R}{R}|Sorcery|||Gain control of target artifact or creature until end of turn. Untap it. It gains haste until end of turn.|
-Lightning Strike|Ixalan|149|U|{1}{R}|Instant|||Lightning Strike deals 3 damage to target creature or player.|
+Lightning Strike|Ixalan|149|U|{1}{R}|Instant|||Lightning Strike deals 3 damage to any target.|
Lightning-Rig Crew|Ixalan|150|U|{2}{R}|Creature - Goblin Pirate|0|5|{T}: Lightning-Rig Crew deals 1 damage to each opponent.$Whenever you cast a Pirate spell, untap Lightning-Rig Crew.|
-Makeshift Munitions|Ixalan|151|U|{1}{R}|Enchantment|||{1}, Sacrifice an artifact or creature: Makeshift Munitions deals 1 damage to target creature or player.|
+Makeshift Munitions|Ixalan|151|U|{1}{R}|Enchantment|||{1}, Sacrifice an artifact or creature: Makeshift Munitions deals 1 damage to any target.|
Nest Robber|Ixalan|152|C|{1}{R}|Creature - Dinosaur|2|1|Haste|
Otepec Huntmaster|Ixalan|153|U|{1}{R}|Creature - Human Shaman|1|2|Dinosaur spells you cast cost {1} less to cast.${T}: Target Dinosaur gains haste until end of turn.|
Rampaging Ferocidon|Ixalan|154|R|{2}{R}|Creature - Dinosaur|3|3|Menace$Players can't gain life.$Whenever another creature enters the battlefield, Rampaging Ferocidon deals 1 damage to that creature's controller.|
Raptor Hatchling|Ixalan|155|U|{1}{R}|Creature - Dinosaur|1|1|Enrage - Whenever Raptor Hatchling is dealt damage, create a 3/3 green Dinosaur creature token with trample.|
-Repeating Barrage|Ixalan|156|R|{1}{R}{R}|Sorcery|||Repeating Barrage deals 3 damage to target creature or player.$Raid — {3}{R}{R}: Return Repeating Barrage from your graveyard to your hand. Activate this ability only if you attacked with a creature this turn.|
+Repeating Barrage|Ixalan|156|R|{1}{R}{R}|Sorcery|||Repeating Barrage deals 3 damage to any target.$Raid — {3}{R}{R}: Return Repeating Barrage from your graveyard to your hand. Activate this ability only if you attacked with a creature this turn.|
Rigging Runner|Ixalan|157|U|{R}|Creature - Goblin Pirate|1|1|First strike$Raid/ — Rigging runner enters the battlefield with a +1/+1 counter on it if you attacked with a creature this turn.|
Rile|Ixalan|158|C|{R}|Sorcery|||Rile deals 1 damage to target creature you control. That creature gains trample until end of turn.$Draw a card.|
Rowdy Crew|Ixalan|159|M|{2}{R}{R}|Creature - Human Pirate|3|3|Trample$When Rowdy Crew enters the battlefield, draw three cards, then discard two cards at random. If two cards that share a card type are discarded this way, put two +1/+1 counters on Rowdy Crew.|
Rummaging Goblin|Ixalan|160|C|{2}{R}|Creature - Goblin Rogue|1|1|{t}, Discard a card: Draw a card.|
Star of Extinction|Ixalan|161|M|{5}{R}{R}|Sorcery|||Destroy target land. Star of Extinction deals 20 damage to each creature and each planeswalker.|
Storm Fleet Arsonist|Ixalan|162|U|{4}{R}|Creature - Orc Pirate|4|4|Raid - When Storm Fleet Arsonist enters the battlefield, if you attacked with a creature this turn, target opponent sacrifices a permanent.|
-Storm Fleet Pyromancer|Ixalan|163|C|{4}{R}|Creature - Human Pirate Wizard|3|2|Raid/ -- When Storm Fleet Pyromancer enters the battlefield, if you attacked with a creature this turn, Storm Fleet Pyromancer deals 2 damage to target creature or player.|
+Storm Fleet Pyromancer|Ixalan|163|C|{4}{R}|Creature - Human Pirate Wizard|3|2|Raid/ -- When Storm Fleet Pyromancer enters the battlefield, if you attacked with a creature this turn, Storm Fleet Pyromancer deals 2 damage to any target.|
Sun-Crowned Hunters|Ixalan|164|C|{4}{R}{R}|Creature - Dinosaur|5|4|Enrage — Whenever Sun-Crowned Hunters is dealt damage, it deals 3 damage to target opponent.|
Sunbird's Invocation|Ixalan|165|R|{5}{R}|Enchantment|||Whenever you cast a spell from your hand, reveal the top X cards of your library, where X is that spell's converted mana cost. You may cast a card revealed this way with converted mana cost X or less without paying its mana cost. Put the rest on the bottom of your library in a random order.|
Sure Strike|Ixalan|166|C|{1}{R}|Instant|||Target creature gets +3/+0 and gains first strike until end of turn.|
@@ -32501,11 +32501,11 @@ Swashbuckling|Ixalan|167|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchante
Thrash of Raptors|Ixalan|168|C|{3}{R}|Creature - Dinosaur|3|3|As long as you control another Dinosaur, Thrash of Raptors gets +2/+0 and has trample.|
Tilonalli's Knight|Ixalan|169|C|{1}{R}|Creature - Human Knight|2|2|Whenever Tilonalli's Knight attacks, if you control a Dinosaur, Tilonalli's Knight gets +1/+1 until end of turn.|
Tilonalli's Skinshifter|Ixalan|170|R|{2}{R}|Creature - Human Shaman|0|1|Whenever Tilonalli's Skinshifter attacks, it becomes a copy of another target nonlegendary attacking creature until end of turn.|
-Trove of Temptation|Ixalan|171|U|{3}{R}|Enchantment|||Each opponent must attack you or a planeswalker you control with at least one creature each combat if able.$At the beginning of your end step, create a colorless Treasure artifact token with "t, Sacrifice this artifact: Add one mana of any color to your mana pool.”|
-Unfriendly Fire|Ixalan|172|C|{4}{R}|Instant|||Unfriendly Fire deals 4 damage to target creature or player.|
+Trove of Temptation|Ixalan|171|U|{3}{R}|Enchantment|||Each opponent must attack you or a planeswalker you control with at least one creature each combat if able.$At the beginning of your end step, create a colorless Treasure artifact token with "t, Sacrifice this artifact: Add one mana of any color.”|
+Unfriendly Fire|Ixalan|172|C|{4}{R}|Instant|||Unfriendly Fire deals 4 damage to any target.|
Vance's Blasting Cannons|Ixalan|173a|R|{3}{R}|Legendary Enchantment|||At the beginning of your upkeep, exile the top card of your library. If it's a nonland card, you may cast that card this turn.$Whenever you cast your third spell in a turn, transform Vance's Blasting Cannons.|
-Spitfire Bastion|Ixalan|173b|R||Legendary Land|||{t}: Add {r}.${2}{r}, {t}: Spitfire Bastion deals 3 damage to target creature or player.|
-Wily Goblin|Ixalan|174|U|{R}{R}|Creature - Goblin Pirate|1|1|When Wily Goblin enters the battlefield, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."|
+Spitfire Bastion|Ixalan|173b|R||Legendary Land|||{t}: Add {r}.${2}{r}, {t}: Spitfire Bastion deals 3 damage to any target.|
+Wily Goblin|Ixalan|174|U|{R}{R}|Creature - Goblin Pirate|1|1|When Wily Goblin enters the battlefield, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color."|
Ancient Brontodon|Ixalan|175|C|{6}{G}{G}|Creature - Dinosaur|9|9||
Atzocan Archer|Ixalan|176|U|{2}{G}|Creature - Human Archer|1|4|Reach$When Atzocan Archer enters the battlefield, you may have it fight another target creature.|
Blinding Fog|Ixalan|177|C|{2}{G}|Instant|||Prevent all damage that would be dealt to creatures this turn. Creatures you control gain hexproof until end of turn.|
@@ -32518,7 +32518,7 @@ Crushing Canopy|Ixalan|183|C|{2}{G}|Instant|||Choose one --$* Destroy target cre
Deathgorge Scavenger|Ixalan|184|R|{2}{G}|Creature - Dinosaur|3|2|Whenever Deathgorge Scavenger enters the battlefield or attacks, you may exile target card from a graveyard. If a creature card is exiled this way, you gain 2 life. If a noncreature card is exiled this way, Deathgorge Scavenger gets +1/+1 until end of turn.|
Deeproot Champion|Ixalan|185|R|{1}{G}|Creature - Merfolk Shaman|1|1|Whenever you cast a noncreature spell, put a +1/+1 counter on Deeproot Champion.|
Deeproot Warrior|Ixalan|186|C|{1}{G}|Creature - Merfolk Warrior|2|2|Whenever Deeproot Warrior becomes blocked, it gets +1/+1 until end of turn.|
-Drover of the Mighty|Ixalan|187|U|{1}{G}|Creature - Human Druid|1|1|Drover of the Mighty gets +2/+2 as long as you control a Dinosaur.${T}: Add one mana of any color to your mana pool.|
+Drover of the Mighty|Ixalan|187|U|{1}{G}|Creature - Human Druid|1|1|Drover of the Mighty gets +2/+2 as long as you control a Dinosaur.${T}: Add one mana of any color.|
Emergent Growth|Ixalan|188|U|{3}{G}|Sorcery|||Target creature gets +5/+5 until end of turn and must be blocked this turn if able.|
Emperor's Vanguard|Ixalan|189|R|{3}{G}|Creature - Human Scout|4|3|Whenever Emperor's Vanguard deals combat damage to a player, it explores.|
Grazing Whiptail|Ixalan|190|C|{2}{G}{G}|Creature - Dinosaur|3|4|Reach (This creature can block creatures with flying.)/|
@@ -32530,7 +32530,7 @@ Jade Guardian|Ixalan|194|C|{3}{G}|Creature - Merfolk Shaman|2|2|Hexproof$When Ja
Jungle Delver|Ixalan|195|C|{G}|Creature - Merfolk Warrior|1|1|{3}{g}: Put a +1/+1 counter on Jungle Delver.|
Kumena's Speaker|Ixalan|196|U|{G}|Creature - Merfolk|1|1|Kumena's Speaker gets +1/+1 as long as you control another Merfolk or an Island.|
Merfolk Branchwalker|Ixalan|197|U|{1}{G}|Creature - Merfolk Scout|2|1|When Merfolk Branchwalker enters the battlefield, it explores. (Reveal the top card of your library. Put that card into your hand if it's a land. Otherwise, put a +1/+1 counter on this creature, then put that card back or put it into your graveyard.)/|
-New Horizons|Ixalan|198|C|{2}{G}|Enchantment - Aura|||Enchant land$When New Horizons enters the battlefield, put a +1/+1 counter on target creature you control.$Enchanted land has "{t]: Add two mana of any one color to your mana pool."|
+New Horizons|Ixalan|198|C|{2}{G}|Enchantment - Aura|||Enchant land$When New Horizons enters the battlefield, put a +1/+1 counter on target creature you control.$Enchanted land has "{t]: Add two mana of any one color."|
Old-Growth Dryads|Ixalan|199|R|{G}|Creature - Dryad|3|3|When Old-Growth Dryads enters the battlefield, each opponent may search his or her library for a basic land card, put it onto the battlefield tapped, then shuffle his or her library.|
Pounce|Ixalan|200|C|{1}{G}|Instant|||Target creature you control fights target creature you don't control.|
Ranging Raptors|Ixalan|201|U|{2}{G}|Creature - Dinosaur|2|3|Enrage - Whenever Ranging Raptors is dealt damage, you may search your library for a basic land card, put it onto the battlefield, then shuffle your library.|
@@ -32552,7 +32552,7 @@ Wildgrowth Walker|Ixalan|216|U|{1}{G}|Creature - Elemental|1|3|Whenever a creatu
Admiral Beckett Brass|Ixalan|217|M|{1}{U}{B}{R}|Legendary Creature - Human Pirate|3|3|Other Pirates you control get +1/+1.$At the beginning of your end step, gain control of target nonland permanent controlled by a player who was dealt damage by three or more Pirates this turn.|
Belligerent Brontodon|Ixalan|218|U|{5}{G}{W}|Creature - Dinosaur|4|6|Each creature you control assigns combats damage equal to its toughness rather than its power.|
Call to the Feast|Ixalan|219|U|{2}{W}{B}|Sorcery|||Create three 1/1 white Vampire creature tokens with lifelink.|
-Deadeye Plunderers|Ixalan|220|U|{3}{U}{B}|Creature - Human Pirate|3|3|Deadeye Plunderers gets +1/+1 for each artifact you control.${2}{U}{B}: Create a colorless artifact token named Treasure with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."|
+Deadeye Plunderers|Ixalan|220|U|{3}{U}{B}|Creature - Human Pirate|3|3|Deadeye Plunderers gets +1/+1 for each artifact you control.${2}{U}{B}: Create a colorless artifact token named Treasure with "{T}, Sacrifice this artifact: Add one mana of any color."|
Dire Fleet Captain|Ixalan|221|U|{B}{R}|Creature - Orc Pirate|2|2|Whenever Dire Fleet Captain attacks, it gets +1/+1 until end of turn for each other attacking Pirate.|
Gishath, Sun's Avatar|Ixalan|222|M|{5}{R}{G}{W}|Legendary Creature - Dinosaur Avatar|7|6|Trample, vigilance, haste$Whenever Gishath, Sun's Avatar deals combat damage to a player, reveal that many cards from the top of your library. Put any number of Dinosaur creature cards from among them onto the battlefield and the rest on the bottom of your library in a random order.|
Hostage Taker|Ixalan|223|R|{2}{U}{B}|Creature - Human Pirate|2|3|When Hostage Taker enters the battlefield, exile another target artifact or creature until Hostage Taker leaves the battlefield. You may cast that card as long as it remains exiled, and you may spend mana as though it were mana of any type to cast that spell.|
@@ -32569,24 +32569,24 @@ Cobbled Wings|Ixalan|233|C|{2}|Artifact - Equipment|||Equipped creature has flyi
Conqueror's Galleon|Ixalan|234a|R|{4}|Artifact - Vehicle|2|10|When Conqueror's Galleon attacks, exile it at the end of combat, then return it to the battlefield transformed under your control.$Crew 4|
Conqueror's Foothold|Ixalan|234b|R||Land|||{T}: Add {C}.${2}, {T}: Draw a card, then discard a card.${4}, {T}: Draw a card.${6}, {T}: Return target card from your graveyard to your hand.|
Dowsing Dagger|Ixalan|235a|R|{2}|Artifact - Equipment|||When Dowsing Dagger enters the battlefield, target opponent creates two 0/2 green Plant creature tokens with defender.$Equipped creature gets +2/+1.$Whenever equipped creature deals combat damage to a player, you may transform Dowsing Dagger.$Equip 2|
-Lost Vale|Ixalan|235b|R||Land|||T: Add three mana of any one color to your mana pool.|
+Lost Vale|Ixalan|235b|R||Land|||T: Add three mana of any one color.|
Dusk Legion Dreadnought|Ixalan|236|U|{5}|Artifact - Vehicle|4|6|Vigilance$Crew 2|
-Elaborate Firecannon|Ixalan|237|U|{2}|Artifact|||Elaborate Firecannon doesn't untap during your untap step.${4}, {t}: Elaborate Firecannon deals 2 damage to target creature or player.$At the beginning of your upkeep, you may discard a card. If you do, untap Elaborate Firecannon.|
+Elaborate Firecannon|Ixalan|237|U|{2}|Artifact|||Elaborate Firecannon doesn't untap during your untap step.${4}, {t}: Elaborate Firecannon deals 2 damage to any target.$At the beginning of your upkeep, you may discard a card. If you do, untap Elaborate Firecannon.|
Fell Flagship|Ixalan|238|R|{3}|Artifact - Vehicle|||Pirates you control get +1/+0.$Whenever Fell Flagship deals combat damage to a player, that player discards a card.$Crew 3|
Gilded Sentinel|Ixalan|239|C|{4}|Artifact Creature - Golem||||
Hierophant's Chalice|Ixalan|240|C|{3}|Artifact|||When Hierophant's Chalice enters the battlefield, target opponent loses 1 life and you gain 1 life.${t}: Add {c}.|
-Pillar of Origins|Ixalan|241|U|{2}|Artifact|||As Pillar of Origins enters the battlefield, choose a creature type.${T}: Add one mana of any color to your mana pool. Spend this mana only to cast a creature spell if the chosen type.|
+Pillar of Origins|Ixalan|241|U|{2}|Artifact|||As Pillar of Origins enters the battlefield, choose a creature type.${T}: Add one mana of any color. Spend this mana only to cast a creature spell if the chosen type.|
Pirate's Cutlass|Ixalan|242|C|{3}|Artifact - Equipment|||When Pirate's Cutlass enters the battlefield, attach it to target Pirate you control.$Equipped creature gets +2/+1.$Equip 2|
Primal Amulet|Ixalan|243a|R|{4}|Artifact|||Instant and sorcery spells you cast cost {1} less to cast.$Whenever you cast an instant or sorcery spell, put a charge counter on Primal Amulet. Then if there are four or more charge counters on it, you may remove those counters and transform it.|
-Primal Wellspring|Ixalan|243b|R||Land|||Add one mana of any color to your mana pool. When that mana is spent to cast an instant or sorcery spell, copy that spell and you may choose new targets for the copy.|
-Prying Blade|Ixalan|244|C|{1}|Artifact - Equipment|||Equipped creature gets +1/+0.$Whenever equipped creature deals combat damage to a player, create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color to your mana pool."$Equip {2}|
+Primal Wellspring|Ixalan|243b|R||Land|||Add one mana of any color. When that mana is spent to cast an instant or sorcery spell, copy that spell and you may choose new targets for the copy.|
+Prying Blade|Ixalan|244|C|{1}|Artifact - Equipment|||Equipped creature gets +1/+0.$Whenever equipped creature deals combat damage to a player, create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color."$Equip {2}|
Sentinel Totem|Ixalan|245|U|{1}|Artifact|||When Sentinel Totem enters the battlefield, scry 1.${T}, Exile Sentinel Totem: Exile all cards from all graveyards.|
Shadowed Caravel|Ixalan|246|R|{2}|Artifact - Vehicle|2|2|Whenever a creature you control explores, put a +1/+1 counter on Shadowed Caravel.$Crew 2|
Sleek Schooner|Ixalan|247|U|{3}|Artifact - Vehicle|4|3|Crew 1|
Sorcerous Spyglass|Ixalan|248|R|{2}|Artifact|||As Sorcerous Spyglass enters the battlefield, look at an opponent's hand, then choose any card name.$Activated abilities of sources with the chosen name can't be activated unless they're mana abilities.|
Thaumatic Compass|Ixalan|249a|R|{2}|Artifact|||{3}, {T}: Search your library for a basic land card, reveal it, put it into your hand, then shuffle your library.$At the beginning of your end step, if you control seven or more lands, transform Thaumatic Compass.|
Spires of Orazca|Ixalan|249b|R||Land|||{T}: Add {C}.${T}: Untap target attacking creature an opponent controls and remove it from combat.|
-Treasure Map|Ixalan|250a|R|{2}|Artifact|||{1}, {T}: Scry 1. Put a landmark counter on Treasure Map. Then if there are three or more landmark counters on it, remove those counters, transform Treasure Map, and create three colorless Treasure artifact tokens with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."|
+Treasure Map|Ixalan|250a|R|{2}|Artifact|||{1}, {T}: Scry 1. Put a landmark counter on Treasure Map. Then if there are three or more landmark counters on it, remove those counters, transform Treasure Map, and create three colorless Treasure artifact tokens with "{T}, Sacrifice this artifact: Add one mana of any color."|
Treasure Cove|Ixalan|250b|R||Land|||{T}: Add {C}.${T}, Sacrifice a Treasure: Draw a card.|
Vanquisher's Banner|Ixalan|251|R|{5}|Artifact|||As Vanquisher's Banner enters the battlefield, choose a creature type.$Creatures you control of the chosen type get +1/+1.$Whenever you cast a creature spell of the chosen type, draw a card.|
Dragonskull Summit|Ixalan|252|R||Land|||Dragonskull Summit enters the battlefield tapped unless you control a Swamp or a Mountain.${T}: Add {B} or {R}.|
@@ -32595,8 +32595,8 @@ Field of Ruin|Ixalan|254|U||Land|||{T}: Add {C}.${2}, {T}, Sacrifice Field of Ru
Glacial Fortress|Ixalan|255|R||Land|||Glacial Fortress enters the battlefield tapped unless you control a Plains or an Island.${T}: Add {W} or {U}.|
Rootbound Crag|Ixalan|256|R||Land|||Rootbound Crag enters the battlefield tapped unless you control a Mountain or a Forest.${T}: Add {R} or {G}.|
Sunpetal Grove|Ixalan|257|R||Land|||Sunpetal Grove enters the battlefield tapped unless you control a Forest or a Plains.${T}: Add {G} or {W}.|
-Unclaimed Territory|Ixalan|258|U||Land|||As Unclaimed Territory enters the battlefield, choose a creature type.${T}: Add {C}.${T}: Add one mana of any color to your mana pool. Spend this mana only to cast a creature spell of the chosen type.|
-Unknown Shores|Ixalan|259|C||Land|||{t}: Add {c}.${1}, {t}: Add one mana of any color to your mana pool.|
+Unclaimed Territory|Ixalan|258|U||Land|||As Unclaimed Territory enters the battlefield, choose a creature type.${T}: Add {C}.${T}: Add one mana of any color. Spend this mana only to cast a creature spell of the chosen type.|
+Unknown Shores|Ixalan|259|C||Land|||{t}: Add {c}.${1}, {t}: Add one mana of any color.|
Plains|Ixalan|260|L||Basic Land - Plains|||{T}: Add {W}.|
Plains|Ixalan|261|L||Basic Land - Plains|||{T}: Add {W}.|
Plains|Ixalan|262|L||Basic Land - Plains|||{T}: Add {W}.|
@@ -32643,8 +32643,8 @@ Temporal Fissure|Duel Decks: Mind vs. Might|12|C|{4}{U}|Sorcery|||Return target
The Unspeakable|Duel Decks: Mind vs. Might|13|R|{6}{U}{U}{U}|Legendary Creature - Spirit|6|7|Flying, trample$Whenever The Unspeakable deals combat damage to a player, you may return target Arcane card from your graveyard to your hand.|
Desperate Ritual|Duel Decks: Mind vs. Might|14|U|{1}{R}|Instant - Arcane|||Add {R}{R}{R}.$Splice onto Arcane {1}{R}|
Empty the Warrens|Duel Decks: Mind vs. Might|15|R|{3}{R}|Sorcery|||Create two 1/1 red Goblin creature tokens.$Storm|
-Grapeshot|Duel Decks: Mind vs. Might|16|C|{1}{R}|Sorcery|||Grapeshot deals 1 damage to target creature or player.$Storm|
-Rift Bolt|Duel Decks: Mind vs. Might|17|C|{2}{R}|Sorcery|||Rift Bolt deals 3 damage to target creature or player.$Suspend 1—{R}|
+Grapeshot|Duel Decks: Mind vs. Might|16|C|{1}{R}|Sorcery|||Grapeshot deals 1 damage to any target.$Storm|
+Rift Bolt|Duel Decks: Mind vs. Might|17|C|{2}{R}|Sorcery|||Rift Bolt deals 3 damage to any target.$Suspend 1—{R}|
Shivan Meteor|Duel Decks: Mind vs. Might|18|U|{3}{R}{R}|Sorcery|||Shivan Meteor deals 13 damage to target creature.$Suspend 2—{1}{R}{R}|
Volcanic Vision|Duel Decks: Mind vs. Might|19|R|{5}{R}{R}|Sorcery|||Return target instant or sorcery card from your graveyard to your hand. Volcanic Vision deals damage equal to that card's converted mana cost to each creature your opponents control. Exile Volcanic Vision.|
Young Pyromancer|Duel Decks: Mind vs. Might|20|U|{1}{R}|Creature - Human Shaman|2|1|Whenever you cast an instant or sorcery spell, create a 1/1 red Elemental creature token.|
@@ -32662,11 +32662,11 @@ Mountain|Duel Decks: Mind vs. Might|31|L||Basic Land - Mountain|||{T}: Add {R}.|
Mountain|Duel Decks: Mind vs. Might|32|L||Basic Land - Mountain|||{T}: Add {R}.|
Mountain|Duel Decks: Mind vs. Might|33|L||Basic Land - Mountain|||{T}: Add {R}.|
Lovisa Coldeyes|Duel Decks: Mind vs. Might|34|M|{3}{R}{R}|Legendary Creature - Human|3|3|Each creature that's a Barbarian, a Warrior, or a Berserker gets +2/+2 and has haste.|
-Beacon of Destruction|Duel Decks: Mind vs. Might|35|R|{3}{R}{R}|Instant|||Beacon of Destruction deals 5 damage to target creature or player. Shuffle Beacon of Destruction into its owner's library.|
+Beacon of Destruction|Duel Decks: Mind vs. Might|35|R|{3}{R}{R}|Instant|||Beacon of Destruction deals 5 damage to any target. Shuffle Beacon of Destruction into its owner's library.|
Boldwyr Intimidator|Duel Decks: Mind vs. Might|36|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.|
-Firebolt|Duel Decks: Mind vs. Might|37|C|{R}|Sorcery|||Firebolt deals 2 damage to target creature or player.$Flashback {4}{R}|
+Firebolt|Duel Decks: Mind vs. Might|37|C|{R}|Sorcery|||Firebolt deals 2 damage to any target.$Flashback {4}{R}|
Gorehorn Minotaurs|Duel Decks: Mind vs. Might|38|C|{2}{R}{R}|Creature - Minotaur Warrior|3|3|Bloodthirst 2|
-Kamahl, Pit Fighter|Duel Decks: Mind vs. Might|39|R|{4}{R}{R}|Legendary Creature - Human Barbarian|6|1|Haste${T}: Kamahl, Pit Fighter deals 3 damage to target creature or player.|
+Kamahl, Pit Fighter|Duel Decks: Mind vs. Might|39|R|{4}{R}{R}|Legendary Creature - Human Barbarian|6|1|Haste${T}: Kamahl, Pit Fighter deals 3 damage to any target.|
Kruin Striker|Duel Decks: Mind vs. Might|40|C|{1}{R}|Creature - Human Warrior|2|1|Whenever another creature enters the battlefield under your control, Kruin Striker gets +1/+0 and gain trample until end of turn.|
Zo-Zu the Punisher|Duel Decks: Mind vs. Might|41|R|{1}{R}{R}|Legendary Creature - Goblin Warrior|2|2|Whenever a land enters the battlefield, Zo-Zu the Punisher deals 2 damage to that land's controller.|
Ambassador Oak|Duel Decks: Mind vs. Might|42|C|{3}{G}|Creature - Treefolk Warrior|3|3|When Ambassador Oak enters the battlefield, create a 1/1 green Elf Warrior creature token.|
@@ -32693,7 +32693,7 @@ Mountain|Duel Decks: Mind vs. Might|62|L||Basic Land - Mountain|||{T}: Add {R}.|
Forest|Duel Decks: Mind vs. Might|63|L||Basic Land - Forest|||{T}: Add {G}.|
Forest|Duel Decks: Mind vs. Might|64|L||Basic Land - Forest|||{T}: Add {G}.|
Forest|Duel Decks: Mind vs. Might|65|L||Basic Land - Forest|||{T}: Add {G}.|
-Chandra, Gremlin Wrangler|Heroes of the Realm|1|M|{2}{R}{R}|Legendary Planeswalker - Chandra|3||+1: Create a 2/2 red Gremlin creature token.$-2:Chandra, Gremlin Wrangler deals X damage to target creature or player, where X is the number of Gremlins you control.|
+Chandra, Gremlin Wrangler|Heroes of the Realm|1|M|{2}{R}{R}|Legendary Planeswalker - Chandra|3||+1: Create a 2/2 red Gremlin creature token.$-2:Chandra, Gremlin Wrangler deals X damage to any target, where X is the number of Gremlins you control.|
Dungeon Master|Heroes of the Realm|1|M|{2}{W}{U}|Legendary Planeswalker - Dungeon Master|||+1: Target opponent creates a 1/1 black Skeleton creature token with “When this creature dies, each opponent loses 2 life.”$+1: Roll a d20. If you roll a 1, skip your next turn. If you roll a 12 or higher, draw a card.$-6: You get an adventuring party. (Your party is a 3/3 red Fighter with first strike, a 1/1 white Cleric with lifelink, a 2/2 black Rogue with hexproof, and a 1/1 blue Wizard with flying.)|
Nira, Hellkite Duelist|Heroes of the Realm|3|M|{W}{U}{B}{R}{G}|Legendary Creature — Dragon|6|6|Flash$Flying, trample, haste$When Nira, Hellkite Duelist enters the battlefield, the next time you would lose the game this turn, instead draw three cards and your life total becomes 5.|
Baffling End|Rivals of Ixalan|1|U|{1}{W}|Enchantment|||When Baffling End enters the battlefield, exile target creature an opponent controls with converted mana cost 3 or less.$When Baffling End leaves the battlefield, target opponent create a 3/3 green Dinosaur creature token with trample.|
@@ -32734,7 +32734,7 @@ Curious Obsession|Rivals of Ixalan|35|U|{U}|Enchantment - Aura|||Enchant creatur
Deadeye Rig-Hauler|Rivals of Ixalan|36|C|{3}{U}|Creature - Human Pirate|3|2|Raid— When Deadeye Rig-Hauler enters the battlefield, if you attacked with a creature this turn, you may return target creature to its owner's hand.|
Expel From Orazca|Rivals of Ixalan|37|U|{1}{U}|Instant|||Ascend (If you control ten or more permanents, you get the city's blessing for the rest of the game.)$Return target nonland permanent to its owner's hand. If you have the city's blessing, you may put that permanent on top of its owner's library instead.|
Flood of Recollection|Rivals of Ixalan|38|U|{U}{U}|Sorcery|||Return target instant or sorcery card from your graveyard to your hand. Exile Flood of Recollection.|
-Hornswoggle|Rivals of Ixalan|39|U|{2}{U}|Instant|||Counter target creature spell. You create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."|
+Hornswoggle|Rivals of Ixalan|39|U|{2}{U}|Instant|||Counter target creature spell. You create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color."|
Induced Amnesia|Rivals of Ixalan|40|R|{2}{U}|Enchantment|||When Induced Amnesia enters the battlefield, target player exiles all the cards in his or her hand face down, then draws that many cards.$When Induced Amnesia is put into a graveyard from the battlefield, return the exiled cards to their owner's hand.|
Kitesail Corsair|Rivals of Ixalan|41|C|{1}{U}|Creature - Human Pirate|2|1|Kitesail Corsair has flying as long as it's attacking.|
Kumena's Awakening|Rivals of Ixalan|42|R|{2}{U}{U}|Enchantment|||Ascend (If you control ten or more permenants, you get the city's blessing for the rest of the game.)$At the beginning of your upkeep, each player draws a card. If you have the city's blessing, instead only you draw a card.|
@@ -32744,7 +32744,7 @@ Nezahal, Primal Tide|Rivals of Ixalan|45|M|{5}{U}{U}|Legendary Creature - Elder
Return to the Wind|Rivals of Ixalan|46|R|{2}{U}|Instant|||Exile target nonland permanent. For as long as that card remains exiled, its owner may cast it without paying its mana cost.|
River Darter|Rivals of Ixalan|47|C|{2}{U}|Creature - Merfolk Warrior|2|3|River Darter can't be blocked by Dinosaurs.|
Riverwise Augur|Rivals of Ixalan|48|U|{3}{U}|Creature - Merfolk Wizard|2|2|When Riverwise Augur enters the battlefield, draw three cards, then put two cards from your hand on top of your library in any order. |
-Sailor of Means|Rivals of Ixalan|49|C|{2}{U}|Creature - Human Pirate|1|4|When Sailor of Means enters the battlefield, create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color to your mana pool." |
+Sailor of Means|Rivals of Ixalan|49|C|{2}{U}|Creature - Human Pirate|1|4|When Sailor of Means enters the battlefield, create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color." |
Sea Legs|Rivals of Ixalan|50|C|{U}|Enchantment - Aura|||Flash$Enchant creature$Enchanted creature gets +0/+2 as long as it's a Pirate. Otherwise, it gets -2/-0.|
Seafloor Oracle|Rivals of Ixalan|51|R|{2}{U}{U}|Creature - Merfolk Wizard|2|3|Whenever a Merfolk you controls deals combat damage to a player, draw a card.|
Secrets of the Golden City|Rivals of Ixalan|52|C|{1}{U}{U}|Sorcery|||Ascend (If you control ten or more permanents, you get the city's blessing for the rest of the game.)$Draw two cards. If you have the city's blessing, draw three cards instead.|
@@ -32776,7 +32776,7 @@ Mastermind's Acquisition|Rivals of Ixalan|77|R|{2}{B}{B}|Sorcery|||Choose one
Mausoleum Harpy|Rivals of Ixalan|78|U|{4}{B}|Creature - Harpy|3|3|Flying$Ascend (If you control ten or more permanents, you get the city's blessing for the rest of the game.)$Whenever another creature you control dies, if you have the city's blessing, put a +1/+1 counter on Mausoleum Harpy. |
Moment of Craving|Rivals of Ixalan|79|C|{1}{B}|Instant|||Target creature gets -2/-2 until end of turn. You gain 2 life.|
Oathsworn Vampire|Rivals of Ixalan|80|U|{1}{B}|Creature - Vampire Knight|2|2|Oathsworn Vampire enters the battlefield tapped.$You may cast Oathsworn Vampire from your graveyard if you gained life this turn.|
-Pitiless Plunderer|Rivals of Ixalan|81|U|{3}{B}|Creature - Human Pirate|1|4|Whenever another creature you control dies, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."|
+Pitiless Plunderer|Rivals of Ixalan|81|U|{3}{B}|Creature - Human Pirate|1|4|Whenever another creature you control dies, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color."|
Ravenous Chupacabra|Rivals of Ixalan|82|U|{2}{B}{B}|Creature - Beast Horror|2|2|When Ravenous Chupacabra enters the battlefield, destroy target creature an opponent controls.|
Reaver Ambush|Rivals of Ixalan|83|U|{2}{B}|Instant|||Exile target creature with power 3 or less.|
Recover|Rivals of Ixalan|84|C|{2}{B}|Sorcery|||Return target creature card from your graveyard to your hand.$Draw a card.|
@@ -32789,14 +32789,14 @@ Vona's Hunger|Rivals of Ixalan|90|R|{2}{B}|Instant|||Ascend (If you control t
Voracious Vampire|Rivals of Ixalan|91|C|{2}{B}|Creature - Vampire Knight|2|2|Menace$When Voracious Vampire enters the battlefield, target Vampire you control gets +1/+1 and gains menace until end of turn.|
Blood Sun|Rivals of Ixalan|92|R|{2}{R}|Enchantment|||When Blood Sun enters the battlefield, draw a card.$All lands lose all abilities except mana abilities.|
Bombard|Rivals of Ixalan|93|C|{2}{R}|Instant|||Bombard deals 4 damage to target creature.|
-Brass's Bounty|Rivals of Ixalan|94|R|{6}{R}|Sorcery|||For each land you control, create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color to your mana pool."|
-Brazen Freebooter|Rivals of Ixalan|95|C|{3}{R}|Creature - Human Pirate|3|3|When Brazen Freebooter enters the battlefield, create a colorless Treasure artifact token with "{T}, sacrifice this artifact: Add one mana of any color to your mana pool."|
+Brass's Bounty|Rivals of Ixalan|94|R|{6}{R}|Sorcery|||For each land you control, create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color."|
+Brazen Freebooter|Rivals of Ixalan|95|C|{3}{R}|Creature - Human Pirate|3|3|When Brazen Freebooter enters the battlefield, create a colorless Treasure artifact token with "{T}, sacrifice this artifact: Add one mana of any color."|
Buccaneer's Bravado|Rivals of Ixalan|96|C|{1}{R}|Instant|||Choose one —$• Target creature gets +1/+1 and gains first strike until end of turn.$• Target Pirate gets +1/+1 and gains double strike until end of turn.|
Charging Tuskodon|Rivals of Ixalan|97|U|{3}{R}{R}|Creature - Dinosaur|4|4|Trample$If Charging Tuskodon would deal combat damage to a player, it deals double that damage to that player instead.|
Daring Buccaneer|Rivals of Ixalan|98|U|{R}|Creature - Human Pirate|2|2|As an additional cost to cast Daring Buccaneer, reveal a Pirate card from your hand or pay {2}.|
Dire Fleet Daredevil|Rivals of Ixalan|99|R|{1}{R}|Creature - Human Pirate|2|1|First strike$When Dire Fleet Daredevil enters the battlefield, exile target instant or sorcery card from an opponent's graveyard. You may cast that card this turn, and you may spend mana as though it were mana of any type to cast that spell. If that card would be put into a graveyard this turn, exile it instead.|
Etali, Primal Storm|Rivals of Ixalan|100|R|{4}{R}{R}|Legendary Creature - Elder Dinosaur|6|6|Whenever Etali, Primal Storm attacks, exile the top card of each player's library, then you may cast any number of nonland cards exiled this way without paying their mana costs.|
-Fanatical Firebrand|Rivals of Ixalan|101|C|{R}|Creature - Goblin Pirate|1|1|Haste${t}, Sacrifice Fanatical Firebrand: It deals one damage to target creature or player.|
+Fanatical Firebrand|Rivals of Ixalan|101|C|{R}|Creature - Goblin Pirate|1|1|Haste${t}, Sacrifice Fanatical Firebrand: It deals one damage to any target.|
Forerunner of the Empire|Rivals of Ixalan|102|U|{3}{R}|Creature - Human Soldier|1|3|When Forerunner of the Empire enters the battlefield, you may search your library for a Dinosaur card, reveal it, then shuffle your library and put that card on top of it.$Whenever a Dinosaur enters the battlefield under your control, you may have Forerunner of the Empire deal 1 damage to each creature.|
Form of the Dinosaur|Rivals of Ixalan|103|R|{4}{R}{R}|Enchantment|||When Form of the Dinosaur enters the battlefield, your life total becomes 15.$At the beginning of your upkeep, Form of the Dinosaur deals 15 damage to target creature an opponent controls and that creature deals damage equal to its power to you.|
Frilled Deathspitter|Rivals of Ixalan|104|C|{2}{R}|Creature - Dinosaur|3|2|Enrage — Whenever Frilled Deathspitter is dealt damage, it deals 2 damage to target opponent.|
@@ -32804,7 +32804,7 @@ Goblin Trailblazer|Rivals of Ixalan|105|C|{1}{R}|Creature - Goblin Pirate|2|1|Me
Mutiny|Rivals of Ixalan|106|C|{R}|Sorcery|||Target creature an opponent controls deals damage equal to its power to another target creature that player controls.|
Needletooth Raptor|Rivals of Ixalan|107|U|{3}{R}|Creature - Dinosaur|2|2|<Enrage> - Whenever Needletooth Raptor is dealt damage, it deals 5 damage to target creature an opponent controls.|
Orazca Raptor|Rivals of Ixalan|108|C|{2}{R}{R}|Creature - Dinosaur|3|4||
-Pirate's Pillage|Rivals of Ixalan|109|U|{3}{R}|Sorcery|||As an additional cost to cast Pirate's Pillage, discard a card.$Draw two cards and create two colorless Treasure artifacts with "{t}, Sacrifice this artifact: Add one mana of any color to your mana pool."|
+Pirate's Pillage|Rivals of Ixalan|109|U|{3}{R}|Sorcery|||As an additional cost to cast Pirate's Pillage, discard a card.$Draw two cards and create two colorless Treasure artifacts with "{t}, Sacrifice this artifact: Add one mana of any color."|
Reckless Rage|Rivals of Ixalan|110|U|{R}|Instant|||Reckless Rage deals 4 damage to target creature you don't control and 2 damage to target creature you control.|
Rekindling Phoenix|Rivals of Ixalan|111|M|{2}{R}{R}|Creature - Phoenix|4|3|Flying$When Rekindling Phoenix dies, create a 0/1 red Elemental creature token with "At the beginning of your upkeep, sacrifice this creature and return target card named Rekindling Phoenix from your graveyard to the battlefield. It gains haste until end of turn."|
See Red|Rivals of Ixalan|112|U|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+1 and has first strike.$At the beginning of your end step, if you didn't attack with a creature this turn, sacrifice See Red.|
@@ -32854,34 +32854,34 @@ Deadeye Brawler|Rivals of Ixalan|155|U|{2}{U}{B}|Creature - Human Pirate|2|4|Dea
Dire Fleet Neckbreaker|Rivals of Ixalan|156|U|{2}{B}{R}|Creature - Orc Pirate|3|2|Attacking Pirates you control get +2/+0.|
Elenda, the Dusk Rose|Rivals of Ixalan|157|M|{2}{W}{B}|Legendary Creature - Vampire Knight|1|1|Lifelink$Whenever another creature dies, put a +1/+1 counter on Elenda, the Dusk Rose.$When Elenda dies, create X 1/1 white Vampire creature tokens with lifelink, where X is Elenda's power|
Hadana's Climb|Rivals of Ixalan|158|R|{1}{G}{U}|Legendary Enchantment|||At the beginning of combat on your turn, put a +1/+1 counter on target creature you control. Then if that creature has three or more +1/+1 counters on it, transform Hadana's Climb.|
-Winged Temple of Orazca|Rivals of Ixalan|158|R||Legendary Land|||(Transforms from Hadana's Climb.)${T}: Add one mana of any color to your mana pool.${1}{G}{U}, {T}: Target creature you control gains flying and gets +X/+X until end of turn, where X is its power.|
+Winged Temple of Orazca|Rivals of Ixalan|158|R||Legendary Land|||(Transforms from Hadana's Climb.)${T}: Add one mana of any color.${1}{G}{U}, {T}: Target creature you control gains flying and gets +X/+X until end of turn, where X is its power.|
Huatli, Radiant Champion|Rivals of Ixalan|159|M|{2}{G}{W}|Legendary Planeswalker - Huatli|3|+1: Put a loyalty counter on Huatli, Radiant Champion for each creature you control.$-1: Target creature gets +X/+X until end of turn, where X is the number of creatures you control.$-8: You get an emblem with "Whenever a creature enters the battlefield under your control, you may draw a card."|
Journey to Eternity|Rivals of Ixalan|160|R|{1}{B}{G}|Legendary Enchantment - Aura|||Enchant creature you control$When enchanted creature dies, return it to the battlefield under your control, then return Journey to Eternity to the battlefield transformed under your control.|
-Atzal, Cave of Eternity|Rivals of Ixalan|160|R||Legendary Land|||(Transforms from Journey to Eternity.)${t}: Add one mana of any color to your mana pool.${3}{B}{G}, {t}: Return target creature card from your graveyard to the battlefield.|
+Atzal, Cave of Eternity|Rivals of Ixalan|160|R||Legendary Land|||(Transforms from Journey to Eternity.)${t}: Add one mana of any color.${3}{B}{G}, {t}: Return target creature card from your graveyard to the battlefield.|
Jungle Creeper|Rivals of Ixalan|161|U|{1}{B}{G}|Creature - Elemental|3|3|{3}{B}{G}: Return Jungle Creeper from your graveyard to your hand.|
Kumena, Tyrant of Orazca|Rivals of Ixalan|162|M|{1}{G}{U}|Legendary Creature - Merfolk Shaman|2|4|Tap another untapped Merfolk you control: Kumena, Tyrant of Orzaca can't be blocked this turn.$Tap three untapped Merfolk you control: Draw a card.$Tap five untapped Merfolk you control: Put a +1/+1 counter on each Merfolk you control.|
Legion Lieutenant|Rivals of Ixalan|163|U|{W}{B}|Creature - Vampire Knight|2|2|Other Vampires you control get +1/+1.|
Merfolk Mistbinder|Rivals of Ixalan|164|U|{G}{U}|Creature - Merfolk Shaman|2|2|Other Merfolk you control get +1/+1.|
Path of Mettle|Rivals of Ixalan|165|R|{R}{W}|Legendary Enchantment|||When Path of Mettle enters the battlefield, it deals 1 damage to each creature that doesn't have first strike, double strike, vigilance, or haste.$Whenever you attack with at least two creatures that have first strike, double strike, vigilance, and/or haste, transform Path of Mettle.|
-Metzali, Tower of Triumph|Rivals of Ixalan|165|R||Legendary Land|||(Transforms from Path of Mettle.)${t}: Add one mana of any color to your mana pool.${1}{R}, {T}: Metzali, Tower of Triumph deals 2 damage to each opponent.${2}{W}, {T}: Choose a creature at random that attacked this turn. Destroy that creature.|
+Metzali, Tower of Triumph|Rivals of Ixalan|165|R||Legendary Land|||(Transforms from Path of Mettle.)${t}: Add one mana of any color.${1}{R}, {T}: Metzali, Tower of Triumph deals 2 damage to each opponent.${2}{W}, {T}: Choose a creature at random that attacked this turn. Destroy that creature.|
Profane Procession|Rivals of Ixalan|166|R|{1}{W}{B}|Legendary Enchantment|||{3}{W}{B}: Exile target creature. Then if there are three or more cards exiled with Profane Procession, transform it.|
-Tomb of the Dusk Rose|Rivals of Ixalan|166|R||Legendary Land|||(Transforms from Profane Procession.)${T}: Add one mana of any color to your mana pool.${2}{W}{B},{T} : Put a creature card exiled with this permanent onto the battlefield under your control.|
+Tomb of the Dusk Rose|Rivals of Ixalan|166|R||Legendary Land|||(Transforms from Profane Procession.)${T}: Add one mana of any color.${2}{W}{B},{T} : Put a creature card exiled with this permanent onto the battlefield under your control.|
Protean Raider|Rivals of Ixalan|167|R|{1}{U}{R}|Creature - Shapeshifter Pirate|2|2|Raid — If you attacked with a creature this turn, you may have Protean Raider enter the battlefield as a copy of any creature on the battlefield.|
-Raging Regisaur|Rivals of Ixalan|168|U|{2}{R}{G}|Creature - Dinosaur|4|4|Whenever Raging Regisaur attacks, it deals 1 damage to target creature or player.|
+Raging Regisaur|Rivals of Ixalan|168|U|{2}{R}{G}|Creature - Dinosaur|4|4|Whenever Raging Regisaur attacks, it deals 1 damage to any target.|
Relentless Raptor|Rivals of Ixalan|169|U|{R}{W}|Creature - Dinosaur|3|3|Vigilance$Relentless Raptor attacks or blocks each combat if able.|
Resplendent Griffin|Rivals of Ixalan|170|U|{1}{W}{U}|Creature - Griffin|2|2|Flying$Ascend (If you control ten or more permenants, you get the city's blessing for the rest of the game.)$Whenever Resplendent Griffin attacks, if you have the city's blessing, put a +1/+1 counter on it.|
Siegehorn Ceratops|Rivals of Ixalan|171|R|{G}{W}|Creature - Dinosaur|2|2|Enrage — Whenever Siegehorn Ceratops is dealt damage, put two +1/+1 counters on it. (It must survive the damage to get the counters.)|
Storm Fleet Sprinter|Rivals of Ixalan|172|U|{1}{U}{R}|Creature - Human Pirate|2|2|Haste$Storm Fleet Sprinter can't be blocked.|
-Storm the Vault|Rivals of Ixalan|173|R|{2}{U}{R}|Legendary Enchantment|||Whenever one or more creatures you control deal combat damage to a player, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."$At the beginning of your end step, if you control five or more artifacts, transform Storm the Vault.|
-Vault of Catlacan|Rivals of Ixalan|173|R||Legendary Land|||(Transforms from Storm the Vault.)${T}: Add one mana of any color to your mana pool.${T}: Add {U} for each artifact you control.|
+Storm the Vault|Rivals of Ixalan|173|R|{2}{U}{R}|Legendary Enchantment|||Whenever one or more creatures you control deal combat damage to a player, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color."$At the beginning of your end step, if you control five or more artifacts, transform Storm the Vault.|
+Vault of Catlacan|Rivals of Ixalan|173|R||Legendary Land|||(Transforms from Storm the Vault.)${T}: Add one mana of any color.${T}: Add {U} for each artifact you control.|
Zacama, Primal Calamity|Rivals of Ixalan|174|M|{6}{R}{G}{W}|Legendary Creature - Elder Dinosaur|9|9|Vigilance, reach, trample$When Zacama, Primal Calamity enters the battlefield, if you cast it, untap all lands you control.${2}{R}: Zacama deals 3 damage to target creature.${2}{G}: Destroy target artifact or enchantment.${2}{W}: You gain 3 life.|
Awakened Amalgam|Rivals of Ixalan|175|R|{4}|Artifact Creature - Golem|0|0|Awakened Amalgam's power and toughness are each equal to the number of differently named lands you control.|
Azor's Gateway|Rivals of Ixalan|176|M|{2}|Legendary Artifact|||{1}, {t}: Draw a card, then exile a card from your hand. If cards with five or more different converted mana costs are exiled with Azor's Gateway, you gain 5 life, untap Azor's Gateway, and transform it.|
-Sanctum of the Sun|Rivals of Ixalan|176|M||Legendary Land|||(Transforms from Azor's Gateway.)${t}: Add X mana of any one color to your mana pool, where X is your life total.|
+Sanctum of the Sun|Rivals of Ixalan|176|M||Legendary Land|||(Transforms from Azor's Gateway.)${t}: Add X mana of any one color, where X is your life total.|
Captain's Hook|Rivals of Ixalan|177|R|{3}|Artifact - Equipment|||Equipped creature gets +2/+0, has menace, and is a Pirate in addition to its other creature types.$Whenever Captain's Hook becomes unattached from a permanent, destroy that permanent.$Equip {1}|
-Gleaming Barrier|Rivals of Ixalan|178|C|{2}|Artifact Creature - Wall|0|4|Defender$When Gleaming Barrier dies, create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color to your mana pool."|
+Gleaming Barrier|Rivals of Ixalan|178|C|{2}|Artifact Creature - Wall|0|4|Defender$When Gleaming Barrier dies, create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color."|
Golden Guardian|Rivals of Ixalan|179|R|{4}|Artifact Creature - Golem|4|4|Defender${2}: Golden Guardian fights another target creature you control. When Golden Guardian dies this turn, return it to the battlefield transformed under your control.|
-Gold-Forge Garrison|Rivals of Ixalan|179|R||Land|||(Transforms from Golden Guardian.)${t}: Add two mana of any one color to your mana pool.${4}, {T}: Create a 4/4 colorless Golem artifact creature token.|
+Gold-Forge Garrison|Rivals of Ixalan|179|R||Land|||(Transforms from Golden Guardian.)${t}: Add two mana of any one color.${4}, {T}: Create a 4/4 colorless Golem artifact creature token.|
The Immortal Sun|Rivals of Ixalan|180|M|{6}|Legendary Artifact|||Players can't activate planeswalkers' loyalty abilities.$At the beginning of your draw step, draw an additional card.$Spells you cast cost {1} less to cast.$Creatures you control get +1/+1.|
Orazca Relic|Rivals of Ixalan|181|C|{3}|Artifact|||Ascend (If you control ten or more permanents, you gain the city's blessing for the rest of the game.)${T}: Add {C}.${T}, Sacrifice Orazca Relic: You gain 3 life and draw a card. Activate this ability only if you have the city's blessing.|
Silent Gravestone|Rivals of Ixalan|182|R|{1}|Artifact|||Cards in graveyards can't be the targets of spells or abilities.${4}, {t}: Exile Silent Gravestone and all cards from all graveyards. Draw a card.|
@@ -32915,7 +32915,7 @@ Bumbling Pangolin|Unstable|78|C|{3}{R}|Host Creature - Beast|2|2|When this creat
Buzzing Whack-a-Doodle|Unstable|141|U|{4}|Artifact|||As Buzzing Whack-a-Doodle enters the battlefield, you and an opponent each secretly choose Whack or Doodle. Then those choices are revealed. If the choices match, Buzzing Whack-a-Doodle has that ability. Otherwise it has Buzz.$*Whack - T: Target player loses 2 life. $*Doodle - T: You gain 3 life.$*Buzz - 2, T: Draw a card.|
Chittering Doom|Unstable|104|U|{3}{G}|Enchantment|||Whenever you roll a 4 or higher on a die, create a 1/1 green Squirrel creature token.|
Common Iguana|Unstable|79|C|{1}{R}|Host Creature - Lizard|1|3|When this creature enters the battlefield, you may discard a card. If you do, draw a card.|
-Contraption Cannon|Unstable|144|U|{4}|Artifact|||2, Sacrifice Contraption Cannon: It deals damage to target creature or player equal to the number of Contraptions you control.|
+Contraption Cannon|Unstable|144|U|{4}|Artifact|||2, Sacrifice Contraption Cannon: It deals damage to any target equal to the number of Contraptions you control.|
Crow Storm|Unstable|31|U|{2}{U}|Sorcery|||Create a 1/2 blue Bird creature token with flying named Storm Crow.$Storm (When you cast this spell, copy it for each spell cast before it this turn.)|
Curious Killbot|Unstable|145|C|{2}|Artifact Creature - Killbot|2|1||
Dirty Rat|Unstable|53|C|{1}{B}|Host Creature - Rat|1|1|When this creature enters the battlefield, target opponent discards a card.|
@@ -32986,7 +32986,7 @@ Merfolk Wayfinder|Duel Decks: Merfolk vs. Goblins|12|U|{2}{U}|Creature - Merfolk
Merrow Reejerey|Duel Decks: Merfolk vs. Goblins|13|U|{2}{U}|Creature - Merfolk Soldier|2|2|Other Merfolk creatures you control get +1/+1.$Whenever you cast a Merfolk spell, you may tap or untap target permanent.|
Mind Spring|Duel Decks: Merfolk vs. Goblins|14|R|{X}{U}{U}|Sorcery|||Draw X cards.|
Misdirection|Duel Decks: Merfolk vs. Goblins|15|R|{3}{U}{U}|Instant|||You may exile a blue card from your hand rather than pay Misdirection's mana cost.$Change the target of target spell with a single target.|
-Rootwater Hunter|Duel Decks: Merfolk vs. Goblins|16|U|{2}{U}|Creature - Merfolk|1|1|{tap}: Rootwater Hunter deals 1 damage to target creature or player.|
+Rootwater Hunter|Duel Decks: Merfolk vs. Goblins|16|U|{2}{U}|Creature - Merfolk|1|1|{tap}: Rootwater Hunter deals 1 damage to any target.|
Scroll Thief|Duel Decks: Merfolk vs. Goblins|17|C|{2}{U}|Creature - Merfolk Rogue|1|3|Whenever Scroll Thief deals combat damage to a player, draw a card.|
Streambed Aquitects|Duel Decks: Merfolk vs. Goblins|18|C|{1}{U}{U}|Creature - Merfolk Scout|2|3|{tap}: Target Merfolk creature gets +1/+1 and gains islandwalk until end of turn. (It can't be blocked as long as defending player controls an Island.)${tap}: Target land becomes an Island until end of turn.|
Tidal Courier|Duel Decks: Merfolk vs. Goblins|19|U|{3}{U}|Creature - Merfolk|1|2|When Tidal Courier enters the battlefield, reveal the top four cards of your library. Put all Merfolk cards revealed this way into your hand and the rest on the bottom of your library in any order.${3}{U}: Tidal Courier gains flying until end of turn.|
@@ -33005,15 +33005,15 @@ Battle Squadron|Duel Decks: Merfolk vs. Goblins|33|U|{3}{R}{R}|Creature - Goblin
Boggart Brute|Duel Decks: Merfolk vs. Goblins|34|C|{2}{R}|Creature - Goblin Warrior|3|2|Menace (This creature can't be blocked except by two or more creatures.)|
Brute Strength|Duel Decks: Merfolk vs. Goblins|35|C|{1}{R}|Instant|||Target creature gets +3/+1 and gains trample until end of turn.|
Cleaver Riot|Duel Decks: Merfolk vs. Goblins|36|U|{4}{R}|Sorcery|||Creatures you control gain double strike until end of turn. (They deal both first-strike and regular combat damage.)|
-Ember Hauler|Duel Decks: Merfolk vs. Goblins|37|U|{R}{R}|Creature - Goblin|2|2|{1}, Sacrifice Ember Hauler: Ember Hauler deals 2 damage to target creature or player.|
+Ember Hauler|Duel Decks: Merfolk vs. Goblins|37|U|{R}{R}|Creature - Goblin|2|2|{1}, Sacrifice Ember Hauler: Ember Hauler deals 2 damage to any target.|
Foundry Street Denizen|Duel Decks: Merfolk vs. Goblins|38|C|{R}|Creature - Goblin Warrior|1|1|Whenever another red creature enters the battlefield under your control, Foundry Street Denizen gets +1/+0 until end of turn.|
Gempalm Incinerator|Duel Decks: Merfolk vs. Goblins|39|U|{2}{R}|Creature - Goblin|2|1|Cycling {1}{R} ({1}{R}, Discard this card: Draw a card.)$When you cycle Gempalm Incinerator, you may have it deal X damage to target creature, where X is the number of Goblins on the battlefield.|
-Ghostfire|Duel Decks: Merfolk vs. Goblins|40|C|{2}{R}|Instant|||Ghostfire is colorless.$Ghostfire deals 3 damage to target creature or player.|
+Ghostfire|Duel Decks: Merfolk vs. Goblins|40|C|{2}{R}|Instant|||Ghostfire is colorless.$Ghostfire deals 3 damage to any target.|
Goblin Chieftain|Duel Decks: Merfolk vs. Goblins|41|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.|
Goblin Diplomats|Duel Decks: Merfolk vs. Goblins|42|R|{1}{R}|Creature - Goblin|2|1|{tap}: Each creature attacks this turn if able.|
Goblin Glory Chaser|Duel Decks: Merfolk vs. Goblins|43|U|{R}|Creature - Goblin Warrior|1|1|Renown 1 (When this creature deals combat damage to a player, if it isn't renowned, put a +1/+1 counter on it and it becomes renowned.)$As long as Goblin Glory Chaser is renowned, it has menace. (It can't be blocked except by two or more creatures.)|
Goblin Goon|Duel Decks: Merfolk vs. Goblins|44|R|{3}{R}|Creature - Goblin Mutant|6|6|Goblin Goon can't attack unless you control more creatures than defending player.$Goblin Goon can't block unless you control more creatures than attacking player.|
-Goblin Grenade|Duel Decks: Merfolk vs. Goblins|45|U|{R}|Sorcery|||As an additional cost to cast Goblin Grenade, sacrifice a Goblin.$Goblin Grenade deals 5 damage to target creature or player.|
+Goblin Grenade|Duel Decks: Merfolk vs. Goblins|45|U|{R}|Sorcery|||As an additional cost to cast Goblin Grenade, sacrifice a Goblin.$Goblin Grenade deals 5 damage to any target.|
Goblin Rabblemaster|Duel Decks: Merfolk vs. Goblins|46|R|{2}{R}|Creature - Goblin Warrior|2|2|Other Goblin creatures you control attack each combat if able.$At the beginning of combat on your turn, create a 1/1 red Goblin creature token with haste.$Whenever Goblin Rabblemaster attacks, it gets +1/+0 until end of turn for each other attacking Goblin.|
Goblin Razerunners|Duel Decks: Merfolk vs. Goblins|47|R|{2}{R}{R}|Creature - Goblin Warrior|3|4|{1}{R}, Sacrifice a land: Put a +1/+1 counter on Goblin Razerunners.$At the beginning of your end step, you may have Goblin Razerunners deal damage equal to the number of +1/+1 counters on it to target player.|
Goblin Ringleader|Duel Decks: Merfolk vs. Goblins|48|U|{3}{R}|Creature - Goblin|2|2|Haste$When Goblin Ringleader enters the battlefield, reveal the top four cards of your library. Put all Goblin cards revealed this way into your hand and the rest on the bottom of your library in any order.|
@@ -33023,10 +33023,10 @@ Hordeling Outburst|Duel Decks: Merfolk vs. Goblins|51|U|{1}{R}{R}|Sorcery|||Crea
Krenko, Mob Boss|Duel Decks: Merfolk vs. Goblins|52|R|{2}{R}{R}|Legendary Creature - Goblin Warrior|3|3|{tap}: Create X 1/1 red Goblin creature tokens, where X is the number of Goblins you control.|
Krenko's Command|Duel Decks: Merfolk vs. Goblins|53|C|{1}{R}|Sorcery|||Create two 1/1 red Goblin creature tokens.|
Relentless Assault|Duel Decks: Merfolk vs. Goblins|54|R|{2}{R}{R}|Sorcery|||Untap all creatures that attacked this turn. After this main phase, there is an additional combat phase followed by an additional main phase.|
-Tarfire|Duel Decks: Merfolk vs. Goblins|55|C|{R}|Tribal Instant - Goblin|||Tarfire deals 2 damage to target creature or player.|
+Tarfire|Duel Decks: Merfolk vs. Goblins|55|C|{R}|Tribal Instant - Goblin|||Tarfire deals 2 damage to any target.|
Brittle Effigy|Duel Decks: Merfolk vs. Goblins|56|R|{1}|Artifact|||{4}, {tap}, Exile Brittle Effigy: Exile target creature.|
-Goblin Charbelcher|Duel Decks: Merfolk vs. Goblins|57|R|{4}|Artifact|||{3}, {tap}: Reveal cards from the top of your library until you reveal a land card. Goblin Charbelcher deals damage equal to the number of nonland cards revealed this way to target creature or player. If the revealed land card was a Mountain, Goblin Charbelcher deals double that damage instead. Put the revealed cards on the bottom of your library in any order.|
-Blighted Gorge|Duel Decks: Merfolk vs. Goblins|58|U||Land|||{tap}: Add {C}.${4}{R}, {tap}, Sacrifice Blighted Gorge: Blighted Gorge deals 2 damage to target creature or player.|
+Goblin Charbelcher|Duel Decks: Merfolk vs. Goblins|57|R|{4}|Artifact|||{3}, {tap}: Reveal cards from the top of your library until you reveal a land card. Goblin Charbelcher deals damage equal to the number of nonland cards revealed this way to any target. If the revealed land card was a Mountain, Goblin Charbelcher deals double that damage instead. Put the revealed cards on the bottom of your library in any order.|
+Blighted Gorge|Duel Decks: Merfolk vs. Goblins|58|U||Land|||{tap}: Add {C}.${4}{R}, {tap}, Sacrifice Blighted Gorge: Blighted Gorge deals 2 damage to any target.|
Forgotten Cave|Duel Decks: Merfolk vs. Goblins|59|C||Land|||Forgotten Cave enters the battlefield tapped.${tap}: Add {R}.$Cycling {R} ({R}, Discard this card: Draw a card.)|
Mountain|Duel Decks: Merfolk vs. Goblins|60|L||Basic Land - Mountain||||
Mountain|Duel Decks: Merfolk vs. Goblins|61|L||Basic Land - Mountain||||
@@ -33077,7 +33077,7 @@ Urza's Science Fair Project|Unglued|83|U|{6}|Artifact Creature - Construct|4|4|
Snow Mercy|Happy Holidays|10|R|{2}{W}{W}|Snow Enchantment|||Whenever a creature deals damage to you, put a globe counter on it.${t},{untap},{t},{untap},{t}: Tap all creatures with globe counters on them.|
Fruitcake Elemental|Happy Holidays|6|R|{1}{G}{G}|Creature - Elemental|7|7|Fruitcake Elemental is indestructible.$At the end of your turn, Fruitcake Elemental deals 7 damage to you.${3}: Target player gains control of Fruitcake Elemental.|
Season's Beatings|Happy Holidays|9|R|{R}{R}{R}{R}|Sorcery|||Family gathering - Each creature target player controls deals damage equal to its power to another random creature that player controls.|
-Mox Lotus|Unhinged|124|R|{15}|Artifact|||{t}: Add infinity to your mana pool.${100}: Add one mana of any color to your mana pool.&You don't lose life due to mana burn.|
+Mox Lotus|Unhinged|124|R|{15}|Artifact|||{t}: Add infinity.${100}: Add one mana of any color.&You don't lose life due to mana burn.|
Karn, Scion of Urza|Dominaria|1|M|{4}|Legendary Planeswalker - Karn|5|+1: Reveal the top two cards of your library. An opponent chooses one of them. Put that card into your hand and exile the other with a silver counter on it.$−1: Put a card you own with a silver counter on it from exile into your hand.$−2: Create a 0/0 colorless Construct artifact creature token with "This creature gets +1/+1 for each artifact you control."|
Adamant Will|Dominaria|2|C|{1}{W}|Instant|||Target creature gets +2/+2 and gains indestructible until end of turn. (Damage and effects that say "destroy" don't destroy it.)|
Aven Sentry|Dominaria|3|C|{3}{W}|Creature - Bird Soldier|3|2|Flying|
@@ -33357,4 +33357,4 @@ Chandra's Outburst|Dominaria|276|R|{3}{R}{R}|Sorcery|||Chandra's Outburst deals
Karplusan Hound|Dominaria|277|U|{3}{R}|Creature - Hound|3|3|Whenever Karplusan Hound attacks, if you control a Chandra planeswalker, this creature deals 2 damage to any target.|
Pyromantic Pilgrim|Dominaria|278|C|{2}{R}|Creature - Human Wizard|3|1|Haste|
Timber Gorge|Dominaria|279|C||Land|||Timber Gorge enters the battlefield tapped.${t}: Add {R} or {G}.|
-Firesong and Sunspeaker|Dominaria|280|R|{4}{R}{W}|Legendary Creature - Minotaur Cleric|4|6|Red instant and sorcery spells you control have lifelink.$Whenever a white instant or sorcery spell causes you to gain life, Firesong and Sunspeaker deals 3 damage to target creature or player.|
+Firesong and Sunspeaker|Dominaria|280|R|{4}{R}{W}|Legendary Creature - Minotaur Cleric|4|6|Red instant and sorcery spells you control have lifelink.$Whenever a white instant or sorcery spell causes you to gain life, Firesong and Sunspeaker deals 3 damage to any target.|