diff --git a/Mage.Client/src/main/resources/tokens-mtg-onl-list.csv b/Mage.Client/src/main/resources/tokens-mtg-onl-list.csv index e575b28e976..658a76ff505 100644 --- a/Mage.Client/src/main/resources/tokens-mtg-onl-list.csv +++ b/Mage.Client/src/main/resources/tokens-mtg-onl-list.csv @@ -461,7 +461,7 @@ Zombie, 6, B, 2|2, -, Enchantment Creature - Zombie, Winona Nelson, - Elemental, 7, R, 3|1, -, Enchantment Creature - Elemental, Greg Staples, - Centaur, 8, G, 3|3, -, Enchantment Creature - Centaur, Ryan Barger, - Wolf, 9, G, 2|2, -, Creature - Wolf, Raoul Vitale, - -Gold, 10, -, -, -, Artifact, Richard Wright, Sacrifice this artifact: Add one mana of any color to your mana pool. +Gold, 10, -, -, -, Artifact, Richard Wright, Sacrifice this artifact: Add one mana of any color. Kiora Emblem, 11, -, -, -, Emblem - Kiora, Scott M. Fischer, At the beginning of your end step� put a 9/9 blue Kraken creature token onto the battlefield. DDM - Duel Decks: Jace vs. Vraska (2014-03-14) @@ -709,7 +709,7 @@ Elemental, 020, U R, 5|5, -, Creature - Elemental, Randy Gallegos, Flying Snake, 021, G U, 1|1, -, Creature - Snake, Christopher Moeller, - Spirit, 022, W B, 1|1, -, Creature - Spirit, Cliff Childs, Flying Spirit, 023, W B, *|*, -, Enchantment Creature - Spirit, Adam Paquette, This creature's power and toughness are each equal to the number of experience counters you have. -Gold, 024, -, -, -, Artifact, Richard Wright, Sacrifice this artifact: Add one mana of any color to your mana pool. +Gold, 024, -, -, -, Artifact, Richard Wright, Sacrifice this artifact: Add one mana of any color. OGW - Oath of the Gatewatch (2016-01-22) diff --git a/Mage.Sets/src/mage/cards/a/AbandonedOutpost.java b/Mage.Sets/src/mage/cards/a/AbandonedOutpost.java index 39ddfc0d1d7..c6a7463475f 100644 --- a/Mage.Sets/src/mage/cards/a/AbandonedOutpost.java +++ b/Mage.Sets/src/mage/cards/a/AbandonedOutpost.java @@ -54,7 +54,7 @@ public class AbandonedOutpost extends CardImpl { // Tap to add {W} this.addAbility(new WhiteManaAbility()); - // Tap to add any color mana to your mana pool. Sacrifice Abandoned Outpost. + // Tap to add any color mana. Sacrifice Abandoned Outpost. Ability ability = new AnyColorManaAbility(); ability.addCost(new SacrificeSourceCost()); this.addAbility(ability); diff --git a/Mage.Sets/src/mage/cards/a/AbundantGrowth.java b/Mage.Sets/src/mage/cards/a/AbundantGrowth.java index 25e02d623f4..284afa7a1cb 100644 --- a/Mage.Sets/src/mage/cards/a/AbundantGrowth.java +++ b/Mage.Sets/src/mage/cards/a/AbundantGrowth.java @@ -63,10 +63,10 @@ public class AbundantGrowth extends CardImpl { // When Abundant Growth enters the battlefield, draw a card. this.addAbility(new EntersBattlefieldTriggeredAbility(new DrawCardSourceControllerEffect(1), false)); - // 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)); } diff --git a/Mage.Sets/src/mage/cards/a/AdantoTheFirstFort.java b/Mage.Sets/src/mage/cards/a/AdantoTheFirstFort.java index 2b1d7766d20..26cb0acecbd 100644 --- a/Mage.Sets/src/mage/cards/a/AdantoTheFirstFort.java +++ b/Mage.Sets/src/mage/cards/a/AdantoTheFirstFort.java @@ -54,7 +54,7 @@ public class AdantoTheFirstFort extends CardImpl { this.nightCard = true; - // T: Add W to your mana pool. + // T: Add W. this.addAbility(new WhiteManaAbility()); // 2W, T: Create a 1/1 white Vampire creature token with lifelink. diff --git a/Mage.Sets/src/mage/cards/a/AetherHub.java b/Mage.Sets/src/mage/cards/a/AetherHub.java index 8a2b0ff87b7..44561817a38 100644 --- a/Mage.Sets/src/mage/cards/a/AetherHub.java +++ b/Mage.Sets/src/mage/cards/a/AetherHub.java @@ -53,7 +53,7 @@ public class AetherHub extends CardImpl { // {T}: Add {C}. this.addAbility(new ColorlessManaAbility()); - // {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(); ability.addCost(new PayEnergyCost(1)); this.addAbility(ability); diff --git a/Mage.Sets/src/mage/cards/a/AllyEncampment.java b/Mage.Sets/src/mage/cards/a/AllyEncampment.java index 886154dbba9..bfccf69aefd 100644 --- a/Mage.Sets/src/mage/cards/a/AllyEncampment.java +++ b/Mage.Sets/src/mage/cards/a/AllyEncampment.java @@ -65,7 +65,7 @@ public class AllyEncampment 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 an Ally spell. + // {T} Add one mana of any color. Spend this mana only to cast an Ally spell. this.addAbility(new ConditionalAnyColorManaAbility(new TapSourceCost(), 1, new ConditionalSpellManaBuilder(FILTER), true)); // {1}, {T}, Sacrifice Ally Encampment: Return target Ally you control to its owner's hand. diff --git a/Mage.Sets/src/mage/cards/a/AltarOfTheLost.java b/Mage.Sets/src/mage/cards/a/AltarOfTheLost.java index 52dcd8fa559..f0388811ae1 100644 --- a/Mage.Sets/src/mage/cards/a/AltarOfTheLost.java +++ b/Mage.Sets/src/mage/cards/a/AltarOfTheLost.java @@ -56,7 +56,7 @@ public class AltarOfTheLost extends CardImpl { // Altar of the Lost enters the battlefield tapped. this.addAbility(new EntersBattlefieldTappedAbility()); - // {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. this.addAbility(new ConditionalAnyColorManaAbility(2, new AltarOfTheLostManaBuilder())); } diff --git a/Mage.Sets/src/mage/cards/a/AncientTomb.java b/Mage.Sets/src/mage/cards/a/AncientTomb.java index 2284c63012a..c4551f75753 100644 --- a/Mage.Sets/src/mage/cards/a/AncientTomb.java +++ b/Mage.Sets/src/mage/cards/a/AncientTomb.java @@ -46,7 +46,7 @@ public class AncientTomb extends CardImpl { public AncientTomb(UUID ownerId, CardSetInfo setInfo) { super(ownerId,setInfo,new CardType[]{CardType.LAND},""); - // {tap}: Add to your mana pool. Ancient Tomb deals 2 damage to you. + // {tap}: Add . Ancient Tomb deals 2 damage to you. Ability ability = new SimpleManaAbility(Zone.BATTLEFIELD, Mana.ColorlessMana(2), new TapSourceCost()); ability.addEffect(new DamageControllerEffect(2)); this.addAbility(ability); diff --git a/Mage.Sets/src/mage/cards/a/AncientZiggurat.java b/Mage.Sets/src/mage/cards/a/AncientZiggurat.java index 4d3fa1c4024..fd81ec5f958 100644 --- a/Mage.Sets/src/mage/cards/a/AncientZiggurat.java +++ b/Mage.Sets/src/mage/cards/a/AncientZiggurat.java @@ -45,7 +45,7 @@ public class AncientZiggurat extends CardImpl { public AncientZiggurat(UUID ownerId, CardSetInfo setInfo) { super(ownerId,setInfo,new CardType[]{CardType.LAND},""); - // {tap}: Add one mana of any color to your mana pool. Spend this mana only to cast a creature spell. + // {tap}: Add one mana of any color. Spend this mana only to cast a creature spell. this.addAbility(new ConditionalAnyColorManaAbility(1, new AncientZigguratManaBuilder())); } diff --git a/Mage.Sets/src/mage/cards/a/ArchaeologicalDig.java b/Mage.Sets/src/mage/cards/a/ArchaeologicalDig.java index db929f37bc9..f9eef8a6b07 100644 --- a/Mage.Sets/src/mage/cards/a/ArchaeologicalDig.java +++ b/Mage.Sets/src/mage/cards/a/ArchaeologicalDig.java @@ -48,7 +48,7 @@ public class ArchaeologicalDig extends CardImpl { // {tap}: Add {C}. this.addAbility(new ColorlessManaAbility()); - // {tap}, Sacrifice Archaeological Dig: Add one mana of any color to your mana pool. + // {tap}, Sacrifice Archaeological Dig: Add one mana of any color. Ability ability = new AnyColorManaAbility(new TapSourceCost()); ability.addCost(new SacrificeSourceCost()); this.addAbility(ability); diff --git a/Mage.Sets/src/mage/cards/a/AstralCornucopia.java b/Mage.Sets/src/mage/cards/a/AstralCornucopia.java index e2e110e9220..1581512d27e 100644 --- a/Mage.Sets/src/mage/cards/a/AstralCornucopia.java +++ b/Mage.Sets/src/mage/cards/a/AstralCornucopia.java @@ -58,7 +58,7 @@ public class AstralCornucopia extends CardImpl { // Astral Cornucopia enters the battlefield with X charge counters on it. this.addAbility(new EntersBattlefieldAbility(new EntersBattlefieldWithXCountersEffect(CounterType.CHARGE.createInstance()))); - // {T}: Choose a color. Add one mana of that color to your mana pool for each charge counter on Astral Cornucopia. + // {T}: Choose a color. Add one mana of that color for each charge counter on Astral Cornucopia. this.addAbility(new AstralCornucopiaManaAbility()); } @@ -108,7 +108,7 @@ class AstralCornucopiaManaEffect extends ManaEffect { public AstralCornucopiaManaEffect() { super(); computedMana = new Mana(); - this.staticText = "Choose a color. Add one mana of that color to your mana pool for each charge counter on {this}"; + this.staticText = "Choose a color. Add one mana of that color for each charge counter on {this}"; } public AstralCornucopiaManaEffect(final AstralCornucopiaManaEffect effect) { diff --git a/Mage.Sets/src/mage/cards/a/Astrolabe.java b/Mage.Sets/src/mage/cards/a/Astrolabe.java index 31e4cec7be8..9ce14687094 100644 --- a/Mage.Sets/src/mage/cards/a/Astrolabe.java +++ b/Mage.Sets/src/mage/cards/a/Astrolabe.java @@ -51,7 +51,7 @@ public class Astrolabe extends CardImpl { public Astrolabe(UUID ownerId, CardSetInfo setInfo) { super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{3}"); - // {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. + // {1}, {tap}, Sacrifice Astrolabe: Add two mana of any one color. Draw a card at the beginning of the next turn's upkeep. 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/a/AtzalCaveOfEternity.java b/Mage.Sets/src/mage/cards/a/AtzalCaveOfEternity.java index 0546ce360f7..712dd012e88 100644 --- a/Mage.Sets/src/mage/cards/a/AtzalCaveOfEternity.java +++ b/Mage.Sets/src/mage/cards/a/AtzalCaveOfEternity.java @@ -62,7 +62,7 @@ public class AtzalCaveOfEternity 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()); // {3}{B}{G}, {T}: Return target creature card from your graveyard to the battlefield. diff --git a/Mage.Sets/src/mage/cards/a/AtzocanSeer.java b/Mage.Sets/src/mage/cards/a/AtzocanSeer.java index d0ced3bfe43..bc29bab0d16 100644 --- a/Mage.Sets/src/mage/cards/a/AtzocanSeer.java +++ b/Mage.Sets/src/mage/cards/a/AtzocanSeer.java @@ -62,7 +62,7 @@ public class AtzocanSeer extends CardImpl { this.power = new MageInt(2); this.toughness = new MageInt(3); - // {T}: Add one mana of any color to your mana pool. + // {T}: Add one mana of any color. this.addAbility(new AnyColorManaAbility()); // Sacrifice Atzocan Seer: Return target Dinosaur from your graveyard to your hand. diff --git a/Mage.Sets/src/mage/cards/a/AxebaneGuardian.java b/Mage.Sets/src/mage/cards/a/AxebaneGuardian.java index ecd67b7f80a..32e9028ca58 100644 --- a/Mage.Sets/src/mage/cards/a/AxebaneGuardian.java +++ b/Mage.Sets/src/mage/cards/a/AxebaneGuardian.java @@ -64,9 +64,9 @@ public class AxebaneGuardian extends CardImpl { // Defender this.addAbility(DefenderAbility.getInstance()); - // {tap}: Add X mana in any combination of colors to your mana pool, where X is the number of creatures with defender you control. + // {tap}: Add X mana in any combination of colors, where X is the number of creatures with defender you control. this.addAbility(new DynamicManaAbility(new Mana(0,0,0,0,0,0,1, 0), new PermanentsOnBattlefieldCount(filter), - "Add X mana in any combination of colors to your mana pool, where X is the number of creatures with defender you control.")); + "Add X mana in any combination of colors, where X is the number of creatures with defender you control.")); } public AxebaneGuardian(final AxebaneGuardian card) { diff --git a/Mage.Sets/src/mage/cards/b/BarbedSextant.java b/Mage.Sets/src/mage/cards/b/BarbedSextant.java index 3b5c7ba452b..76f7e3710bf 100644 --- a/Mage.Sets/src/mage/cards/b/BarbedSextant.java +++ b/Mage.Sets/src/mage/cards/b/BarbedSextant.java @@ -50,7 +50,7 @@ public class BarbedSextant extends CardImpl { public BarbedSextant(UUID ownerId, CardSetInfo setInfo) { super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{1}"); - // {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. + // {1}, {tap}, Sacrifice Barbed Sextant: Add one mana of any color. Draw a card at the beginning of the next turn's upkeep. ActivatedManaAbilityImpl ability = new AnyColorManaAbility(new GenericManaCost(1)); ability.addCost(new TapSourceCost()); ability.addCost(new SacrificeSourceCost()); diff --git a/Mage.Sets/src/mage/cards/b/BattlefieldForge.java b/Mage.Sets/src/mage/cards/b/BattlefieldForge.java index 3d090aba3a8..38d163c2682 100644 --- a/Mage.Sets/src/mage/cards/b/BattlefieldForge.java +++ b/Mage.Sets/src/mage/cards/b/BattlefieldForge.java @@ -48,10 +48,10 @@ public class BattlefieldForge extends CardImpl { public BattlefieldForge(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 Red or White to your mana pool. Battlefield Forge deals 1 damage to you. + // Tap: Add Red or White. Battlefield Forge deals 1 damage to you. Ability redManaAbility = new SimpleManaAbility(Zone.BATTLEFIELD, Mana.RedMana(1), new TapSourceCost()); redManaAbility.addEffect(new DamageControllerEffect(1)); this.addAbility(redManaAbility); diff --git a/Mage.Sets/src/mage/cards/b/BeastcallerSavant.java b/Mage.Sets/src/mage/cards/b/BeastcallerSavant.java index ba3c43b90a6..3165c7efbfd 100644 --- a/Mage.Sets/src/mage/cards/b/BeastcallerSavant.java +++ b/Mage.Sets/src/mage/cards/b/BeastcallerSavant.java @@ -53,7 +53,7 @@ public class BeastcallerSavant extends CardImpl { // Haste this.addAbility(HasteAbility.getInstance()); - // {T}: Add one mana of any color to your mana pool. Spend this mana only to cast creature spells. + // {T}: Add one mana of any color. Spend this mana only to cast creature spells. this.addAbility(new ConditionalAnyColorManaAbility(1, new ConditionalSpellManaBuilder(new FilterCreatureSpell("creature spells")))); } diff --git a/Mage.Sets/src/mage/cards/b/BirchloreRangers.java b/Mage.Sets/src/mage/cards/b/BirchloreRangers.java index a35d343200a..51c74155f2e 100644 --- a/Mage.Sets/src/mage/cards/b/BirchloreRangers.java +++ b/Mage.Sets/src/mage/cards/b/BirchloreRangers.java @@ -63,7 +63,7 @@ public class BirchloreRangers extends CardImpl { this.power = new MageInt(1); this.toughness = new MageInt(1); - // Tap two untapped Elves you control: Add one mana of any color to your mana pool. + // Tap two untapped Elves you control: Add one mana of any color. this.addAbility(new AnyColorManaAbility(new TapTargetCost(new TargetControlledCreaturePermanent(2, 2, filter, false)))); // Morph {G} this.addAbility(new MorphAbility(this, new ManaCostsImpl("{G}"))); diff --git a/Mage.Sets/src/mage/cards/b/BlackLotus.java b/Mage.Sets/src/mage/cards/b/BlackLotus.java index 2d8d4e2ecec..19008faf0c8 100644 --- a/Mage.Sets/src/mage/cards/b/BlackLotus.java +++ b/Mage.Sets/src/mage/cards/b/BlackLotus.java @@ -47,7 +47,7 @@ public class BlackLotus extends CardImpl { public BlackLotus(UUID ownerId, CardSetInfo setInfo) { super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{0}"); - // {tap}, Sacrifice Black Lotus: Add three mana of any one color to your mana pool. + // {tap}, Sacrifice Black Lotus: 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/b/BloodCelebrant.java b/Mage.Sets/src/mage/cards/b/BloodCelebrant.java index a7a36ada9ab..532a84646cc 100644 --- a/Mage.Sets/src/mage/cards/b/BloodCelebrant.java +++ b/Mage.Sets/src/mage/cards/b/BloodCelebrant.java @@ -51,7 +51,7 @@ public class BloodCelebrant extends CardImpl { this.power = new MageInt(1); this.toughness = new MageInt(1); - // {B}, Pay 1 life: Add one mana of any color to your mana pool. + // {B}, Pay 1 life: Add one mana of any color. Ability ability = new AnyColorManaAbility(new ColoredManaCost(ColoredManaSymbol.B)); ability.addCost(new PayLifeCost(1)); this.addAbility(ability); diff --git a/Mage.Sets/src/mage/cards/b/BloomTender.java b/Mage.Sets/src/mage/cards/b/BloomTender.java index 7d74897ecc4..b7f64eaf967 100644 --- a/Mage.Sets/src/mage/cards/b/BloomTender.java +++ b/Mage.Sets/src/mage/cards/b/BloomTender.java @@ -56,7 +56,7 @@ public class BloomTender extends CardImpl { this.power = new MageInt(1); this.toughness = new MageInt(1); - // {T}: For each color among permanents you control, add one mana of that color to your mana pool. + // {T}: For each color among permanents you control, add one mana of that color. this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, new BloomTenderEffect(), new TapSourceCost())); } @@ -75,7 +75,7 @@ class BloomTenderEffect extends ManaEffect { public BloomTenderEffect() { super(); - staticText = "For each color among permanents you control, add one mana of that color to your mana pool"; + staticText = "For each color among permanents you control, add one mana of that color"; } public BloomTenderEffect(final BloomTenderEffect effect) { diff --git a/Mage.Sets/src/mage/cards/b/BogWreckage.java b/Mage.Sets/src/mage/cards/b/BogWreckage.java index daa81f2cdc9..1df850cbc34 100644 --- a/Mage.Sets/src/mage/cards/b/BogWreckage.java +++ b/Mage.Sets/src/mage/cards/b/BogWreckage.java @@ -50,7 +50,7 @@ public class BogWreckage extends CardImpl { this.addAbility(new EntersBattlefieldTappedAbility()); // {tap}: Add {B}. this.addAbility(new BlackManaAbility()); - // {tap}, Sacrifice Bog Wreckage: Add one mana of any color to your mana pool. + // {tap}, Sacrifice Bog Wreckage: 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/b/BrasssBounty.java b/Mage.Sets/src/mage/cards/b/BrasssBounty.java index a88418ac43a..62c42f3dc09 100644 --- a/Mage.Sets/src/mage/cards/b/BrasssBounty.java +++ b/Mage.Sets/src/mage/cards/b/BrasssBounty.java @@ -45,10 +45,10 @@ public class BrasssBounty extends CardImpl { public BrasssBounty(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{6}{R}"); - // 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." + // For each land you control, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color." this.getSpellAbility().addEffect( new CreateTokenEffect(new TreasureToken(), new PermanentsOnBattlefieldCount(StaticFilters.FILTER_CONTROLLED_PERMANENT_LAND)) - .setText("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.\"")); + .setText("For each land you control, create a colorless Treasure artifact token with \"{T}, Sacrifice this artifact: Add one mana of any color.\"")); } public BrasssBounty(final BrasssBounty card) { diff --git a/Mage.Sets/src/mage/cards/b/BrazenFreebooter.java b/Mage.Sets/src/mage/cards/b/BrazenFreebooter.java index 88b9bc2c9f8..f391daee26c 100644 --- a/Mage.Sets/src/mage/cards/b/BrazenFreebooter.java +++ b/Mage.Sets/src/mage/cards/b/BrazenFreebooter.java @@ -50,7 +50,7 @@ public class BrazenFreebooter extends CardImpl { this.power = new MageInt(3); this.toughness = new MageInt(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." + // When Brazen Freebooter 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()), false)); } diff --git a/Mage.Sets/src/mage/cards/b/BurntOffering.java b/Mage.Sets/src/mage/cards/b/BurntOffering.java index 051ca150289..b2dc7278404 100644 --- a/Mage.Sets/src/mage/cards/b/BurntOffering.java +++ b/Mage.Sets/src/mage/cards/b/BurntOffering.java @@ -59,7 +59,7 @@ public class BurntOffering extends CardImpl { //As an additional cost to cast Burnt Offering, sacrifice a creature. this.getSpellAbility().addCost(new SacrificeTargetCost(new TargetControlledCreaturePermanent(FILTER_CONTROLLED_CREATURE_SHORT_TEXT))); - //Add to your mana pool an amount of {B} and/or {R} equal to the sacrificed creature's converted mana cost. + //Add an amount of {B} and/or {R} equal to the sacrificed creature's converted mana cost. this.getSpellAbility().addEffect(new BurntOfferingEffect()); } diff --git a/Mage.Sets/src/mage/cards/c/CagedSun.java b/Mage.Sets/src/mage/cards/c/CagedSun.java index 460273377d9..eb1ccd6296e 100644 --- a/Mage.Sets/src/mage/cards/c/CagedSun.java +++ b/Mage.Sets/src/mage/cards/c/CagedSun.java @@ -62,7 +62,7 @@ public class CagedSun extends CardImpl { // Creatures you control of the chosen color get +1/+1. this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CagedSunEffect2())); - // 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. + // Whenever a land's ability adds one or more mana of the chosen color, add one additional mana of that color. this.addAbility(new CagedSunTriggeredAbility()); } @@ -115,7 +115,7 @@ class CagedSunEffect2 extends ContinuousEffectImpl { class CagedSunTriggeredAbility extends TriggeredManaAbility { - private static final String staticText = "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."; + private static final String staticText = "Whenever a land's ability adds one or more mana of the chosen color, add one additional mana of that color."; public CagedSunTriggeredAbility() { super(Zone.BATTLEFIELD, new CagedSunEffect()); @@ -159,7 +159,7 @@ class CagedSunEffect extends ManaEffect { public CagedSunEffect() { super(); - staticText = "add one additional mana of that color to your mana pool"; + staticText = "add one additional mana of that color"; } public CagedSunEffect(final CagedSunEffect effect) { diff --git a/Mage.Sets/src/mage/cards/c/CaptainLanneryStorm.java b/Mage.Sets/src/mage/cards/c/CaptainLanneryStorm.java index 71284beb9c2..5f3b8bfe067 100644 --- a/Mage.Sets/src/mage/cards/c/CaptainLanneryStorm.java +++ b/Mage.Sets/src/mage/cards/c/CaptainLanneryStorm.java @@ -71,7 +71,7 @@ public class CaptainLanneryStorm extends CardImpl { // Haste this.addAbility(HasteAbility.getInstance()); - // 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 Captain lannery Storm attacks, create a colorless Treasure artifact token with "{T}, Sacrifice this artifact: Add one mana of any color." this.addAbility(new AttacksTriggeredAbility(new CreateTokenEffect(new TreasureToken()), false)); // Whenever you sacrifice a Treasure, Captain Lannery Storm gets +1/+0 until end of turn. diff --git a/Mage.Sets/src/mage/cards/c/CarpetOfFlowers.java b/Mage.Sets/src/mage/cards/c/CarpetOfFlowers.java index dbb09c56981..e775ff0cfc4 100644 --- a/Mage.Sets/src/mage/cards/c/CarpetOfFlowers.java +++ b/Mage.Sets/src/mage/cards/c/CarpetOfFlowers.java @@ -57,7 +57,7 @@ public class CarpetOfFlowers extends CardImpl { public CarpetOfFlowers(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{G}"); - // 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. + // 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. this.addAbility(new CarpetOfFlowersTriggeredAbility()); } @@ -124,7 +124,7 @@ class CarpetOfFlowersTriggeredAbility extends TriggeredAbilityImpl { @Override public String getRule() { - StringBuilder sb = new StringBuilder("At the beginning of each of your main phases, if you haven't added mana to your mana pool with this ability this turn"); + StringBuilder sb = new StringBuilder("At the beginning of each of your main phases, if you haven't added mana with this ability this turn"); return sb.append(super.getRule()).toString(); } @@ -141,7 +141,7 @@ class CarpetOfFlowersEffect extends ManaEffect { CarpetOfFlowersEffect() { super(); - staticText = "add X mana of any one color to your mana pool, where X is the number of Islands target opponent controls"; + staticText = "add X mana of any one color, where X is the number of Islands target opponent controls"; } CarpetOfFlowersEffect(final CarpetOfFlowersEffect effect) { diff --git a/Mage.Sets/src/mage/cards/c/CascadingCataracts.java b/Mage.Sets/src/mage/cards/c/CascadingCataracts.java index 819c814c4e4..9aca3735943 100644 --- a/Mage.Sets/src/mage/cards/c/CascadingCataracts.java +++ b/Mage.Sets/src/mage/cards/c/CascadingCataracts.java @@ -55,7 +55,7 @@ public class CascadingCataracts extends CardImpl { // {T}: Add {C}. this.addAbility(new ColorlessManaAbility()); - // {5}, {T}: Add five mana in any combination of colors to your mana pool. + // {5}, {T}: Add five mana in any combination of colors. Ability ability = new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaInAnyCombinationEffect(5), new GenericManaCost(5)); ability.addCost(new TapSourceCost()); this.addAbility(ability); diff --git a/Mage.Sets/src/mage/cards/c/CavernOfSouls.java b/Mage.Sets/src/mage/cards/c/CavernOfSouls.java index deb019af56d..66811e2a834 100644 --- a/Mage.Sets/src/mage/cards/c/CavernOfSouls.java +++ b/Mage.Sets/src/mage/cards/c/CavernOfSouls.java @@ -68,7 +68,7 @@ public class CavernOfSouls 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, 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. Ability ability = new ConditionalAnyColorManaAbility(new TapSourceCost(), 1, new CavernOfSoulsManaBuilder(), true); this.addAbility(ability, new CavernOfSoulsWatcher(ability.getOriginalId())); this.addAbility(new SimpleStaticAbility(Zone.ALL, new CavernOfSoulsCantCounterEffect())); diff --git a/Mage.Sets/src/mage/cards/c/CavesOfKoilos.java b/Mage.Sets/src/mage/cards/c/CavesOfKoilos.java index 5701f426f64..6648dd47bc0 100644 --- a/Mage.Sets/src/mage/cards/c/CavesOfKoilos.java +++ b/Mage.Sets/src/mage/cards/c/CavesOfKoilos.java @@ -49,10 +49,10 @@ public class CavesOfKoilos extends CardImpl { super(ownerId,setInfo,new CardType[]{CardType.LAND},""); - // Tap: Add 1 to your mana pool. + // Tap: Add 1. this.addAbility(new ColorlessManaAbility()); - // Tap: Add White or Black to your mana pool. Caves of Koilos deals 1 damage to you. + // Tap: Add White or Black. Caves of Koilos deals 1 damage to you. Ability whiteManaAbility = new SimpleManaAbility(Zone.BATTLEFIELD, Mana.WhiteMana(1), new TapSourceCost()); whiteManaAbility.addEffect(new DamageControllerEffect(1)); this.addAbility(whiteManaAbility); diff --git a/Mage.Sets/src/mage/cards/c/CelestialPrism.java b/Mage.Sets/src/mage/cards/c/CelestialPrism.java index 601182f1a05..738ad08eb77 100644 --- a/Mage.Sets/src/mage/cards/c/CelestialPrism.java +++ b/Mage.Sets/src/mage/cards/c/CelestialPrism.java @@ -45,7 +45,7 @@ public class CelestialPrism extends CardImpl { public CelestialPrism(UUID ownerId, CardSetInfo setInfo) { super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{3}"); - // {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/c/ChannelerInitiate.java b/Mage.Sets/src/mage/cards/c/ChannelerInitiate.java index 6fd966640bb..2d93fce5844 100644 --- a/Mage.Sets/src/mage/cards/c/ChannelerInitiate.java +++ b/Mage.Sets/src/mage/cards/c/ChannelerInitiate.java @@ -60,7 +60,7 @@ public class ChannelerInitiate extends CardImpl { ability.addTarget(new TargetControlledCreaturePermanent()); this.addAbility(ability); - // {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. ability = new AnyColorManaAbility(); ability.addCost(new RemoveCountersSourceCost(CounterType.M1M1.createInstance(1))); this.addAbility(ability); diff --git a/Mage.Sets/src/mage/cards/c/CharmedPendant.java b/Mage.Sets/src/mage/cards/c/CharmedPendant.java index 03a06ce0790..f3bf83392b6 100644 --- a/Mage.Sets/src/mage/cards/c/CharmedPendant.java +++ b/Mage.Sets/src/mage/cards/c/CharmedPendant.java @@ -65,7 +65,7 @@ public class CharmedPendant extends CardImpl { public CharmedPendant(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{4}"); - // {T}, 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. + // {T}, 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. this.addAbility(new CharmedPendantAbility()); } @@ -121,7 +121,7 @@ class CharmedPendantManaEffect extends ManaEffect { public CharmedPendantManaEffect() { super(); - staticText = "For each colored mana symbol in that card's mana cost, add one mana of that color to your mana pool"; + staticText = "For each colored mana symbol in that card's mana cost, add one mana of that color"; } public CharmedPendantManaEffect(final CharmedPendantManaEffect effect) { diff --git a/Mage.Sets/src/mage/cards/c/ChromaticLantern.java b/Mage.Sets/src/mage/cards/c/ChromaticLantern.java index 5468f079863..67898bbdb28 100644 --- a/Mage.Sets/src/mage/cards/c/ChromaticLantern.java +++ b/Mage.Sets/src/mage/cards/c/ChromaticLantern.java @@ -46,10 +46,10 @@ public class ChromaticLantern extends CardImpl { public ChromaticLantern(UUID ownerId, CardSetInfo setInfo) { super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{3}"); - // Lands you control have "{T}: Add one mana of any color to your mana pool." + // Lands you control have "{T}: Add one mana of any color." this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityControlledEffect(new AnyColorManaAbility(), Duration.WhileOnBattlefield, StaticFilters.FILTER_LANDS, false))); - // {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/c/ChromaticSphere.java b/Mage.Sets/src/mage/cards/c/ChromaticSphere.java index 0f61d9f3037..d2ce6876375 100644 --- a/Mage.Sets/src/mage/cards/c/ChromaticSphere.java +++ b/Mage.Sets/src/mage/cards/c/ChromaticSphere.java @@ -47,7 +47,7 @@ public class ChromaticSphere extends CardImpl { public ChromaticSphere(UUID ownerId, CardSetInfo setInfo) { super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{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. ActivatedManaAbilityImpl ability = new AnyColorManaAbility(new GenericManaCost(1)); ability.addCost(new TapSourceCost()); ability.addCost(new SacrificeSourceCost()); diff --git a/Mage.Sets/src/mage/cards/c/ChromaticStar.java b/Mage.Sets/src/mage/cards/c/ChromaticStar.java index ec4dc6e0057..55b3e3c06cd 100644 --- a/Mage.Sets/src/mage/cards/c/ChromaticStar.java +++ b/Mage.Sets/src/mage/cards/c/ChromaticStar.java @@ -48,7 +48,7 @@ public class ChromaticStar extends CardImpl { public ChromaticStar(UUID ownerId, CardSetInfo setInfo) { super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{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. Ability ability = new AnyColorManaAbility(new GenericManaCost(1)); ability.addCost(new TapSourceCost()); ability.addCost(new SacrificeSourceCost()); diff --git a/Mage.Sets/src/mage/cards/c/ChromeMox.java b/Mage.Sets/src/mage/cards/c/ChromeMox.java index 9abb1f8c8f6..92e666f78cd 100644 --- a/Mage.Sets/src/mage/cards/c/ChromeMox.java +++ b/Mage.Sets/src/mage/cards/c/ChromeMox.java @@ -67,7 +67,7 @@ public class ChromeMox extends CardImpl { // Imprint - When Chrome Mox enters the battlefield, you may exile a nonartifact, nonland card from your hand. this.addAbility(new EntersBattlefieldTriggeredAbility(new ChromeMoxEffect(), true)); - // {tap}: Add one mana of any of the exiled card's colors to your mana pool. + // {tap}: Add one mana of any of the exiled card's colors. this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, new ChromeMoxManaEffect(), new TapSourceCost())); } @@ -136,7 +136,7 @@ class ChromeMoxManaEffect extends ManaEffect { ChromeMoxManaEffect() { super(); - staticText = "Add one mana of any of the exiled card's colors to your mana pool"; + staticText = "Add one mana of any of the exiled card's colors"; } ChromeMoxManaEffect(ChromeMoxManaEffect effect) { diff --git a/Mage.Sets/src/mage/cards/c/CityOfBrass.java b/Mage.Sets/src/mage/cards/c/CityOfBrass.java index d4dd2412d8a..4a8bff34c7d 100644 --- a/Mage.Sets/src/mage/cards/c/CityOfBrass.java +++ b/Mage.Sets/src/mage/cards/c/CityOfBrass.java @@ -47,7 +47,7 @@ public class CityOfBrass extends CardImpl { // Whenever City of Brass becomes tapped, it deals 1 damage to you. this.addAbility(new BecomesTappedSourceTriggeredAbility(new DamageControllerEffect(1, "it"))); - // {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/c/CoalitionRelic.java b/Mage.Sets/src/mage/cards/c/CoalitionRelic.java index e67b91c4d08..2c23040e8ce 100644 --- a/Mage.Sets/src/mage/cards/c/CoalitionRelic.java +++ b/Mage.Sets/src/mage/cards/c/CoalitionRelic.java @@ -57,11 +57,11 @@ public class CoalitionRelic extends CardImpl { public CoalitionRelic(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{3}"); - // {tap}: Add one mana of any color to your mana pool. + // {tap}: Add one mana of any color. this.addAbility(new AnyColorManaAbility()); // {tap}: Put a charge counter on Coalition Relic. this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new AddCountersSourceEffect(CounterType.CHARGE.createInstance(), true), new TapSourceCost())); - // 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. + // 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. this.addAbility(new BeginningOfPreCombatMainTriggeredAbility(new CoalitionRelicEffect(), TargetController.YOU, false)); } @@ -79,7 +79,7 @@ class CoalitionRelicEffect extends OneShotEffect { public CoalitionRelicEffect() { super(Outcome.PutManaInPool); - this.staticText = "remove all charge counters from Coalition Relic. Add one mana of any color to your mana pool for each charge counter removed this way"; + this.staticText = "remove all charge counters from Coalition Relic. Add one mana of any color for each charge counter removed this way"; } public CoalitionRelicEffect(final CoalitionRelicEffect effect) { diff --git a/Mage.Sets/src/mage/cards/c/ColdsteelHeart.java b/Mage.Sets/src/mage/cards/c/ColdsteelHeart.java index 62417bfcb2c..22bf54079ee 100644 --- a/Mage.Sets/src/mage/cards/c/ColdsteelHeart.java +++ b/Mage.Sets/src/mage/cards/c/ColdsteelHeart.java @@ -57,7 +57,7 @@ public class ColdsteelHeart extends CardImpl { this.addAbility(new EntersBattlefieldTappedAbility()); // As Coldsteel Heart enters the battlefield, choose a color. this.addAbility(new EntersBattlefieldAbility(new ChooseColorEffect(Outcome.Neutral), null, "As {this} enters the battlefield, choose a color.", null)); - // {T}: Add one mana of the chosen color to your mana pool. + // {T}: Add one mana of the chosen color. this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, new ColdsteelHeartManaEffect(), new TapSourceCost())); } @@ -75,7 +75,7 @@ class ColdsteelHeartManaEffect extends ManaEffect { public ColdsteelHeartManaEffect() { super(); - staticText = "Add one mana of the chosen color to your mana pool"; + staticText = "Add one mana of the chosen color"; } public ColdsteelHeartManaEffect(final ColdsteelHeartManaEffect effect) { diff --git a/Mage.Sets/src/mage/cards/c/CommandTower.java b/Mage.Sets/src/mage/cards/c/CommandTower.java index 6d254aa0216..15b9d4aa2c2 100644 --- a/Mage.Sets/src/mage/cards/c/CommandTower.java +++ b/Mage.Sets/src/mage/cards/c/CommandTower.java @@ -42,7 +42,7 @@ public class CommandTower extends CardImpl { public CommandTower(UUID ownerId, CardSetInfo setInfo) { super(ownerId,setInfo,new CardType[]{CardType.LAND},""); - // {tap}: Add to your mana pool one mana of any color in your commander's color identity. + // {tap}: Add one mana of any color in your commander's color identity. this.addAbility(new CommanderColorIdentityManaAbility()); } diff --git a/Mage.Sets/src/mage/cards/c/CommandersSphere.java b/Mage.Sets/src/mage/cards/c/CommandersSphere.java index bd3edc04d72..861299838ae 100644 --- a/Mage.Sets/src/mage/cards/c/CommandersSphere.java +++ b/Mage.Sets/src/mage/cards/c/CommandersSphere.java @@ -46,7 +46,7 @@ public class CommandersSphere extends CardImpl { public CommandersSphere(UUID ownerId, CardSetInfo setInfo) { super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{3}"); - // {tap}: Add to your mana pool one mana of any color in your commander's color identity. + // {tap}: Add one mana of any color in your commander's color identity. this.addAbility(new CommanderColorIdentityManaAbility()); // Sacrifice Commander's Sphere: Draw a card. diff --git a/Mage.Sets/src/mage/cards/c/ContractKilling.java b/Mage.Sets/src/mage/cards/c/ContractKilling.java index 507b002ff29..3f970dd0d0d 100644 --- a/Mage.Sets/src/mage/cards/c/ContractKilling.java +++ b/Mage.Sets/src/mage/cards/c/ContractKilling.java @@ -45,7 +45,7 @@ public class ContractKilling extends CardImpl { public ContractKilling(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{B}{B}"); - // Destroy target creature. Create two colorless Treasure artifact tokens with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool." + // Destroy target creature. Create two colorless Treasure artifact tokens with "{T}, Sacrifice this artifact: Add one mana of any color." this.getSpellAbility().addTarget(new TargetCreaturePermanent()); this.getSpellAbility().addEffect(new DestroyTargetEffect()); this.getSpellAbility().addEffect(new CreateTokenEffect(new TreasureToken(), 2)); diff --git a/Mage.Sets/src/mage/cards/c/CorruptedCrossroads.java b/Mage.Sets/src/mage/cards/c/CorruptedCrossroads.java index 94fdff9545e..62f3804096c 100644 --- a/Mage.Sets/src/mage/cards/c/CorruptedCrossroads.java +++ b/Mage.Sets/src/mage/cards/c/CorruptedCrossroads.java @@ -55,7 +55,7 @@ public class CorruptedCrossroads extends CardImpl { // {T}: Add {C}. this.addAbility(new ColorlessManaAbility()); - // {T}, Pay 1 life: Add one mana of any color to your mana pool. Spend this mana only to cast a spell with devoid. + // {T}, Pay 1 life: Add one mana of any color. Spend this mana only to cast a spell with devoid. Ability ability = new ConditionalAnyColorManaAbility(1, new BlightedCrossroadsManaBuilder()); ability.addCost(new PayLifeCost(1)); this.addAbility(ability); diff --git a/Mage.Sets/src/mage/cards/c/CorruptedGrafstone.java b/Mage.Sets/src/mage/cards/c/CorruptedGrafstone.java index 064326fb577..eb2d518b14c 100644 --- a/Mage.Sets/src/mage/cards/c/CorruptedGrafstone.java +++ b/Mage.Sets/src/mage/cards/c/CorruptedGrafstone.java @@ -60,7 +60,7 @@ public class CorruptedGrafstone extends CardImpl { // Corrupted Grafstone enters the battlefield tapped. this.addAbility(new EntersBattlefieldTappedAbility()); - // {T}: Choose a color of a card in your graveyard. Add one mana of that color to your mana pool. + // {T}: Choose a color of a card in your graveyard. Add one mana of that color. this.addAbility(new CorruptedGrafstoneManaAbility()); } @@ -102,7 +102,7 @@ class CorruptedGrafstoneManaEffect extends ManaEffect { public CorruptedGrafstoneManaEffect() { super(); computedMana = new Mana(); - this.staticText = "Choose a color of a card in your graveyard. Add one mana of that color to your mana pool"; + this.staticText = "Choose a color of a card in your graveyard. Add one mana of that color"; } public CorruptedGrafstoneManaEffect(final CorruptedGrafstoneManaEffect effect) { diff --git a/Mage.Sets/src/mage/cards/c/CrucibleOfTheSpiritDragon.java b/Mage.Sets/src/mage/cards/c/CrucibleOfTheSpiritDragon.java index 2b6ce08d95d..cf25643f103 100644 --- a/Mage.Sets/src/mage/cards/c/CrucibleOfTheSpiritDragon.java +++ b/Mage.Sets/src/mage/cards/c/CrucibleOfTheSpiritDragon.java @@ -67,7 +67,7 @@ public class CrucibleOfTheSpiritDragon extends CardImpl { ability.addCost(new TapSourceCost()); this.addAbility(ability); - // {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. + // {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. ability = new ConditionalAnyColorManaAbility( new TapSourceCost(), new RemovedCountersForCostValue(), diff --git a/Mage.Sets/src/mage/cards/c/CrumblingVestige.java b/Mage.Sets/src/mage/cards/c/CrumblingVestige.java index d6613e7d5cf..34a30716c76 100644 --- a/Mage.Sets/src/mage/cards/c/CrumblingVestige.java +++ b/Mage.Sets/src/mage/cards/c/CrumblingVestige.java @@ -48,7 +48,7 @@ public class CrumblingVestige extends CardImpl { // Crumbling Vestige enters the battlefield tapped. this.addAbility(new EntersBattlefieldTappedAbility()); - // 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. this.addAbility(new EntersBattlefieldTriggeredAbility(new AddManaOfAnyColorEffect(), false)); // {T}: Add {C} to you mana pool. diff --git a/Mage.Sets/src/mage/cards/c/CryptolithFragment.java b/Mage.Sets/src/mage/cards/c/CryptolithFragment.java index a4a7830729d..cb44fe9d3ae 100644 --- a/Mage.Sets/src/mage/cards/c/CryptolithFragment.java +++ b/Mage.Sets/src/mage/cards/c/CryptolithFragment.java @@ -58,7 +58,7 @@ public class CryptolithFragment extends CardImpl { // Cryptolith Fragment enters the battlefield tapped. this.addAbility(new EntersBattlefieldTappedAbility()); - // {T}: Add one mana of any color to your mana pool. Each player loses 1 life. + // {T}: Add one mana of any color. Each player loses 1 life. Ability AnyColorManaAbility = new AnyColorManaAbility(); AnyColorManaAbility.addEffect(new LoseLifeAllPlayersEffect(1)); this.addAbility(AnyColorManaAbility); diff --git a/Mage.Sets/src/mage/cards/c/CryptolithRite.java b/Mage.Sets/src/mage/cards/c/CryptolithRite.java index 46fcd000b70..05b75c9b379 100644 --- a/Mage.Sets/src/mage/cards/c/CryptolithRite.java +++ b/Mage.Sets/src/mage/cards/c/CryptolithRite.java @@ -47,7 +47,7 @@ public class CryptolithRite extends CardImpl { public CryptolithRite(UUID ownerId, CardSetInfo setInfo) { super(ownerId,setInfo,new CardType[]{CardType.ENCHANTMENT},"{1}{G}"); - // Creatures you control have "{T}: Add one mana of any color to your mana pool." + // Creatures you control have "{T}: Add one mana of any color." this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityControlledEffect( new AnyColorManaAbility(), Duration.WhileOnBattlefield, StaticFilters.FILTER_PERMANENT_CREATURES, false))); } diff --git a/Mage.Sets/src/mage/cards/c/CrystallineCrawler.java b/Mage.Sets/src/mage/cards/c/CrystallineCrawler.java index 00d94f74e78..653e6d13bd0 100644 --- a/Mage.Sets/src/mage/cards/c/CrystallineCrawler.java +++ b/Mage.Sets/src/mage/cards/c/CrystallineCrawler.java @@ -61,7 +61,7 @@ public class CrystallineCrawler extends CardImpl { new AddCountersSourceEffect(CounterType.P1P1.createInstance(), ColorsOfManaSpentToCastCount.getInstance(), true), null, "Converge - {this} enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.", null)); - // 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. this.addAbility(new AnyColorManaAbility(new RemoveCountersSourceCost(CounterType.P1P1.createInstance(1)))); // {T}: Put a +1/+1 counter on Crystalline Crawler. diff --git a/Mage.Sets/src/mage/cards/c/CultivatorsCaravan.java b/Mage.Sets/src/mage/cards/c/CultivatorsCaravan.java index 88d3c546423..48066af54cc 100644 --- a/Mage.Sets/src/mage/cards/c/CultivatorsCaravan.java +++ b/Mage.Sets/src/mage/cards/c/CultivatorsCaravan.java @@ -49,7 +49,7 @@ public class CultivatorsCaravan extends CardImpl { this.power = new MageInt(5); this.toughness = new MageInt(5); - // {T}: Add one mana of any color to your mana pool. + // {T}: Add one mana of any color. this.addAbility(new AnyColorManaAbility()); // Crew 3 diff --git a/Mage.Sets/src/mage/cards/c/CurseOfOpulence.java b/Mage.Sets/src/mage/cards/c/CurseOfOpulence.java index 1f3f0c7394f..d3baa57f299 100644 --- a/Mage.Sets/src/mage/cards/c/CurseOfOpulence.java +++ b/Mage.Sets/src/mage/cards/c/CurseOfOpulence.java @@ -66,7 +66,7 @@ public class CurseOfOpulence extends CardImpl { this.addAbility(new EnchantAbility(auraTarget.getTargetName())); // 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. + // It has "sacrifice this artifact: Add one mana of any color." Each opponent attacking that player does the same. this.addAbility(new EnchantedPlayerAttackedTriggeredAbility(new CurseOfOpulenceEffect())); } @@ -85,7 +85,7 @@ class CurseOfOpulenceEffect extends OneShotEffect { CurseOfOpulenceEffect() { super(Outcome.Benefit); this.staticText = "create a colorless artifact token named Gold. It has " - + "\"sacrifice this artifact: Add one mana of any color to your mana pool.\" " + + "\"sacrifice this artifact: Add one mana of any color.\" " + "Each opponent attacking that player does the same."; } diff --git a/Mage.Sets/src/mage/cards/d/DeadeyePlunderers.java b/Mage.Sets/src/mage/cards/d/DeadeyePlunderers.java index 9ae98ea7598..4f527e7212f 100644 --- a/Mage.Sets/src/mage/cards/d/DeadeyePlunderers.java +++ b/Mage.Sets/src/mage/cards/d/DeadeyePlunderers.java @@ -72,7 +72,7 @@ public class DeadeyePlunderers extends CardImpl { PermanentsOnBattlefieldCount count = new PermanentsOnBattlefieldCount(filter); this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostSourceEffect(count, count, Duration.WhileOnBattlefield))); - // {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." + // {2}{U}{B}: Create a colorless artifact token named Treasure with "{T}, Sacrifice this artifact: Add one mana of any color." this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new TreasureToken()), new ManaCostsImpl("{2}{U}{B}"))); } diff --git a/Mage.Sets/src/mage/cards/d/DeathriteShaman.java b/Mage.Sets/src/mage/cards/d/DeathriteShaman.java index 91d8071e99f..360555fdb3d 100644 --- a/Mage.Sets/src/mage/cards/d/DeathriteShaman.java +++ b/Mage.Sets/src/mage/cards/d/DeathriteShaman.java @@ -72,7 +72,7 @@ public class DeathriteShaman extends CardImpl { this.power = new MageInt(1); this.toughness = new MageInt(2); - // {T}: Exile target land card from a graveyard. Add one mana of any color to your mana pool. + // {T}: Exile target land card from a graveyard. Add one mana of any color. Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new ExileTargetEffect(), new TapSourceCost()); ability.addEffect(new AddManaOfAnyColorEffect()); ability.addTarget(new TargetCardInGraveyard(new FilterLandCard("land card from a graveyard"))); diff --git a/Mage.Sets/src/mage/cards/d/DepthsOfDesire.java b/Mage.Sets/src/mage/cards/d/DepthsOfDesire.java index 04130305f16..a8c0cd27c51 100644 --- a/Mage.Sets/src/mage/cards/d/DepthsOfDesire.java +++ b/Mage.Sets/src/mage/cards/d/DepthsOfDesire.java @@ -45,7 +45,7 @@ public class DepthsOfDesire extends CardImpl { public DepthsOfDesire(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{U}"); - // 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." + // Return target creature to its owner's hand. Create a colorless Treasure token with "{t}, Sacrifice this artifact: Add one mana of any color." this.getSpellAbility().addTarget(new TargetCreaturePermanent()); this.getSpellAbility().addEffect(new ReturnToHandTargetEffect()); this.getSpellAbility().addEffect(new CreateTokenEffect(new TreasureToken())); diff --git a/Mage.Sets/src/mage/cards/d/DiamondKaleidoscope.java b/Mage.Sets/src/mage/cards/d/DiamondKaleidoscope.java index 53d804be964..67389254e9f 100644 --- a/Mage.Sets/src/mage/cards/d/DiamondKaleidoscope.java +++ b/Mage.Sets/src/mage/cards/d/DiamondKaleidoscope.java @@ -67,7 +67,7 @@ public class DiamondKaleidoscope extends CardImpl { ability.addCost(new TapSourceCost()); this.addAbility(ability); - // Sacrifice a Prism token: Add one mana of any color to your mana pool. + // Sacrifice a Prism token: Add one mana of any color. ability = new AnyColorManaAbility(new SacrificeTargetCost(new TargetControlledPermanent(filter))); this.addAbility(ability); } diff --git a/Mage.Sets/src/mage/cards/d/DireFleetHoarder.java b/Mage.Sets/src/mage/cards/d/DireFleetHoarder.java index 047449c9b65..44ea3843469 100644 --- a/Mage.Sets/src/mage/cards/d/DireFleetHoarder.java +++ b/Mage.Sets/src/mage/cards/d/DireFleetHoarder.java @@ -51,7 +51,7 @@ public class DireFleetHoarder extends CardImpl { this.power = new MageInt(2); this.toughness = new MageInt(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." + // When Dire Fleet Hoarder dies, create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color." this.addAbility(new DiesTriggeredAbility(new CreateTokenEffect(new TreasureToken()))); } diff --git a/Mage.Sets/src/mage/cards/d/DivergentGrowth.java b/Mage.Sets/src/mage/cards/d/DivergentGrowth.java index 982bda8512e..3d19f0a4bdd 100644 --- a/Mage.Sets/src/mage/cards/d/DivergentGrowth.java +++ b/Mage.Sets/src/mage/cards/d/DivergentGrowth.java @@ -48,10 +48,10 @@ public class DivergentGrowth extends CardImpl { super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{G}"); - // Until end of turn, lands you control gain "{tap}: Add one mana of any color to your mana pool." + // Until end of turn, lands you control gain "{tap}: Add one mana of any color." ActivatedManaAbilityImpl ability = new AnyColorManaAbility(); Effect effect = new GainAbilityAllEffect(ability, Duration.EndOfTurn, new FilterControlledLandPermanent()); - effect.setText("Until end of turn, lands you control gain \"{T}: Add one mana of any color to your mana pool.\""); + effect.setText("Until end of turn, lands you control gain \"{T}: Add one mana of any color.\""); this.getSpellAbility().addEffect(effect); } diff --git a/Mage.Sets/src/mage/cards/d/DroneHolocron.java b/Mage.Sets/src/mage/cards/d/DroneHolocron.java index b8fc63793bf..ee896c25956 100644 --- a/Mage.Sets/src/mage/cards/d/DroneHolocron.java +++ b/Mage.Sets/src/mage/cards/d/DroneHolocron.java @@ -71,7 +71,7 @@ public class DroneHolocron extends CardImpl { ability.addCost(cost); this.addAbility(ability); - // {T}, Remove two charge counters from Drone Holocron: Add WU or UB to your mana pool. + // {T}, Remove two charge counters from Drone Holocron: Add WU or UB. cost = new RemoveCountersSourceCost(CounterType.CHARGE.createInstance(2)); ability = new SimpleManaAbility(Zone.BATTLEFIELD, new Mana(0, 0, 1, 1, 0, 0, 0, 0), new TapSourceCost()); diff --git a/Mage.Sets/src/mage/cards/d/DroverOfTheMighty.java b/Mage.Sets/src/mage/cards/d/DroverOfTheMighty.java index 43a6e628403..3f813fa42e8 100644 --- a/Mage.Sets/src/mage/cards/d/DroverOfTheMighty.java +++ b/Mage.Sets/src/mage/cards/d/DroverOfTheMighty.java @@ -63,7 +63,7 @@ public class DroverOfTheMighty extends CardImpl { // Drover of the Mighty gets +2/+2 as long as you control a Dinosaur. this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostSourceWhileControlsEffect(filter, 2, 2))); - // {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/d/DruidsRepository.java b/Mage.Sets/src/mage/cards/d/DruidsRepository.java index 0ea2ab7e2d7..ad6a16b8086 100644 --- a/Mage.Sets/src/mage/cards/d/DruidsRepository.java +++ b/Mage.Sets/src/mage/cards/d/DruidsRepository.java @@ -54,7 +54,7 @@ public class DruidsRepository extends CardImpl { // Whenever a creature you control attacks, put a charge counter on Druids' Repository. this.addAbility(new AttacksCreatureYouControlTriggeredAbility(new AddCountersSourceEffect(CounterType.CHARGE.createInstance()))); - // Remove a charge counter from Druids' Repository: Add one mana of any color to your mana pool. + // Remove a charge counter from Druids' Repository: Add one mana of any color. Ability ability = new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaOfAnyColorEffect(), new RemoveCountersSourceCost(CounterType.CHARGE.createInstance())); this.addAbility(ability); } diff --git a/Mage.Sets/src/mage/cards/e/ElementalResonance.java b/Mage.Sets/src/mage/cards/e/ElementalResonance.java index 81b89fc12f5..34911420b1b 100644 --- a/Mage.Sets/src/mage/cards/e/ElementalResonance.java +++ b/Mage.Sets/src/mage/cards/e/ElementalResonance.java @@ -67,7 +67,7 @@ public class ElementalResonance extends CardImpl { Ability ability = new EnchantAbility(auraTarget.getTargetName()); this.addAbility(ability); - // At the beginning of your precombat main phase, add mana equal to enchanted permanent's mana cost to your mana pool. + // At the beginning of your precombat main phase, add mana equal to enchanted permanent's mana cost. this.addAbility(new BeginningOfPreCombatMainTriggeredAbility(new ElementalResonanceEffect(), TargetController.YOU, false)); } @@ -85,7 +85,7 @@ class ElementalResonanceEffect extends OneShotEffect { ElementalResonanceEffect() { super(Outcome.PutManaInPool); - this.staticText = "add mana equal to enchanted permanent's mana cost to your mana pool."; + this.staticText = "add mana equal to enchanted permanent's mana cost."; } ElementalResonanceEffect(final ElementalResonanceEffect effect) { diff --git a/Mage.Sets/src/mage/cards/e/ElvishHarbinger.java b/Mage.Sets/src/mage/cards/e/ElvishHarbinger.java index 0db22581607..c98592fb804 100644 --- a/Mage.Sets/src/mage/cards/e/ElvishHarbinger.java +++ b/Mage.Sets/src/mage/cards/e/ElvishHarbinger.java @@ -61,7 +61,7 @@ public class ElvishHarbinger extends CardImpl { // 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. this.addAbility(new EntersBattlefieldTriggeredAbility(new SearchLibraryPutOnLibraryEffect(new TargetCardInLibrary(filter), true, true), true)); - // {tap}: Add one mana of any color to your mana pool. + // {tap}: Add one mana of any color. this.addAbility(new AnyColorManaAbility(new TapSourceCost())); } diff --git a/Mage.Sets/src/mage/cards/e/ExoticOrchard.java b/Mage.Sets/src/mage/cards/e/ExoticOrchard.java index cb42745e190..523cec6f7de 100644 --- a/Mage.Sets/src/mage/cards/e/ExoticOrchard.java +++ b/Mage.Sets/src/mage/cards/e/ExoticOrchard.java @@ -43,7 +43,7 @@ public class ExoticOrchard extends CardImpl { public ExoticOrchard(UUID ownerId, CardSetInfo setInfo) { super(ownerId,setInfo,new CardType[]{CardType.LAND},""); - // {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/f/FellwarStone.java b/Mage.Sets/src/mage/cards/f/FellwarStone.java index 57861384d23..ac1a29e3c4b 100644 --- a/Mage.Sets/src/mage/cards/f/FellwarStone.java +++ b/Mage.Sets/src/mage/cards/f/FellwarStone.java @@ -43,7 +43,7 @@ public class FellwarStone extends CardImpl { public FellwarStone(UUID ownerId, CardSetInfo setInfo) { super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{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. this.addAbility(new AnyColorLandsProduceManaAbility(TargetController.OPPONENT)); } diff --git a/Mage.Sets/src/mage/cards/f/FoodChain.java b/Mage.Sets/src/mage/cards/f/FoodChain.java index 5a781767be1..97a833d9ad3 100644 --- a/Mage.Sets/src/mage/cards/f/FoodChain.java +++ b/Mage.Sets/src/mage/cards/f/FoodChain.java @@ -58,7 +58,7 @@ public class FoodChain extends CardImpl { public FoodChain(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{2}{G}"); - // 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. + // 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. Ability ability = new SimpleManaAbility(Zone.BATTLEFIELD, new FoodChainManaEffect(), new ExileTargetCost(new TargetControlledCreaturePermanent(1, 1, new FilterControlledCreaturePermanent("a creature you control"), true))); this.addAbility(ability); } diff --git a/Mage.Sets/src/mage/cards/f/ForbiddenOrchard.java b/Mage.Sets/src/mage/cards/f/ForbiddenOrchard.java index ffa083c865c..528c8b0b406 100644 --- a/Mage.Sets/src/mage/cards/f/ForbiddenOrchard.java +++ b/Mage.Sets/src/mage/cards/f/ForbiddenOrchard.java @@ -51,7 +51,7 @@ public class ForbiddenOrchard extends CardImpl { public ForbiddenOrchard (UUID ownerId, CardSetInfo setInfo) { super(ownerId,setInfo,new CardType[]{CardType.LAND},null); - // {T}: Add one mana of any color to your mana pool. + // {T}: Add one mana of any color. this.addAbility(new AnyColorManaAbility()); // Whenever you tap Forbidden Orchard for mana, create a 1/1 colorless Spirit creature token under target opponent's control. diff --git a/Mage.Sets/src/mage/cards/f/ForsakenCity.java b/Mage.Sets/src/mage/cards/f/ForsakenCity.java index 67711a1dd5c..cb7284acd2f 100644 --- a/Mage.Sets/src/mage/cards/f/ForsakenCity.java +++ b/Mage.Sets/src/mage/cards/f/ForsakenCity.java @@ -60,7 +60,7 @@ public class ForsakenCity extends CardImpl { // At the beginning of your upkeep, you may exile a card from your hand. If you do, untap Forsaken City. this.addAbility(new BeginningOfUpkeepTriggeredAbility(new DoIfCostPaid(new UntapSourceEffect(), new ExileFromHandCost(new TargetCardInHand(filter))), TargetController.YOU, true)); - // {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/g/GemhideSliver.java b/Mage.Sets/src/mage/cards/g/GemhideSliver.java index a5392a0d312..755bf2b55e4 100644 --- a/Mage.Sets/src/mage/cards/g/GemhideSliver.java +++ b/Mage.Sets/src/mage/cards/g/GemhideSliver.java @@ -56,12 +56,12 @@ public class GemhideSliver extends CardImpl { this.power = new MageInt(1); this.toughness = new MageInt(1); - // All Slivers have "{tap}: Add one mana of any color to your mana pool." + // All Slivers have "{tap}: Add one mana of any color." Ability ability = new AnyColorManaAbility(); this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAllEffect(ability, Duration.WhileOnBattlefield, filter, - "All Slivers have \"{T}: Add one mana of any color to your mana pool.\""))); + "All Slivers have \"{T}: Add one mana of any color.\""))); } public GemhideSliver(final GemhideSliver card) { diff --git a/Mage.Sets/src/mage/cards/g/GemstoneArray.java b/Mage.Sets/src/mage/cards/g/GemstoneArray.java index 8c79266b6f6..136370ebad1 100644 --- a/Mage.Sets/src/mage/cards/g/GemstoneArray.java +++ b/Mage.Sets/src/mage/cards/g/GemstoneArray.java @@ -50,7 +50,7 @@ public class GemstoneArray extends CardImpl { // {2}: Put a charge counter on Gemstone Array. this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new AddCountersSourceEffect(CounterType.CHARGE.createInstance(1)), new ManaCostsImpl("{2}"))); - // Remove a charge counter from Gemstone Array: Add one mana of any color to your mana pool. + // Remove a charge counter from Gemstone Array: Add one mana of any color. this.addAbility(new AnyColorManaAbility(new RemoveCountersSourceCost(CounterType.CHARGE.createInstance(1)))); } diff --git a/Mage.Sets/src/mage/cards/g/GemstoneCaverns.java b/Mage.Sets/src/mage/cards/g/GemstoneCaverns.java index 902bf027f0d..b8e3a089469 100644 --- a/Mage.Sets/src/mage/cards/g/GemstoneCaverns.java +++ b/Mage.Sets/src/mage/cards/g/GemstoneCaverns.java @@ -67,13 +67,13 @@ public class GemstoneCaverns extends CardImpl { // 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. this.addAbility(new GemstoneCavernsAbility()); - // {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. Ability ability = new ConditionalManaAbility(Zone.BATTLEFIELD, new ConditionalManaEffect( new AddManaOfAnyColorEffect(), new BasicManaEffect(Mana.ColorlessMana(1)), new SourceHasCounterCondition(CounterType.LUCK), - "Add {C}. If {this} has a luck counter on it, instead add one mana of any color to your mana pool."), + "Add {C}. If {this} has a luck counter on it, instead add one mana of any color."), new TapSourceCost()); this.addAbility(ability); } diff --git a/Mage.Sets/src/mage/cards/g/GemstoneMine.java b/Mage.Sets/src/mage/cards/g/GemstoneMine.java index 430c47be42b..885fd0fe466 100644 --- a/Mage.Sets/src/mage/cards/g/GemstoneMine.java +++ b/Mage.Sets/src/mage/cards/g/GemstoneMine.java @@ -53,7 +53,7 @@ public class GemstoneMine extends CardImpl { // Gemstone Mine enters the battlefield with three mining counters on it. this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.MINING.createInstance(3)))); - // {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. + // {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. Ability ability = new AnyColorManaAbility(); ability.addCost(new RemoveCountersSourceCost(CounterType.MINING.createInstance(1))); ability.addEffect(new ConditionalOneShotEffect(new SacrificeSourceEffect(), new SourceHasCounterCondition(CounterType.MINING, 0, 0), "If there are no mining counters on {this}, sacrifice it")); diff --git a/Mage.Sets/src/mage/cards/g/GiftOfParadise.java b/Mage.Sets/src/mage/cards/g/GiftOfParadise.java index db024014daf..449129159ba 100644 --- a/Mage.Sets/src/mage/cards/g/GiftOfParadise.java +++ b/Mage.Sets/src/mage/cards/g/GiftOfParadise.java @@ -70,10 +70,10 @@ public class GiftOfParadise extends CardImpl { // When Gift of Paradise enters the battlefield, you gain 3 life. this.addAbility(new EntersBattlefieldTriggeredAbility(new GainLifeEffect(3))); - // 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/g/Gild.java b/Mage.Sets/src/mage/cards/g/Gild.java index cd72e91447e..27a2f1d2416 100644 --- a/Mage.Sets/src/mage/cards/g/Gild.java +++ b/Mage.Sets/src/mage/cards/g/Gild.java @@ -50,9 +50,9 @@ public class Gild extends CardImpl { // Exile target creature. this.getSpellAbility().addEffect(new ExileTargetEffect()); this.getSpellAbility().addTarget(new TargetCreaturePermanent()); - // Create a colorless artifact token named Gold. It has "Sacrifice this artifact: Add one mana of any color to your mana pool." + // Create a colorless artifact token named Gold. It has "Sacrifice this artifact: Add one mana of any color." Effect effect = new CreateTokenEffect(new GoldToken()); - effect.setText("Create a colorless artifact token named Gold. It has \"Sacrifice this artifact: Add one mana of any color to your mana pool.\""); + effect.setText("Create a colorless artifact token named Gold. It has \"Sacrifice this artifact: Add one mana of any color.\""); this.getSpellAbility().addEffect(effect); } diff --git a/Mage.Sets/src/mage/cards/g/GildedLotus.java b/Mage.Sets/src/mage/cards/g/GildedLotus.java index 37ff6079324..c2dbc8d634f 100644 --- a/Mage.Sets/src/mage/cards/g/GildedLotus.java +++ b/Mage.Sets/src/mage/cards/g/GildedLotus.java @@ -46,7 +46,7 @@ public class GildedLotus extends CardImpl { public GildedLotus(UUID ownerId, CardSetInfo setInfo) { super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{5}"); - // {tap}: Add three mana of any one color to your mana pool. + // {tap}: Add three mana of any one color. Ability ability = new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaOfAnyColorEffect(3), new TapSourceCost()); this.addAbility(ability); } diff --git a/Mage.Sets/src/mage/cards/g/GleamingBarrier.java b/Mage.Sets/src/mage/cards/g/GleamingBarrier.java index b1ff6fc4542..6ffb0d598a8 100644 --- a/Mage.Sets/src/mage/cards/g/GleamingBarrier.java +++ b/Mage.Sets/src/mage/cards/g/GleamingBarrier.java @@ -54,7 +54,7 @@ public class GleamingBarrier extends CardImpl { // Defender this.addAbility(DefenderAbility.getInstance()); - // 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." + // When Gleaming Barrier dies, create a colorless Treasure artifact token with "{t}, Sacrifice this artifact: Add one mana of any color." this.addAbility(new DiesTriggeredAbility(new CreateTokenEffect(new TreasureToken()))); } diff --git a/Mage.Sets/src/mage/cards/g/Glimmervoid.java b/Mage.Sets/src/mage/cards/g/Glimmervoid.java index 122c8c223a5..5715a54e98b 100644 --- a/Mage.Sets/src/mage/cards/g/Glimmervoid.java +++ b/Mage.Sets/src/mage/cards/g/Glimmervoid.java @@ -54,7 +54,7 @@ public class Glimmervoid extends CardImpl { TriggeredAbility triggered = new OnEventTriggeredAbility(GameEvent.EventType.END_TURN_STEP_PRE, "beginning of the end step", true, new SacrificeSourceEffect()); this.addAbility(new ConditionalTriggeredAbility(triggered, new PermanentsOnTheBattlefieldCondition(new FilterControlledArtifactPermanent(), ComparisonType.FEWER_THAN, 1), "At the beginning of the end step, if you control no artifacts, 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/g/GoldForgeGarrison.java b/Mage.Sets/src/mage/cards/g/GoldForgeGarrison.java index f056218b75d..3c6bc004781 100644 --- a/Mage.Sets/src/mage/cards/g/GoldForgeGarrison.java +++ b/Mage.Sets/src/mage/cards/g/GoldForgeGarrison.java @@ -59,7 +59,7 @@ public class GoldForgeGarrison extends CardImpl { ability.setRuleAtTheTop(true); this.addAbility(ability); - // {T}: Add two mana of any one color to your mana pool. + // {T}: Add two mana of any one color. this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, new AddManaOfAnyColorEffect(2), new TapSourceCost())); // {4}, {T}: Create a 4/4 colorless Golem artifact creature token. diff --git a/Mage.Sets/src/mage/cards/g/GrandColiseum.java b/Mage.Sets/src/mage/cards/g/GrandColiseum.java index 4965004a8bc..ddf3878ba60 100644 --- a/Mage.Sets/src/mage/cards/g/GrandColiseum.java +++ b/Mage.Sets/src/mage/cards/g/GrandColiseum.java @@ -50,7 +50,7 @@ public class GrandColiseum extends CardImpl { this.addAbility(new EntersBattlefieldTappedAbility()); // {tap}: Add {C}. this.addAbility(new ColorlessManaAbility()); - // {tap}: Add one mana of any color to your mana pool. Grand Coliseum deals 1 damage to you. + // {tap}: Add one mana of any color. Grand Coliseum deals 1 damage to you. Ability ability = new AnyColorManaAbility(); ability.addEffect(new DamageControllerEffect(1)); this.addAbility(ability); diff --git a/Mage.Sets/src/mage/cards/h/HarabazDruid.java b/Mage.Sets/src/mage/cards/h/HarabazDruid.java index 4e456780d1f..849624ace11 100644 --- a/Mage.Sets/src/mage/cards/h/HarabazDruid.java +++ b/Mage.Sets/src/mage/cards/h/HarabazDruid.java @@ -60,9 +60,9 @@ public class HarabazDruid extends CardImpl { this.power = new MageInt(0); this.toughness = new MageInt(1); - // {T}: Add X mana of any one color to your mana pool, where X is the number of Allies you control. + // {T}: Add X mana of any one color, where X is the number of Allies you control. this.addAbility(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 Allies you control", true)); + "Add X mana of any one color, where X is the number of Allies you control", true)); } public HarabazDruid(final HarabazDruid card) { diff --git a/Mage.Sets/src/mage/cards/h/HarvesterDruid.java b/Mage.Sets/src/mage/cards/h/HarvesterDruid.java index 7d88f211ba3..1e6574df23a 100644 --- a/Mage.Sets/src/mage/cards/h/HarvesterDruid.java +++ b/Mage.Sets/src/mage/cards/h/HarvesterDruid.java @@ -49,7 +49,7 @@ public class HarvesterDruid extends CardImpl { this.power = new MageInt(1); this.toughness = new MageInt(1); - // {tap}: Add to your mana pool one mana of any color that a land you control could produce. + // {tap}: Add one mana of any color that a land you control could produce. this.addAbility(new AnyColorLandsProduceManaAbility(TargetController.YOU)); } diff --git a/Mage.Sets/src/mage/cards/h/HavenOfTheSpiritDragon.java b/Mage.Sets/src/mage/cards/h/HavenOfTheSpiritDragon.java index bd131f93c30..c7f440eea7c 100644 --- a/Mage.Sets/src/mage/cards/h/HavenOfTheSpiritDragon.java +++ b/Mage.Sets/src/mage/cards/h/HavenOfTheSpiritDragon.java @@ -74,7 +74,7 @@ public class HavenOfTheSpiritDragon 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 Dragon creature spell. + // {T}: add one mana of any color. Spend this mana only to cast a Dragon creature spell. this.addAbility(new ConditionalAnyColorManaAbility(new TapSourceCost(), 1, new HavenOfTheSpiritManaBuilder(), true)); // {2}, {T}, Sacrifice Haven of the Spirit Dragon: Return target Dragon creature card or Ugin planeswalker card from your graveyard to your hand. diff --git a/Mage.Sets/src/mage/cards/h/HeartlessPillage.java b/Mage.Sets/src/mage/cards/h/HeartlessPillage.java index 82d888547a6..bdf46a432b3 100644 --- a/Mage.Sets/src/mage/cards/h/HeartlessPillage.java +++ b/Mage.Sets/src/mage/cards/h/HeartlessPillage.java @@ -52,11 +52,11 @@ public class HeartlessPillage extends CardImpl { this.getSpellAbility().addTarget(new TargetOpponent()); this.getSpellAbility().addEffect(new DiscardTargetEffect(2)); - // 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().addEffect(new ConditionalOneShotEffect( new CreateTokenEffect(new TreasureToken()), RaidCondition.instance, - "

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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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.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/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/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/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/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/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/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/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/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/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..16bcc1b5890 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"); 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/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/rules/CantCastTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/rules/CantCastTest.java index fe165b4c656..8e6bbedd2e7 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 @@ -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/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/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/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/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/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/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..05c7ba1fbad 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,7 +49,7 @@ 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." 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/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/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/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/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/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/Utils/mtg-cards-data.txt b/Utils/mtg-cards-data.txt index b93ec1fccc6..fbc03bc95b0 100644 --- a/Utils/mtg-cards-data.txt +++ b/Utils/mtg-cards-data.txt @@ -188,7 +188,7 @@ 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.| +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 target creature or player. 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.| @@ -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.| @@ -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.| @@ -373,7 +373,7 @@ 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.| @@ -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 target creature or player 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.| @@ -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.| @@ -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.| @@ -834,7 +834,7 @@ Uncanny Speed|Avacyn Restored|163|C|{1}{R}|Instant|||Target creature gets +3/+0 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.| 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,7 +844,7 @@ 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.| @@ -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.| @@ -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.| @@ -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.| @@ -1263,7 +1263,7 @@ 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.| @@ -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}.| @@ -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.)| @@ -1722,7 +1722,7 @@ Uba Mask|Champions of Kamigawa|272|R|{4}|Artifact|||If a player would draw a car 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.| @@ -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.| @@ -1949,7 +1949,7 @@ Tormod's Crypt|Chronicles|89|C|{0}|Artifact|||{T}, Sacrifice Tormod's Crypt: Exi 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.| +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.| @@ -2096,7 +2096,7 @@ Viashino Warrior|Classic Sixth Edition|213|C|{3}{R}|Creature - Viashino Warrior| 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.| 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.| @@ -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.| @@ -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}.| @@ -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.)| @@ -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| @@ -2974,7 +2974,7 @@ Ghoulcaller Gisa|Commander 2014 Edition|23|M|{3}{B}{B}|Legendary Creature - Huma 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.| 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.| @@ -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.| @@ -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.| @@ -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.| @@ -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.| @@ -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.| @@ -3884,7 +3884,7 @@ Arcbound Lancer|Darksteel|98|U|{7}|Artifact Creature - Beast|0|0|First strike$Mo 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.| 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| @@ -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,7 +4025,7 @@ 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.| 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.| @@ -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.| @@ -4234,7 +4234,7 @@ Notion Thief|Dragon's Maze|88|R|{2}{U}{B}|Creature - Human Rogue|3|1|Flash$If an 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.| @@ -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.)| @@ -4472,7 +4472,7 @@ Necromaster Dragon|Dragons of Tarkir|226|R|{3}{U}{B}|Creature - Dragon|4|4|Flyin 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| @@ -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| @@ -4623,7 +4623,7 @@ 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.| @@ -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.| @@ -5078,7 +5078,7 @@ 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.| @@ -5675,8 +5675,8 @@ 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.| 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.| @@ -5693,7 +5693,7 @@ Evasive Action|Duel Decks: Phyrexia vs. the Coalition|50|U|{1}{U}|Instant|||Doma 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.| 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.| @@ -6104,7 +6104,7 @@ Holy Day|Eighth Edition|23|C|{W}|Instant|||Prevent all combat damage that would 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.| 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.)| @@ -6196,7 +6196,7 @@ Planar Portal|Eighth Edition|311|R|{6}|Artifact|||{6}, {tap}: Search your librar Rod of Ruin|Eighth Edition|312|U|{4}|Artifact|||{3}, {tap}: Rod of Ruin deals 1 damage to target creature or player.| 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}.| @@ -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.| @@ -6453,7 +6453,7 @@ Stigma Lasher|Eventide|62|R|{R}{R}|Creature - Elemental Shaman|2|2|Wither (Th 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.| @@ -6677,7 +6677,7 @@ Delif's Cone|Fallen Empires|169|C|{0}|Artifact|||{tap}, Sacrifice Delif's Cone: 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}.| @@ -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.| @@ -6948,7 +6948,7 @@ 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.| +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 target creature or player. 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.| @@ -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.| @@ -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.| @@ -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.| @@ -7364,7 +7364,7 @@ Ankh of Mishra|Fifth Edition|348|R|{2}|Artifact|||Whenever a land enters the bat 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.| @@ -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}.| @@ -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.| @@ -8006,7 +8006,7 @@ 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.| @@ -8083,7 +8083,7 @@ 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.)| @@ -8093,7 +8093,7 @@ Fortune's Favor|Friday Night Magic|201|Special|{3}{U}|Instant|||Target opponent 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.| 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.| @@ -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,7 +8228,7 @@ 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.| 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.| @@ -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.| @@ -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.)| @@ -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}| @@ -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.| @@ -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.| @@ -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.| @@ -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}.| @@ -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.| @@ -9784,7 +9784,7 @@ Thornscape Apprentice|Invasion|215|C|{G}|Creature - Human Wizard|1|1|{R}, {tap}: 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.| +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.| @@ -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,7 +9912,7 @@ 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}.| @@ -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.| @@ -10200,7 +10200,7 @@ 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.| @@ -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.| @@ -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.| @@ -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.| @@ -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.| @@ -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,7 +11464,7 @@ 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.| 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.| @@ -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.| @@ -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.| @@ -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.| @@ -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.| @@ -11899,7 +11899,7 @@ Mudbutton Torchrunner|Lorwyn|185|C|{2}{R}|Creature - Goblin Warrior|1|1|When Mud 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.| 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.| @@ -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.| @@ -11980,7 +11980,7 @@ Moonglove Extract|Lorwyn|258|C|{3}|Artifact|||Sacrifice Moonglove Extract: Moong 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.| @@ -11993,13 +11993,13 @@ Kithkin Healer|Lorwyn|27|C|{2}{W}|Creature - Kithkin Cleric|2|2|{tap}: Prevent t 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.| @@ -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.| @@ -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.| @@ -12672,7 +12672,7 @@ Acidic Slime|Magic 2012|161|U|{3}{G}{G}|Creature - Ooze|2|2|Deathtouch (Any a 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.| @@ -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|| @@ -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}| @@ -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| @@ -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 target creature or player.${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.| @@ -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.| @@ -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 target creature or player.${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.| @@ -14128,10 +14128,10 @@ Acorn Catapult|Magic: The Gathering-Commander|241|R|{4}|Artifact|||{1}, {tap}: A 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}.| @@ -14154,7 +14154,7 @@ Azorius Chancery|Magic: The Gathering-Commander|265|C||Land|||Azorius Chancery e 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.)| @@ -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.| @@ -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,10 +14491,10 @@ 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.| @@ -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| @@ -14807,7 +14807,7 @@ Winter's Night|Masters Edition II|200|R|{R}{G}{W}|World Enchantment|||Whenever a 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.| 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,7 +14816,7 @@ 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.)| @@ -15034,14 +15034,14 @@ 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.| @@ -15049,7 +15049,7 @@ Life Chisel|Masters Edition III|199|R|{4}|Artifact|||Sacrifice a creature: You g 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.| 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.| +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 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.| Bayou|Masters Edition III|204|R||Land - Swamp Forest|||| @@ -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.| @@ -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.| @@ -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.| @@ -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.| @@ -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.| @@ -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.| @@ -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.| @@ -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.| @@ -16183,8 +16183,8 @@ Bottle Gnomes|Mirrodin|148|U|{3}|Artifact Creature - Gnome|1|3|Sacrifice Bottle 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,7 +16209,7 @@ 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.| +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 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.| 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.| @@ -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.)| @@ -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}| @@ -16688,7 +16688,7 @@ 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.| +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 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.)| 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| @@ -16707,11 +16707,11 @@ 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.)| +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 target creature or player.${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}| @@ -16722,15 +16722,15 @@ Vedalken Shackles|Modern Masters|218|M|{3}|Artifact|||You may choose not to unta 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.| @@ -16844,7 +16844,7 @@ Kiki-Jiki, Mirror Breaker|Modern Masters 2015 Edition|121|M|{2}{R}{R}{R}|Legenda Lightning Bolt|Modern Masters 2015 Edition|122|U|{R}|Instant|||Lightning Bolt deals 3 damage to target creature or player.| 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.| 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.)| @@ -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."| @@ -16953,7 +16953,7 @@ Kor Duelist|Modern Masters 2015 Edition|22|U|{W}|Creature - Kor Soldier|1|1|As l 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.| +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.| @@ -17119,7 +17119,7 @@ Thornbite Staff|Morningtide|145|U|{2}|Tribal Artifact - Shaman Equipment|||Equip 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.| @@ -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.| @@ -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.| @@ -17732,7 +17732,7 @@ 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.| @@ -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|| @@ -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,9 +18128,9 @@ 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.| +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 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.| +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.| @@ -18141,14 +18141,14 @@ Deserted Temple|Odyssey|320|R||Land|||{tap}: Add {C}.$${1}, {tap}: Untap target 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| @@ -18406,7 +18406,7 @@ Words of War|Onslaught|244|R|{2}{R}|Enchantment|||{1}: The next time you would d 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.)| @@ -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.| @@ -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.| @@ -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| @@ -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.)| @@ -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| @@ -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}.| @@ -19212,14 +19212,14 @@ Gaea's Herald|Planeshift|80|R|{1}{G}|Creature - Elf|1|1|Creature spells can't be 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."| +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.| @@ -19857,7 +19857,7 @@ 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.)| @@ -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,7 +19921,7 @@ 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.| @@ -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.| @@ -20133,10 +20133,10 @@ Willbreaker|Prerelease Events|237|R|{3}{U}{U}|Creature - Human Wizard|2|3|Whenev 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.| 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.| +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.| @@ -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.| @@ -20428,7 +20428,7 @@ Dromad Purebred|Ravnica: City of Guilds|15|C|{4}{W}|Creature - Camel Beast|1|5|W 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.| @@ -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}.| @@ -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.| @@ -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| @@ -21031,7 +21031,7 @@ Erg Raiders|Revised Edition|17|C|{1}{B}|Creature - Human Warrior|2|3|At the begi 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.| @@ -21106,7 +21106,7 @@ Basalt Monolith|Revised Edition|235|U|{3}|Artifact|||Basalt Monolith doesn't unt 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.| @@ -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|| @@ -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,7 +21381,7 @@ 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.| @@ -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.| @@ -21750,7 +21750,7 @@ Mimic Vat|Scars of Mirrodin|175|R|{3}|Artifact|||Imprint - Whenever a nontoken c 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.| 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.| @@ -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.| @@ -22201,7 +22201,7 @@ Wildfire|Seventh Edition|228|R|{4}{R}{R}|Sorcery|||Each player sacrifices four l 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.)| @@ -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.| @@ -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}.| @@ -23310,7 +23310,7 @@ 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.| @@ -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.| @@ -23896,10 +23896,10 @@ Emmessi Tome|Tempest Remastered|221|U|{4}|Artifact|||{5}, {tap}: Draw two cards, 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.| @@ -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.| @@ -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.| @@ -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.| @@ -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| @@ -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| @@ -24861,7 +24861,7 @@ 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.| 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.| @@ -24869,11 +24869,11 @@ Gauntlet of Power|Time Spiral|255|R|{5}|Artifact|||As Gauntlet of Power enters t 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.| @@ -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}.| @@ -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.| @@ -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.| @@ -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,7 +25526,7 @@ 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.| 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.| @@ -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.| @@ -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| @@ -26387,9 +26387,9 @@ Flowstone Sculpture|Vintage Masters|268|R|{6}|Artifact Creature - Shapeshifter|4 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,7 +26416,7 @@ 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.| @@ -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.| @@ -26562,14 +26562,14 @@ 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.)| @@ -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.)| @@ -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.)| @@ -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.| @@ -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.| @@ -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}| @@ -27558,7 +27558,7 @@ Vestige of Emrakul|Battle for Zendikar|136|C|{3}{R}|Creature - Eldrazi Drone|3|4 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.| @@ -27623,7 +27623,7 @@ 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.| @@ -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.| @@ -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}| @@ -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| @@ -28068,12 +28068,12 @@ 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.| +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 target creature or player.| 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.| @@ -28157,7 +28157,7 @@ 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.)| 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.| @@ -28242,10 +28242,10 @@ 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.| @@ -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}.| @@ -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.| @@ -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).| @@ -28824,7 +28824,7 @@ Dwynen, Gilt-Leaf Daen|Media Inserts|125|Special|{2}{G}{G}|Legendary Creature - 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."| +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.)| @@ -28880,7 +28880,7 @@ Chandra, Torch of Defiance|Media Inserts|180|M|{2}{R}{R}|Legendary Planeswalker 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. | @@ -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,7 +29160,7 @@ 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.| @@ -29174,7 +29174,7 @@ 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.| 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.| @@ -29293,10 +29293,10 @@ 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.| +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 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.| 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}.| @@ -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.| @@ -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.| @@ -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.| @@ -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.| @@ -29913,7 +29913,7 @@ Bomat Courier|Kaladesh|199|R|{1}|Artifact Creature - Construct|1|1|Haste$Wheneve 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.)| @@ -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}.| @@ -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.| @@ -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.| @@ -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|||| @@ -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.| @@ -30627,7 +30627,7 @@ Verdant Automaton|Aether Revolt|180|C|{2}|Artifact Creature - Construct|1|2|{3}{ 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.| 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.| @@ -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}| @@ -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}.| @@ -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}.| @@ -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}| @@ -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,7 +31868,7 @@ 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.| @@ -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.| @@ -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}.| @@ -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.| 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 —$&bull; Return target creature card from your graveyard to your hand.$&bull; 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.| @@ -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.”| +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 target creature or player.| 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."| +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.| 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}.| @@ -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,8 +32789,8 @@ 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}.| @@ -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.| 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.| @@ -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|