diff --git a/Mage.Sets/src/mage/cards/a/AerieWorshippers.java b/Mage.Sets/src/mage/cards/a/AerieWorshippers.java
index a12c399b259..f70f0b5e64a 100644
--- a/Mage.Sets/src/mage/cards/a/AerieWorshippers.java
+++ b/Mage.Sets/src/mage/cards/a/AerieWorshippers.java
@@ -53,7 +53,7 @@ public class AerieWorshippers extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(4);
- // Inspired - Whenever Aerie Worshipers becomes untapped, you may pay {2}{U}. If you do, create a 2/2 blue Bird enchantment creature token with flying.
+ // Inspired — Whenever Aerie Worshipers becomes untapped, you may pay {2}{U}. If you do, create a 2/2 blue Bird enchantment creature token with flying.
this.addAbility(new InspiredAbility(new DoIfCostPaid(new CreateTokenEffect(new AerieWorshippersBirdToken()), new ManaCostsImpl("{2}{U}"))));
}
diff --git a/Mage.Sets/src/mage/cards/a/AkoumHellkite.java b/Mage.Sets/src/mage/cards/a/AkoumHellkite.java
index 04ac8ad3a3a..dc8b44d7815 100644
--- a/Mage.Sets/src/mage/cards/a/AkoumHellkite.java
+++ b/Mage.Sets/src/mage/cards/a/AkoumHellkite.java
@@ -82,7 +82,7 @@ public class AkoumHellkite extends CardImpl {
class AkoumHellkiteTriggeredAbility extends TriggeredAbilityImpl {
- private static final String text = "Landfall - Whenever a land enters the battlefield under your control, {this} deals 1 damage to any target. "
+ private static final String text = "Landfall — Whenever a land enters the battlefield under your control, {this} deals 1 damage to any target. "
+ "If that land is a Mountain, Akoum Hellkite deals 2 damage to that permanent or player instead.";
public AkoumHellkiteTriggeredAbility() {
diff --git a/Mage.Sets/src/mage/cards/a/AkroanConscriptor.java b/Mage.Sets/src/mage/cards/a/AkroanConscriptor.java
index 9f0bde4a6fe..f90b399d6e0 100644
--- a/Mage.Sets/src/mage/cards/a/AkroanConscriptor.java
+++ b/Mage.Sets/src/mage/cards/a/AkroanConscriptor.java
@@ -65,7 +65,7 @@ public class AkroanConscriptor extends CardImpl {
this.power = new MageInt(3);
this.toughness = new MageInt(2);
- // Heroic - Whenever you cast a spell that targets Akroan Conscriptor, gain control of another target creature until end of turn. Untap that creature. It gains haste until end of turn.
+ // Heroic — Whenever you cast a spell that targets Akroan Conscriptor, gain control of another target creature until end of turn. Untap that creature. It gains haste until end of turn.
Ability ability = new HeroicAbility(new GainControlTargetEffect(Duration.EndOfTurn, true), false);
Effect effect = new UntapTargetEffect();
effect.setText("Untap that creature");
diff --git a/Mage.Sets/src/mage/cards/a/AkroanSkyguard.java b/Mage.Sets/src/mage/cards/a/AkroanSkyguard.java
index 12fb69787a2..3b8f220f03a 100644
--- a/Mage.Sets/src/mage/cards/a/AkroanSkyguard.java
+++ b/Mage.Sets/src/mage/cards/a/AkroanSkyguard.java
@@ -54,7 +54,7 @@ public class AkroanSkyguard extends CardImpl {
// Flying
this.addAbility(FlyingAbility.getInstance());
- // Heroic - Whenever you cast a spell that targets Akroan Skyguard, put a +1/+1 counter on Akroan Skyguard.
+ // Heroic — Whenever you cast a spell that targets Akroan Skyguard, put a +1/+1 counter on Akroan Skyguard.
this.addAbility(new HeroicAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance(), true)));
}
diff --git a/Mage.Sets/src/mage/cards/a/AllianceOfArms.java b/Mage.Sets/src/mage/cards/a/AllianceOfArms.java
index 3263ea37668..1cef473597b 100644
--- a/Mage.Sets/src/mage/cards/a/AllianceOfArms.java
+++ b/Mage.Sets/src/mage/cards/a/AllianceOfArms.java
@@ -72,7 +72,7 @@ class AllianceOfArmsEffect extends OneShotEffect {
public AllianceOfArmsEffect() {
super(Outcome.Detriment);
- this.staticText = "Join forces - Starting with you, each player may pay any amount of mana. Each player creates X 1/1 white Soldier creature tokens, where X is the total amount of mana paid this way";
+ this.staticText = "Join forces — Starting with you, each player may pay any amount of mana. Each player creates X 1/1 white Soldier creature tokens, where X is the total amount of mana paid this way";
}
public AllianceOfArmsEffect(final AllianceOfArmsEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/a/AnthemOfRakdos.java b/Mage.Sets/src/mage/cards/a/AnthemOfRakdos.java
index 71625783534..34aae5aaeaa 100644
--- a/Mage.Sets/src/mage/cards/a/AnthemOfRakdos.java
+++ b/Mage.Sets/src/mage/cards/a/AnthemOfRakdos.java
@@ -81,7 +81,7 @@ class AnthemOfRakdosHellbentEffect extends ReplacementEffectImpl {
public AnthemOfRakdosHellbentEffect() {
super(Duration.WhileOnBattlefield, Outcome.Damage);
- staticText = "Hellbent - As long as you have no cards in hand, if a source you control would deal damage to a permanent or player, it deals double that damage to that permanent or player instead.";
+ staticText = "Hellbent — As long as you have no cards in hand, if a source you control would deal damage to a permanent or player, it deals double that damage to that permanent or player instead.";
}
public AnthemOfRakdosHellbentEffect(final AnthemOfRakdosHellbentEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/a/AnthousaSetessanHero.java b/Mage.Sets/src/mage/cards/a/AnthousaSetessanHero.java
index 0a3831fcd01..de8b55b25b6 100644
--- a/Mage.Sets/src/mage/cards/a/AnthousaSetessanHero.java
+++ b/Mage.Sets/src/mage/cards/a/AnthousaSetessanHero.java
@@ -59,7 +59,7 @@ public class AnthousaSetessanHero extends CardImpl {
this.power = new MageInt(4);
this.toughness = new MageInt(5);
- // Heroic - Whenever you cast a spell that targets Anthousa, Setessan Hero, up to three target lands you control each become 2/2 Warrior creatures until end of turn. They're still lands.
+ // Heroic — Whenever you cast a spell that targets Anthousa, Setessan Hero, up to three target lands you control each become 2/2 Warrior creatures until end of turn. They're still lands.
Ability ability = new HeroicAbility(new BecomesCreatureTargetEffect(new CreatureToken(2, 2, "2/2 Warrior creature", SubType.WARRIOR),false,true, Duration.EndOfTurn));
ability.addTarget(new TargetControlledPermanent(0,3,new FilterControlledLandPermanent("lands"), false));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/a/ArahboRoarOfTheWorld.java b/Mage.Sets/src/mage/cards/a/ArahboRoarOfTheWorld.java
index d8feae173b7..fbf523e26ce 100644
--- a/Mage.Sets/src/mage/cards/a/ArahboRoarOfTheWorld.java
+++ b/Mage.Sets/src/mage/cards/a/ArahboRoarOfTheWorld.java
@@ -85,7 +85,7 @@ public class ArahboRoarOfTheWorld extends CardImpl {
Ability ability = new ConditionalTriggeredAbility(
new BeginningOfCombatTriggeredAbility(Zone.ALL, new BoostTargetEffect(3, 3, Duration.EndOfTurn), TargetController.YOU, false, false),
SourceOnBattlefieldOrCommandZoneCondition.instance,
- "Eminence - At the beginning of combat on your turn, if Arahbo, Roar of the World is in the command zone or on the battlefield, another target Cat you control gets +3/+3 until end of turn.");
+ "Eminence — At the beginning of combat on your turn, if Arahbo, Roar of the World is in the command zone or on the battlefield, another target Cat you control gets +3/+3 until end of turn.");
ability.addTarget(new TargetCreaturePermanent(filter));
ability.setAbilityWord(AbilityWord.EMINENCE);
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/a/ArbiterOfTheIdeal.java b/Mage.Sets/src/mage/cards/a/ArbiterOfTheIdeal.java
index de172fddb18..44e5c7b2f03 100644
--- a/Mage.Sets/src/mage/cards/a/ArbiterOfTheIdeal.java
+++ b/Mage.Sets/src/mage/cards/a/ArbiterOfTheIdeal.java
@@ -62,7 +62,7 @@ public class ArbiterOfTheIdeal extends CardImpl {
// Flying
this.addAbility(FlyingAbility.getInstance());
- // Inspired - Whenever Arbiter of the Ideal becomes untapped, reveal the top card of your library. If it's an artifact, creature, or land card, you may put it onto the battlefield with a manifestation counter on it. It's an enchantment in addition to its other types.
+ // Inspired — Whenever Arbiter of the Ideal becomes untapped, reveal the top card of your library. If it's an artifact, creature, or land card, you may put it onto the battlefield with a manifestation counter on it. It's an enchantment in addition to its other types.
this.addAbility(new InspiredAbility(new ArbiterOfTheIdealEffect()));
}
diff --git a/Mage.Sets/src/mage/cards/a/ArtisanOfForms.java b/Mage.Sets/src/mage/cards/a/ArtisanOfForms.java
index 7b1b4a739c5..93bd5a7fe2a 100644
--- a/Mage.Sets/src/mage/cards/a/ArtisanOfForms.java
+++ b/Mage.Sets/src/mage/cards/a/ArtisanOfForms.java
@@ -58,7 +58,7 @@ public class ArtisanOfForms extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(1);
- // Heroic - Whenever you cast a spell that targets Artisan of Forms, you may have Artisan of Forms become a copy of target creature and gain this ability.
+ // Heroic — Whenever you cast a spell that targets Artisan of Forms, you may have Artisan of Forms become a copy of target creature and gain this ability.
Effect effect = new CopyPermanentEffect(StaticFilters.FILTER_PERMANENT_CREATURE, new ArtisanOfFormsApplyToPermanent(), true);
effect.setText("have {this} become a copy of target creature and gain this ability");
Ability ability = new HeroicAbility(effect, true);
diff --git a/Mage.Sets/src/mage/cards/a/AshioksAdept.java b/Mage.Sets/src/mage/cards/a/AshioksAdept.java
index 4d8e6777e44..5a734506999 100644
--- a/Mage.Sets/src/mage/cards/a/AshioksAdept.java
+++ b/Mage.Sets/src/mage/cards/a/AshioksAdept.java
@@ -51,7 +51,7 @@ public class AshioksAdept extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(3);
- // Heroic - Whenever you cast a spell that targets Ashiok's Adept, each opponent discards a card.
+ // Heroic — Whenever you cast a spell that targets Ashiok's Adept, each opponent discards a card.
this.addAbility(new HeroicAbility(new DiscardEachPlayerEffect(TargetController.OPPONENT)));
}
diff --git a/Mage.Sets/src/mage/cards/a/AtarkaBeastbreaker.java b/Mage.Sets/src/mage/cards/a/AtarkaBeastbreaker.java
index 33edee63623..efac07480c9 100644
--- a/Mage.Sets/src/mage/cards/a/AtarkaBeastbreaker.java
+++ b/Mage.Sets/src/mage/cards/a/AtarkaBeastbreaker.java
@@ -51,7 +51,7 @@ public class AtarkaBeastbreaker extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(2);
- // Formidable - {4}{G}: Atarka Beastbreaker gets +4/+4 until end of turn. Activate this only if creatures you control have total power 8 or greater.
+ // Formidable — {4}{G}: Atarka Beastbreaker gets +4/+4 until end of turn. Activate this only if creatures you control have total power 8 or greater.
Ability ability = new ActivateIfConditionActivatedAbility(
Zone.BATTLEFIELD,
new BoostSourceEffect(4,4, Duration.EndOfTurn),
diff --git a/Mage.Sets/src/mage/cards/a/AtarkaPummeler.java b/Mage.Sets/src/mage/cards/a/AtarkaPummeler.java
index 631bbb377ec..e4e6a774451 100644
--- a/Mage.Sets/src/mage/cards/a/AtarkaPummeler.java
+++ b/Mage.Sets/src/mage/cards/a/AtarkaPummeler.java
@@ -60,7 +60,7 @@ public class AtarkaPummeler extends CardImpl {
this.power = new MageInt(4);
this.toughness = new MageInt(5);
- // Formidable - {3}{R}{R}: Creatures you control gain menace until end of turn. Activate this ability only if creature you control have total power 8 or greater. (They can't be blocked except by two or more creatures.)
+ // Formidable — {3}{R}{R}: Creatures you control gain menace until end of turn. Activate this ability only if creature you control have total power 8 or greater. (They can't be blocked except by two or more creatures.)
Ability ability = new ActivateIfConditionActivatedAbility(
Zone.BATTLEFIELD,
new GainAbilityAllEffect(new MenaceAbility(), Duration.EndOfTurn, filter),
diff --git a/Mage.Sets/src/mage/cards/b/BellowingSaddlebrute.java b/Mage.Sets/src/mage/cards/b/BellowingSaddlebrute.java
index 59f3558e889..eccf4bda2dd 100644
--- a/Mage.Sets/src/mage/cards/b/BellowingSaddlebrute.java
+++ b/Mage.Sets/src/mage/cards/b/BellowingSaddlebrute.java
@@ -58,7 +58,7 @@ public class BellowingSaddlebrute extends CardImpl {
this.addAbility(new ConditionalTriggeredAbility(
new EntersBattlefieldTriggeredAbility(new LoseLifeSourceControllerEffect(4)),
new InvertCondition(RaidCondition.instance),
- "Raid - When {this} enters the battlefield, you lose 4 life unless you attacked with a creature this turn"
+ "Raid — When {this} enters the battlefield, you lose 4 life unless you attacked with a creature this turn"
), new PlayerAttackedWatcher());
}
diff --git a/Mage.Sets/src/mage/cards/b/BiteOfTheBlackRose.java b/Mage.Sets/src/mage/cards/b/BiteOfTheBlackRose.java
index e66bf7968cf..8fb724ca755 100644
--- a/Mage.Sets/src/mage/cards/b/BiteOfTheBlackRose.java
+++ b/Mage.Sets/src/mage/cards/b/BiteOfTheBlackRose.java
@@ -70,7 +70,7 @@ class BiteOfTheBlackRoseEffect extends OneShotEffect {
BiteOfTheBlackRoseEffect() {
super(Outcome.Benefit);
- this.staticText = "Will of the council - Starting with you, each player votes for sickness or psychosis. If sickness gets more votes, creatures your opponents control get -2/-2 until end of turn. If psychosis gets more votes or the vote is tied, each opponent discards two cards";
+ this.staticText = "Will of the council — Starting with you, each player votes for sickness or psychosis. If sickness gets more votes, creatures your opponents control get -2/-2 until end of turn. If psychosis gets more votes or the vote is tied, each opponent discards two cards";
}
BiteOfTheBlackRoseEffect(final BiteOfTheBlackRoseEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/b/BloodsoakedChampion.java b/Mage.Sets/src/mage/cards/b/BloodsoakedChampion.java
index 3127c144a57..953b4c64c26 100644
--- a/Mage.Sets/src/mage/cards/b/BloodsoakedChampion.java
+++ b/Mage.Sets/src/mage/cards/b/BloodsoakedChampion.java
@@ -58,7 +58,7 @@ public class BloodsoakedChampion extends CardImpl {
// Bloodstained Brave can't block.
this.addAbility(new CantBlockAbility());
- // Raid - {1}{B}: Return Bloodstained Brave from your graveyard to the battlefield. Activate this ability only if you attacked with a creature this turn.
+ // Raid — {1}{B}: Return Bloodstained Brave from your graveyard to the battlefield. Activate this ability only if you attacked with a creature this turn.
Ability ability = new ConditionalActivatedAbility(
Zone.GRAVEYARD,
new ReturnSourceFromGraveyardToBattlefieldEffect(),
diff --git a/Mage.Sets/src/mage/cards/c/CabalRitual.java b/Mage.Sets/src/mage/cards/c/CabalRitual.java
index 11d69bd7854..9068db8d4d2 100644
--- a/Mage.Sets/src/mage/cards/c/CabalRitual.java
+++ b/Mage.Sets/src/mage/cards/c/CabalRitual.java
@@ -52,7 +52,7 @@ public class CabalRitual extends CardImpl {
new BasicManaEffect(Mana.BlackMana(5)),
new BasicManaEffect(Mana.BlackMana(3)),
new CardsInControllerGraveCondition(7),
- "Add {B}{B}{B}.
Threshold - Add {B}{B}{B}{B}{B} instead if seven or more cards are in your graveyard"));
+ "Add {B}{B}{B}.
Threshold — Add {B}{B}{B}{B}{B} instead if seven or more cards are in your graveyard"));
}
public CabalRitual(final CabalRitual card) {
diff --git a/Mage.Sets/src/mage/cards/c/CacklingFlames.java b/Mage.Sets/src/mage/cards/c/CacklingFlames.java
index 10a3f9e4fed..69bbea04285 100644
--- a/Mage.Sets/src/mage/cards/c/CacklingFlames.java
+++ b/Mage.Sets/src/mage/cards/c/CacklingFlames.java
@@ -55,7 +55,7 @@ public class CacklingFlames extends CardImpl {
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
new DamageTargetEffect(5),
HellbentCondition.instance,
- "
Hellbent - {this} deals 5 damage to that permanent or player instead if you have no cards in hand."));
+ "
Hellbent — {this} deals 5 damage to that permanent or player instead if you have no cards in hand."));
this.getSpellAbility().addTarget(new TargetAnyTarget());
}
diff --git a/Mage.Sets/src/mage/cards/c/ChorusOfTheTides.java b/Mage.Sets/src/mage/cards/c/ChorusOfTheTides.java
index d6ee131adaa..bdf0055fa37 100644
--- a/Mage.Sets/src/mage/cards/c/ChorusOfTheTides.java
+++ b/Mage.Sets/src/mage/cards/c/ChorusOfTheTides.java
@@ -52,7 +52,7 @@ public class ChorusOfTheTides extends CardImpl {
// Flying
this.addAbility(FlyingAbility.getInstance());
- // Heroic - Whenever you cast a spell that targets Chorus of the Tides, scry 1.
+ // Heroic — Whenever you cast a spell that targets Chorus of the Tides, scry 1.
this.addAbility(new HeroicAbility(new ScryEffect(1)));
}
diff --git a/Mage.Sets/src/mage/cards/c/CircleOfElders.java b/Mage.Sets/src/mage/cards/c/CircleOfElders.java
index 68761c27ee7..e63ba43655c 100644
--- a/Mage.Sets/src/mage/cards/c/CircleOfElders.java
+++ b/Mage.Sets/src/mage/cards/c/CircleOfElders.java
@@ -59,7 +59,7 @@ public class CircleOfElders extends CardImpl {
// Vigilance
this.addAbility(VigilanceAbility.getInstance());
- // Formidable - {T}: Add {C}{C}{C}. Activate this only if creatures you control have total power 8 or greater.
+ // Formidable — {T}: Add {C}{C}{C}. Activate this only if creatures you control have total power 8 or greater.
Ability ability = new ActivateIfConditionManaAbility(
Zone.BATTLEFIELD,
new BasicManaEffect(Mana.ColorlessMana(3)),
diff --git a/Mage.Sets/src/mage/cards/c/CoercivePortal.java b/Mage.Sets/src/mage/cards/c/CoercivePortal.java
index fb508f989f8..e1ec484e6bf 100644
--- a/Mage.Sets/src/mage/cards/c/CoercivePortal.java
+++ b/Mage.Sets/src/mage/cards/c/CoercivePortal.java
@@ -69,7 +69,7 @@ class CoercivePortalEffect extends OneShotEffect {
CoercivePortalEffect() {
super(Outcome.Benefit);
- this.staticText = "Will of the council - At the beginning of your upkeep, starting with you, each player votes for carnage or homage. If carnage gets more votes, sacrifice Coercive Portal and destroy all nonland permanents. If homage gets more votes or the vote is tied, draw a card";
+ this.staticText = "Will of the council — At the beginning of your upkeep, starting with you, each player votes for carnage or homage. If carnage gets more votes, sacrifice Coercive Portal and destroy all nonland permanents. If homage gets more votes or the vote is tied, draw a card";
}
CoercivePortalEffect(final CoercivePortalEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/c/CollectiveVoyage.java b/Mage.Sets/src/mage/cards/c/CollectiveVoyage.java
index 48dc3636ab1..88728d60278 100644
--- a/Mage.Sets/src/mage/cards/c/CollectiveVoyage.java
+++ b/Mage.Sets/src/mage/cards/c/CollectiveVoyage.java
@@ -71,7 +71,7 @@ class CollectiveVoyageEffect extends OneShotEffect {
public CollectiveVoyageEffect() {
super(Outcome.Detriment);
- this.staticText = "Join forces - Starting with you, each player may pay any amount of mana. Each player searches their library for up to X basic land cards, where X is the total amount of mana paid this way, puts them onto the battlefield tapped, then shuffles their library";
+ this.staticText = "Join forces — Starting with you, each player may pay any amount of mana. Each player searches their library for up to X basic land cards, where X is the total amount of mana paid this way, puts them onto the battlefield tapped, then shuffles their library";
}
public CollectiveVoyageEffect(final CollectiveVoyageEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/c/CraterElemental.java b/Mage.Sets/src/mage/cards/c/CraterElemental.java
index 935ac7afaa2..ce2863c02a0 100644
--- a/Mage.Sets/src/mage/cards/c/CraterElemental.java
+++ b/Mage.Sets/src/mage/cards/c/CraterElemental.java
@@ -68,7 +68,7 @@ public class CraterElemental extends CardImpl {
ability.addTarget(new TargetCreaturePermanent());
this.addAbility(ability);
- // Formidable - {2}{R}: Crater Elemental has base power 8 until end of turn. Activate this ability only if creatures you control have total power 8 or greater.
+ // Formidable — {2}{R}: Crater Elemental has base power 8 until end of turn. Activate this ability only if creatures you control have total power 8 or greater.
ability = new ActivateIfConditionActivatedAbility(
Zone.BATTLEFIELD,
new SetPowerSourceEffect(new StaticValue(8), Duration.EndOfTurn, SubLayer.SetPT_7b),
diff --git a/Mage.Sets/src/mage/cards/c/CratersClaws.java b/Mage.Sets/src/mage/cards/c/CratersClaws.java
index e844238119e..97ae8f450f4 100644
--- a/Mage.Sets/src/mage/cards/c/CratersClaws.java
+++ b/Mage.Sets/src/mage/cards/c/CratersClaws.java
@@ -48,7 +48,7 @@ public class CratersClaws extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{X}{R}");
// Crater's Claws deals X damage to any target.
- // Ferocious - Crater's Claws deals X plus 2 damage to that creature or player instead if you control a creature with power 4 or greater.
+ // Ferocious — Crater's Claws deals X plus 2 damage to that creature or player instead if you control a creature with power 4 or greater.
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
new DamageTargetEffect(new IntPlusDynamicValue(2, new ManacostVariableValue())),
new DamageTargetEffect(new ManacostVariableValue()),
diff --git a/Mage.Sets/src/mage/cards/c/CrystallineCrawler.java b/Mage.Sets/src/mage/cards/c/CrystallineCrawler.java
index 653e6d13bd0..4644270b05b 100644
--- a/Mage.Sets/src/mage/cards/c/CrystallineCrawler.java
+++ b/Mage.Sets/src/mage/cards/c/CrystallineCrawler.java
@@ -59,7 +59,7 @@ public class CrystallineCrawler extends CardImpl {
// Converge — Crystalline Crawler enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.
this.addAbility(new EntersBattlefieldAbility(
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));
+ 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.
this.addAbility(new AnyColorManaAbility(new RemoveCountersSourceCost(CounterType.P1P1.createInstance(1))));
diff --git a/Mage.Sets/src/mage/cards/c/CustodiSquire.java b/Mage.Sets/src/mage/cards/c/CustodiSquire.java
index 2a821426a29..dd0f91281c0 100644
--- a/Mage.Sets/src/mage/cards/c/CustodiSquire.java
+++ b/Mage.Sets/src/mage/cards/c/CustodiSquire.java
@@ -89,7 +89,7 @@ class CustodiSquireVoteEffect extends OneShotEffect {
CustodiSquireVoteEffect() {
super(Outcome.Benefit);
- this.staticText = "Will of the council - When {this} enters the battlefield, starting with you, each player votes for an artifact, creature, or enchantment card in your graveyard. Return each card with the most votes or tied for most votes to your hand";
+ this.staticText = "Will of the council — When {this} enters the battlefield, starting with you, each player votes for an artifact, creature, or enchantment card in your graveyard. Return each card with the most votes or tied for most votes to your hand";
}
CustodiSquireVoteEffect(final CustodiSquireVoteEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/c/CutthroatIlDal.java b/Mage.Sets/src/mage/cards/c/CutthroatIlDal.java
index d707cf1669b..c0a3df5cd53 100644
--- a/Mage.Sets/src/mage/cards/c/CutthroatIlDal.java
+++ b/Mage.Sets/src/mage/cards/c/CutthroatIlDal.java
@@ -57,7 +57,7 @@ public class CutthroatIlDal extends CardImpl {
// Hellbent - Cutthroat il-Dal has shadow as long as you have no cards in hand.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ConditionalContinuousEffect(
new GainAbilitySourceEffect(ShadowAbility.getInstance(), Duration.WhileOnBattlefield), HellbentCondition.instance,
- "Hellbent - {this} has shadow as long as you have no cards in hand"))); }
+ "Hellbent — {this} has shadow as long as you have no cards in hand"))); }
public CutthroatIlDal(final CutthroatIlDal card) {
super(card);
diff --git a/Mage.Sets/src/mage/cards/d/DarkPetition.java b/Mage.Sets/src/mage/cards/d/DarkPetition.java
index a170b72e5a7..ac7af3209be 100644
--- a/Mage.Sets/src/mage/cards/d/DarkPetition.java
+++ b/Mage.Sets/src/mage/cards/d/DarkPetition.java
@@ -51,9 +51,9 @@ public class DarkPetition extends CardImpl {
// Search your library for a card and put that card into your hand. Then shuffle your library.
this.getSpellAbility().addEffect(new SearchLibraryPutInHandEffect(new TargetCardInLibrary()));
- // Spell mastery - If there are two or more instant and/or sorcery cards in your graveyard, add {B}{B}{B}.
+ // Spell mastery — If there are two or more instant and/or sorcery cards in your graveyard, add {B}{B}{B}.
Effect effect = new ConditionalOneShotEffect(new AddManaToManaPoolSourceControllerEffect(Mana.BlackMana(3)),
- SpellMasteryCondition.instance, "
Spell mastery - If there are two or more instant and/or sorcery cards in your graveyard, add {B}{B}{B}");
+ SpellMasteryCondition.instance, "
Spell mastery — If there are two or more instant and/or sorcery cards in your graveyard, add {B}{B}{B}");
this.getSpellAbility().addEffect(effect);
}
diff --git a/Mage.Sets/src/mage/cards/d/DeadeyeRigHauler.java b/Mage.Sets/src/mage/cards/d/DeadeyeRigHauler.java
index 57d5ba84fdd..8fc708b907f 100644
--- a/Mage.Sets/src/mage/cards/d/DeadeyeRigHauler.java
+++ b/Mage.Sets/src/mage/cards/d/DeadeyeRigHauler.java
@@ -57,7 +57,7 @@ public class DeadeyeRigHauler extends CardImpl {
// 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.
Ability ability = new ConditionalTriggeredAbility(new EntersBattlefieldTriggeredAbility(new ReturnToHandTargetEffect(), true), RaidCondition.instance,
- "Raid - When {this} enters the battlefield, if you attacked with a creature this turn, you may return target creature to its owner's hand.");
+ "Raid — When {this} enters the battlefield, if you attacked with a creature this turn, you may return target creature to its owner's hand.");
ability.addTarget(new TargetCreaturePermanent());
this.addAbility(ability, new PlayerAttackedWatcher());
}
diff --git a/Mage.Sets/src/mage/cards/d/DeadeyeTormentor.java b/Mage.Sets/src/mage/cards/d/DeadeyeTormentor.java
index 9e9e44ae286..ec6eb634465 100644
--- a/Mage.Sets/src/mage/cards/d/DeadeyeTormentor.java
+++ b/Mage.Sets/src/mage/cards/d/DeadeyeTormentor.java
@@ -57,7 +57,7 @@ public class DeadeyeTormentor extends CardImpl {
// Raid — When Deadeye Tormentor enters the battlefield, if you attacked with a creature this turn, target opponent discards a card.
Ability ability = new ConditionalTriggeredAbility(new EntersBattlefieldTriggeredAbility(new DiscardTargetEffect(1)), RaidCondition.instance,
- "Raid - When {this} enters the battlefield, if you attacked with a creature this turn, target opponent discards a card.");
+ "Raid — When {this} enters the battlefield, if you attacked with a creature this turn, target opponent discards a card.");
ability.addTarget(new TargetOpponent());
this.addAbility(ability, new PlayerAttackedWatcher());
}
diff --git a/Mage.Sets/src/mage/cards/d/DeepwaterHypnotist.java b/Mage.Sets/src/mage/cards/d/DeepwaterHypnotist.java
index 0d9364785ac..4318a094cb8 100644
--- a/Mage.Sets/src/mage/cards/d/DeepwaterHypnotist.java
+++ b/Mage.Sets/src/mage/cards/d/DeepwaterHypnotist.java
@@ -63,7 +63,7 @@ public class DeepwaterHypnotist extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(1);
- // Inspired - Whenever Deepwater Hypnotist becomes untapped, target creature an opponent controls gets -3/-0 until end of turn.
+ // Inspired — Whenever Deepwater Hypnotist becomes untapped, target creature an opponent controls gets -3/-0 until end of turn.
Ability ability = new InspiredAbility(new BoostTargetEffect(-3,0,Duration.EndOfTurn));
ability.addTarget(new TargetCreaturePermanent(filter));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/d/Demonfire.java b/Mage.Sets/src/mage/cards/d/Demonfire.java
index 186976479eb..1fa4a2cab62 100644
--- a/Mage.Sets/src/mage/cards/d/Demonfire.java
+++ b/Mage.Sets/src/mage/cards/d/Demonfire.java
@@ -69,7 +69,7 @@ public class Demonfire extends CardImpl {
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
new DamageTargetEffect(new ManacostVariableValue(), false),
HellbentCondition.instance,
- "
Hellbent - If you have no cards in hand, {this} can't be countered by spells or abilities and the damage can't be prevented."));
+ "
Hellbent — If you have no cards in hand, {this} can't be countered by spells or abilities and the damage can't be prevented."));
// can't be countered
Effect effect = new CantBeCounteredSourceEffect();
effect.setText("");
diff --git a/Mage.Sets/src/mage/cards/d/DemonsJester.java b/Mage.Sets/src/mage/cards/d/DemonsJester.java
index be8c2c4188b..1754b7dd750 100644
--- a/Mage.Sets/src/mage/cards/d/DemonsJester.java
+++ b/Mage.Sets/src/mage/cards/d/DemonsJester.java
@@ -59,7 +59,7 @@ public class DemonsJester extends CardImpl {
// Hellbent - Demon's Jester gets +2/+1 as long as you have no cards in hand.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ConditionalContinuousEffect(
new BoostSourceEffect(2,1,Duration.WhileOnBattlefield), HellbentCondition.instance,
- "Hellbent - {this} gets +2/+1 as long as you have no cards in hand")));
+ "Hellbent — {this} gets +2/+1 as long as you have no cards in hand")));
}
public DemonsJester(final DemonsJester card) {
diff --git a/Mage.Sets/src/mage/cards/d/Demoralize.java b/Mage.Sets/src/mage/cards/d/Demoralize.java
index fc29a2b247a..51435fbb231 100644
--- a/Mage.Sets/src/mage/cards/d/Demoralize.java
+++ b/Mage.Sets/src/mage/cards/d/Demoralize.java
@@ -59,7 +59,7 @@ public class Demoralize extends CardImpl {
new ConditionalOneShotEffect(
new AddContinuousEffectToGame(new CantBlockAllEffect(StaticFilters.FILTER_PERMANENT_CREATURES, Duration.EndOfTurn)),
new CardsInControllerGraveCondition(7),
- "
Threshold - If seven or more cards are in your graveyard, creatures can't block this turn"
+ "
Threshold — If seven or more cards are in your graveyard, creatures can't block this turn"
));
}
diff --git a/Mage.Sets/src/mage/cards/d/Draco.java b/Mage.Sets/src/mage/cards/d/Draco.java
index 9132028b6fb..12af257b086 100644
--- a/Mage.Sets/src/mage/cards/d/Draco.java
+++ b/Mage.Sets/src/mage/cards/d/Draco.java
@@ -81,7 +81,7 @@ class DracoCostReductionEffect extends CostModificationEffectImpl {
public DracoCostReductionEffect() {
super(Duration.WhileOnStack, Outcome.Benefit, CostModificationType.REDUCE_COST);
- staticText = "Domain - {this} costs {2} less to cast for each basic land type among lands you control.";
+ staticText = "Domain — {this} costs {2} less to cast for each basic land type among lands you control.";
}
protected DracoCostReductionEffect(final DracoCostReductionEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/d/DragonScarredBear.java b/Mage.Sets/src/mage/cards/d/DragonScarredBear.java
index d3fdb0f0663..1c6dc5d5ca7 100644
--- a/Mage.Sets/src/mage/cards/d/DragonScarredBear.java
+++ b/Mage.Sets/src/mage/cards/d/DragonScarredBear.java
@@ -53,7 +53,7 @@ public class DragonScarredBear extends CardImpl {
this.power = new MageInt(3);
this.toughness = new MageInt(2);
- // Formidable - {1}{G}: Regenerate Dragon-Scarred Bear. Activate this only if creatures you control have total power 8 or greater.
+ // Formidable — {1}{G}: Regenerate Dragon-Scarred Bear. Activate this only if creatures you control have total power 8 or greater.
Ability ability = new ActivateIfConditionActivatedAbility(
Zone.BATTLEFIELD,
new RegenerateSourceEffect(),
diff --git a/Mage.Sets/src/mage/cards/d/DragonWhisperer.java b/Mage.Sets/src/mage/cards/d/DragonWhisperer.java
index 1692643f3fd..6197d7437e1 100644
--- a/Mage.Sets/src/mage/cards/d/DragonWhisperer.java
+++ b/Mage.Sets/src/mage/cards/d/DragonWhisperer.java
@@ -70,7 +70,7 @@ public class DragonWhisperer extends CardImpl {
new BoostSourceEffect(1, 0, Duration.EndOfTurn),
new ManaCostsImpl("{1}{R}")));
- // - {4}{R}{R}: Create a 4/4 red Dragon creature token with flying. Activate this ability only if creatures you control have total power 8 or greater.
+ // — {4}{R}{R}: Create a 4/4 red Dragon creature token with flying. Activate this ability only if creatures you control have total power 8 or greater.
Ability ability = new ActivateIfConditionActivatedAbility(
Zone.BATTLEFIELD,
new CreateTokenEffect(new DragonToken()),
diff --git a/Mage.Sets/src/mage/cards/e/EdgarMarkov.java b/Mage.Sets/src/mage/cards/e/EdgarMarkov.java
index 40a6da44f23..b5ed346cac6 100644
--- a/Mage.Sets/src/mage/cards/e/EdgarMarkov.java
+++ b/Mage.Sets/src/mage/cards/e/EdgarMarkov.java
@@ -78,7 +78,7 @@ public class EdgarMarkov extends CardImpl {
Ability ability = new ConditionalTriggeredAbility(
new SpellCastControllerTriggeredAbility(Zone.ALL, new CreateTokenEffect(new EdgarMarkovToken()), filter2, false, false),
SourceOnBattlefieldOrCommandZoneCondition.instance,
- "Eminence - Whenever you cast another Vampire spell, if {this} is in the command zone or on the battlefield, create a 1/1 black Vampire creature token.");
+ "Eminence — Whenever you cast another Vampire spell, if {this} is in the command zone or on the battlefield, create a 1/1 black Vampire creature token.");
ability.setAbilityWord(AbilityWord.EMINENCE);
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/e/EliteSkirmisher.java b/Mage.Sets/src/mage/cards/e/EliteSkirmisher.java
index 94ed1b806ac..b45b68092e5 100644
--- a/Mage.Sets/src/mage/cards/e/EliteSkirmisher.java
+++ b/Mage.Sets/src/mage/cards/e/EliteSkirmisher.java
@@ -52,7 +52,7 @@ public class EliteSkirmisher extends CardImpl {
this.power = new MageInt(3);
this.toughness = new MageInt(1);
- // Heroic - Whenever you cast a spell that targets Elite Skirmisher, you may tap target creature.
+ // Heroic — Whenever you cast a spell that targets Elite Skirmisher, you may tap target creature.
Ability ability = new HeroicAbility(new TapTargetEffect(), true);
ability.addTarget(new TargetCreaturePermanent());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/e/EmbodimentOfFury.java b/Mage.Sets/src/mage/cards/e/EmbodimentOfFury.java
index ed0225c0978..1522f411110 100644
--- a/Mage.Sets/src/mage/cards/e/EmbodimentOfFury.java
+++ b/Mage.Sets/src/mage/cards/e/EmbodimentOfFury.java
@@ -74,7 +74,7 @@ public class EmbodimentOfFury extends CardImpl {
// Land creatures you control have trample.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityControlledEffect(TrampleAbility.getInstance(), Duration.WhileOnBattlefield, filterLandCreatures)));
- // Landfall - Whenever a land enters the battlefield under your control, you may have target land you control
+ // Landfall — Whenever a land enters the battlefield under your control, you may have target land you control
// become a 3/3 Elemental creature with haste until end of turn. It's still a land.
Ability ability = new LandfallAbility(new BecomesCreatureTargetEffect(new EmbodimentOfFuryToken(), false, true, Duration.EndOfTurn), true);
ability.addTarget(new TargetPermanent(new FilterControlledLandPermanent()));
diff --git a/Mage.Sets/src/mage/cards/e/EmbodimentOfInsight.java b/Mage.Sets/src/mage/cards/e/EmbodimentOfInsight.java
index 13481664dab..f7508e379e3 100644
--- a/Mage.Sets/src/mage/cards/e/EmbodimentOfInsight.java
+++ b/Mage.Sets/src/mage/cards/e/EmbodimentOfInsight.java
@@ -74,7 +74,7 @@ public class EmbodimentOfInsight extends CardImpl {
// Land creatures you control have vigilance.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityControlledEffect(VigilanceAbility.getInstance(), Duration.WhileOnBattlefield, filterLandCreatures)));
- // Landfall - Whenever a land enters the battlefield under you control, you may have target land you control
+ // Landfall — Whenever a land enters the battlefield under you control, you may have target land you control
// become a 3/3 Elemental creature with haste until end of turn. It's still a land.
Ability ability = new LandfallAbility(new BecomesCreatureTargetEffect(new EmbodimentOfInsightToken(), false, true, Duration.EndOfTurn), true);
ability.addTarget(new TargetPermanent(new FilterControlledLandPermanent()));
diff --git a/Mage.Sets/src/mage/cards/e/Epicenter.java b/Mage.Sets/src/mage/cards/e/Epicenter.java
index 70f553a8b86..b474ab89c43 100644
--- a/Mage.Sets/src/mage/cards/e/Epicenter.java
+++ b/Mage.Sets/src/mage/cards/e/Epicenter.java
@@ -62,7 +62,7 @@ public class Epicenter extends CardImpl {
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
new EpicenterEffect(),
new CardsInControllerGraveCondition(7),
- "
Threshold - Each player sacrifices all lands he or she controls instead if seven or more cards are in your graveyard."));
+ "
Threshold — Each player sacrifices all lands he or she controls instead if seven or more cards are in your graveyard."));
this.getSpellAbility().addTarget(new TargetPlayer());
}
diff --git a/Mage.Sets/src/mage/cards/e/EtchedChampion.java b/Mage.Sets/src/mage/cards/e/EtchedChampion.java
index a21f74ad7be..6828dd283e4 100644
--- a/Mage.Sets/src/mage/cards/e/EtchedChampion.java
+++ b/Mage.Sets/src/mage/cards/e/EtchedChampion.java
@@ -51,7 +51,7 @@ import mage.filter.predicate.mageobject.ColorPredicate;
* @author North
*/
public class EtchedChampion extends CardImpl {
- private static final String ruleText = "Metalcraft - Etched Champion has protection from all colors as long as you control three or more artifacts";
+ private static final String ruleText = "Metalcraft — Etched Champion has protection from all colors as long as you control three or more artifacts";
private static final FilterCard filter = new FilterCard("all colors");
diff --git a/Mage.Sets/src/mage/cards/e/ExquisiteFirecraft.java b/Mage.Sets/src/mage/cards/e/ExquisiteFirecraft.java
index 49bd943d4fa..8866bb61053 100644
--- a/Mage.Sets/src/mage/cards/e/ExquisiteFirecraft.java
+++ b/Mage.Sets/src/mage/cards/e/ExquisiteFirecraft.java
@@ -54,7 +54,7 @@ public class ExquisiteFirecraft extends CardImpl {
this.getSpellAbility().addTarget(new TargetAnyTarget());
this.getSpellAbility().addEffect(new DamageTargetEffect(4));
- // Spell mastery - If there are two or more instant and/or sorcery cards in your graveyard, Exquisite Firecraft can't be countered by spells or abilities.
+ // Spell mastery — If there are two or more instant and/or sorcery cards in your graveyard, Exquisite Firecraft can't be countered by spells or abilities.
ContinuousRuleModifyingEffect cantBeCountered = new CantBeCounteredSourceEffect();
ConditionalContinuousRuleModifyingEffect conditionalCantBeCountered = new ConditionalContinuousRuleModifyingEffect(cantBeCountered, SpellMasteryCondition.instance);
conditionalCantBeCountered.setText("
If there are two or more instant and/or sorcery cards in your graveyard, {this} can't be countered by spells or abilities");
diff --git a/Mage.Sets/src/mage/cards/f/FaithsShield.java b/Mage.Sets/src/mage/cards/f/FaithsShield.java
index c126094461d..c5af9943f2f 100644
--- a/Mage.Sets/src/mage/cards/f/FaithsShield.java
+++ b/Mage.Sets/src/mage/cards/f/FaithsShield.java
@@ -78,7 +78,7 @@ class FaithsShieldEffect extends OneShotEffect {
public FaithsShieldEffect() {
super(Outcome.Protect);
staticText = "Target permanent you control gains protection from the color of your choice until end of turn."
- + "
Fateful hour - If you have 5 or less life, instead you and each permanent you control gain protection from the color of your choice until end of turn";
+ + "
Fateful hour — If you have 5 or less life, instead you and each permanent you control gain protection from the color of your choice until end of turn";
}
public FaithsShieldEffect(final FaithsShieldEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/f/FarWanderings.java b/Mage.Sets/src/mage/cards/f/FarWanderings.java
index 82c859e7226..95f0f581c14 100644
--- a/Mage.Sets/src/mage/cards/f/FarWanderings.java
+++ b/Mage.Sets/src/mage/cards/f/FarWanderings.java
@@ -55,7 +55,7 @@ public class FarWanderings extends CardImpl {
new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(0, 3, StaticFilters.FILTER_BASIC_LAND_CARD), true, true),
new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(0, 1, StaticFilters.FILTER_BASIC_LAND_CARD), true, true),
new CardsInControllerGraveCondition(7),
- "Search your library for a basic land card, put that card onto the battlefield tapped, then shuffle your library.
Threshold - If seven or more cards are in your graveyard, instead search your library for up to three basic land cards, put them onto the battlefield tapped, then shuffle your library.");
+ "Search your library for a basic land card, put that card onto the battlefield tapped, then shuffle your library.
Threshold — If seven or more cards are in your graveyard, instead search your library for up to three basic land cards, put them onto the battlefield tapped, then shuffle your library.");
this.getSpellAbility().addEffect(effect);
}
diff --git a/Mage.Sets/src/mage/cards/f/FelhideSpiritbinder.java b/Mage.Sets/src/mage/cards/f/FelhideSpiritbinder.java
index 3ffef384f9e..538727a3585 100644
--- a/Mage.Sets/src/mage/cards/f/FelhideSpiritbinder.java
+++ b/Mage.Sets/src/mage/cards/f/FelhideSpiritbinder.java
@@ -70,7 +70,7 @@ public class FelhideSpiritbinder extends CardImpl {
this.power = new MageInt(3);
this.toughness = new MageInt(4);
- // Inspired - Whenever Felhide Spiritbinder becomes untapped, you may pay {1}{R}. If you do, create a token that's a copy of another target creature except it's an enchantment in addition to its other types. It gains haste. Exile it at the beginning of the next end step.
+ // Inspired — Whenever Felhide Spiritbinder becomes untapped, you may pay {1}{R}. If you do, create a token that's a copy of another target creature except it's an enchantment in addition to its other types. It gains haste. Exile it at the beginning of the next end step.
Ability ability = new InspiredAbility(new DoIfCostPaid(new FelhideSpiritbinderEffect(), new ManaCostsImpl("{1}{R}"), "Use effect of {source}?"));
ability.addTarget(new TargetCreaturePermanent(filter));
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/f/FlamewakePhoenix.java b/Mage.Sets/src/mage/cards/f/FlamewakePhoenix.java
index da64c996d13..e6dbb996697 100644
--- a/Mage.Sets/src/mage/cards/f/FlamewakePhoenix.java
+++ b/Mage.Sets/src/mage/cards/f/FlamewakePhoenix.java
@@ -64,7 +64,7 @@ public class FlamewakePhoenix extends CardImpl {
// Flamewake Phoenix attacks each turn if able.
this.addAbility(new AttacksEachCombatStaticAbility());
- // Ferocious - At the beginning of combat on your turn, if you control a creature with power 4 or greater, you may pay {R}. If you do, return Flamewake Phoenix from your graveyard to the battlefield.
+ // Ferocious — At the beginning of combat on your turn, if you control a creature with power 4 or greater, you may pay {R}. If you do, return Flamewake Phoenix from your graveyard to the battlefield.
this.addAbility(new ConditionalTriggeredAbility(
new BeginningOfCombatTriggeredAbility(
Zone.GRAVEYARD,
diff --git a/Mage.Sets/src/mage/cards/f/ForceAway.java b/Mage.Sets/src/mage/cards/f/ForceAway.java
index d1b31da3f57..bcf0ff5472a 100644
--- a/Mage.Sets/src/mage/cards/f/ForceAway.java
+++ b/Mage.Sets/src/mage/cards/f/ForceAway.java
@@ -51,7 +51,7 @@ public class ForceAway extends CardImpl {
this.getSpellAbility().addEffect(new ReturnToHandTargetEffect());
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
- // Ferocious - If you control a creature with power 4 or greater, you may draw a card. If you do, discard a card.
+ // Ferocious — If you control a creature with power 4 or greater, you may draw a card. If you do, discard a card.
Effect effect = new ConditionalOneShotEffect(new DrawDiscardControllerEffect(1,1, true),
FerociousCondition.instance , "
Ferocious — If you control a creature with power 4 or greater, you may draw a card. If you do, discard a card");
this.getSpellAbility().addEffect(effect);
diff --git a/Mage.Sets/src/mage/cards/f/ForceDenial.java b/Mage.Sets/src/mage/cards/f/ForceDenial.java
index 4e41371172a..4a1825dbcfe 100644
--- a/Mage.Sets/src/mage/cards/f/ForceDenial.java
+++ b/Mage.Sets/src/mage/cards/f/ForceDenial.java
@@ -60,7 +60,7 @@ public class ForceDenial extends CardImpl {
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
new CounterTargetEffect(),
HateCondition.instance,
- "
Hate - If an opponent lost life from a source other than combat damage this turn, counter that spell instead."));
+ "
Hate — If an opponent lost life from a source other than combat damage this turn, counter that spell instead."));
this.getSpellAbility().addTarget(new TargetSpell());
this.getSpellAbility().addWatcher(new LifeLossOtherFromCombatWatcher());
diff --git a/Mage.Sets/src/mage/cards/f/ForlornPseudamma.java b/Mage.Sets/src/mage/cards/f/ForlornPseudamma.java
index ea3e3223f73..28150994587 100644
--- a/Mage.Sets/src/mage/cards/f/ForlornPseudamma.java
+++ b/Mage.Sets/src/mage/cards/f/ForlornPseudamma.java
@@ -55,7 +55,7 @@ public class ForlornPseudamma extends CardImpl {
// Intimidate
this.addAbility(IntimidateAbility.getInstance());
- // Inspired - Whenever Forlorn Pseudamma becomes untapped, you may pay {2}{B}. If you do, create a 2/2 black Zombie enchantment creature token.
+ // Inspired — Whenever Forlorn Pseudamma becomes untapped, you may pay {2}{B}. If you do, create a 2/2 black Zombie enchantment creature token.
this.addAbility(new InspiredAbility(new DoIfCostPaid(new CreateTokenEffect(new ForlornPseudammaZombieToken()), new ManaCostsImpl("{2}{B}"))));
}
diff --git a/Mage.Sets/src/mage/cards/f/FrontierMastodon.java b/Mage.Sets/src/mage/cards/f/FrontierMastodon.java
index afecb7cbd42..c4ec48c6273 100644
--- a/Mage.Sets/src/mage/cards/f/FrontierMastodon.java
+++ b/Mage.Sets/src/mage/cards/f/FrontierMastodon.java
@@ -50,7 +50,7 @@ public class FrontierMastodon extends CardImpl {
this.power = new MageInt(3);
this.toughness = new MageInt(2);
- // Ferocious - Frontier Mastodon enters the battlefield with a +1/+1 counter on it if you control a creature with power 4 or greater.
+ // Ferocious — Frontier Mastodon enters the battlefield with a +1/+1 counter on it if you control a creature with power 4 or greater.
this.addAbility(new EntersBattlefieldAbility(
new AddCountersSourceEffect(CounterType.P1P1.createInstance(1)),
FerociousCondition.instance,
diff --git a/Mage.Sets/src/mage/cards/g/GathanRaiders.java b/Mage.Sets/src/mage/cards/g/GathanRaiders.java
index 27d2ff7a175..0e50ecac7e5 100644
--- a/Mage.Sets/src/mage/cards/g/GathanRaiders.java
+++ b/Mage.Sets/src/mage/cards/g/GathanRaiders.java
@@ -59,7 +59,7 @@ public class GathanRaiders extends CardImpl {
// Hellbent - Gathan Raiders gets +2/+2 as long as you have no cards in hand.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ConditionalContinuousEffect(
new BoostSourceEffect(2,2,Duration.WhileOnBattlefield), HellbentCondition.instance,
- "Hellbent - {this} gets +2/+2 as long as you have no cards in hand")));
+ "Hellbent — {this} gets +2/+2 as long as you have no cards in hand")));
// Morph-Discard a card.
this.addAbility(new MorphAbility(this, new DiscardCardCost()));
}
diff --git a/Mage.Sets/src/mage/cards/g/GeistOfTheLonelyVigil.java b/Mage.Sets/src/mage/cards/g/GeistOfTheLonelyVigil.java
index 716e220f265..a086ce1d3ad 100644
--- a/Mage.Sets/src/mage/cards/g/GeistOfTheLonelyVigil.java
+++ b/Mage.Sets/src/mage/cards/g/GeistOfTheLonelyVigil.java
@@ -65,7 +65,7 @@ public class GeistOfTheLonelyVigil extends CardImpl {
Effect effect = new ConditionalAsThoughEffect(
new CanAttackAsThoughItDidntHaveDefenderSourceEffect(Duration.WhileOnBattlefield),
DeliriumCondition.instance);
- effect.setText("Delirium - {this} can attack as though it didn't have defender as long as there are four or more card types among cards in your graveyard");
+ effect.setText("Delirium — {this} can attack as though it didn't have defender as long as there are four or more card types among cards in your graveyard");
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
}
diff --git a/Mage.Sets/src/mage/cards/g/GeyserfieldStalker.java b/Mage.Sets/src/mage/cards/g/GeyserfieldStalker.java
index 265d515e2c3..8e64d05eea4 100644
--- a/Mage.Sets/src/mage/cards/g/GeyserfieldStalker.java
+++ b/Mage.Sets/src/mage/cards/g/GeyserfieldStalker.java
@@ -52,7 +52,7 @@ public class GeyserfieldStalker extends CardImpl {
// Menace
this.addAbility(new MenaceAbility());
- // Landfall - Whenever a land enters the battlefield under your control, Geyserfield Stalker gets +2/+2 until end of turn.
+ // Landfall — Whenever a land enters the battlefield under your control, Geyserfield Stalker gets +2/+2 until end of turn.
this.addAbility(new LandfallAbility(new BoostSourceEffect(2, 2, Duration.EndOfTurn), false));
}
diff --git a/Mage.Sets/src/mage/cards/g/GideonsPhalanx.java b/Mage.Sets/src/mage/cards/g/GideonsPhalanx.java
index 3ed8c94bc04..6a012da973e 100644
--- a/Mage.Sets/src/mage/cards/g/GideonsPhalanx.java
+++ b/Mage.Sets/src/mage/cards/g/GideonsPhalanx.java
@@ -54,11 +54,11 @@ public class GideonsPhalanx extends CardImpl {
// Create four 2/2 white Knight creature tokens with vigilance.
this.getSpellAbility().addEffect(new CreateTokenEffect(new KnightToken(), 4));
- // Spell mastery - If there are two or more instant and/or sorcery cards in your graveyard, creatures you control gain indestructible until end of turn.
+ // Spell mastery — If there are two or more instant and/or sorcery cards in your graveyard, creatures you control gain indestructible until end of turn.
Effect effect = new ConditionalOneShotEffect(
new AddContinuousEffectToGame(new GainAbilityAllEffect(IndestructibleAbility.getInstance(), Duration.EndOfTurn, new FilterControlledCreaturePermanent())),
SpellMasteryCondition.instance,
- "
Spell mastery - If there are two or more instant and/or sorcery cards in your graveyard, creatures you control gain indestructible until end of turn");
+ "
Spell mastery — If there are two or more instant and/or sorcery cards in your graveyard, creatures you control gain indestructible until end of turn");
this.getSpellAbility().addEffect(effect);
}
diff --git a/Mage.Sets/src/mage/cards/g/GladeWatcher.java b/Mage.Sets/src/mage/cards/g/GladeWatcher.java
index 8f44492647a..2b3e1c24ff7 100644
--- a/Mage.Sets/src/mage/cards/g/GladeWatcher.java
+++ b/Mage.Sets/src/mage/cards/g/GladeWatcher.java
@@ -57,7 +57,7 @@ public class GladeWatcher extends CardImpl {
// Defender
this.addAbility(DefenderAbility.getInstance());
- // Formidable - {G}: Glade Watcher can attack this turn as though it didn't have defender. Activate this ability only if creatures you control have total power 8 or greater.
+ // Formidable — {G}: Glade Watcher can attack this turn as though it didn't have defender. Activate this ability only if creatures you control have total power 8 or greater.
Ability ability = new ActivateIfConditionActivatedAbility(
Zone.BATTLEFIELD,
new CanAttackAsThoughItDidntHaveDefenderSourceEffect(Duration.EndOfTurn),
diff --git a/Mage.Sets/src/mage/cards/g/GobhobblerRats.java b/Mage.Sets/src/mage/cards/g/GobhobblerRats.java
index 76ec6cdd07f..364006d06c8 100644
--- a/Mage.Sets/src/mage/cards/g/GobhobblerRats.java
+++ b/Mage.Sets/src/mage/cards/g/GobhobblerRats.java
@@ -60,7 +60,7 @@ public class GobhobblerRats extends CardImpl {
// Hellbent - As long as you have no cards in hand, Gobhobbler Rats gets +1/+0 and has "{B}: Regenerate Gobhobbler Rats."
Ability ability = new SimpleStaticAbility(Zone.BATTLEFIELD, new ConditionalContinuousEffect(
- new BoostSourceEffect(1,0, Duration.WhileOnBattlefield), HellbentCondition.instance, "Hellbent - As long as you have no cards in hand, {this} gets +1/+0"));
+ new BoostSourceEffect(1,0, Duration.WhileOnBattlefield), HellbentCondition.instance, "Hellbent — As long as you have no cards in hand, {this} gets +1/+0"));
Ability gainedAbility = new SimpleActivatedAbility(Zone.BATTLEFIELD, new RegenerateSourceEffect(), new ManaCostsImpl("{B}"));
ability.addEffect(new ConditionalContinuousEffect(
new GainAbilitySourceEffect(gainedAbility, Duration.WhileOnBattlefield), HellbentCondition.instance, "and has \"{B}: Regenerate {this}.\""));
diff --git a/Mage.Sets/src/mage/cards/g/GodFavoredGeneral.java b/Mage.Sets/src/mage/cards/g/GodFavoredGeneral.java
index 18e71fe7452..8f15d680551 100644
--- a/Mage.Sets/src/mage/cards/g/GodFavoredGeneral.java
+++ b/Mage.Sets/src/mage/cards/g/GodFavoredGeneral.java
@@ -53,7 +53,7 @@ public class GodFavoredGeneral extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(1);
- // Inspired - Whenever God-Favored General becomes untapped, you may pay {2}{W}. If you do, create two 1/1 white Soldier enchantment creature tokens.
+ // Inspired — Whenever God-Favored General becomes untapped, you may pay {2}{W}. If you do, create two 1/1 white Soldier enchantment creature tokens.
this.addAbility(new InspiredAbility(new DoIfCostPaid(new CreateTokenEffect(new GodFavoredGeneralSoldierToken(), 2), new ManaCostsImpl("{2}{W}"))));
}
diff --git a/Mage.Sets/src/mage/cards/g/GrizzlyFate.java b/Mage.Sets/src/mage/cards/g/GrizzlyFate.java
index c4d920b6fe5..bd54800e618 100644
--- a/Mage.Sets/src/mage/cards/g/GrizzlyFate.java
+++ b/Mage.Sets/src/mage/cards/g/GrizzlyFate.java
@@ -55,7 +55,7 @@ public class GrizzlyFate extends CardImpl {
Effect effect = new ConditionalOneShotEffect(new CreateTokenEffect(new BearToken(), 4),
new CreateTokenEffect(new BearToken(), 2),
new CardsInControllerGraveCondition(7),
- "Create two 2/2 green Bear creature tokens.
Threshold - Create four 2/2 green Bear creature tokens instead if seven or more cards are in your graveyard.");
+ "Create two 2/2 green Bear creature tokens.
Threshold — Create four 2/2 green Bear creature tokens instead if seven or more cards are in your graveyard.");
this.getSpellAbility().addEffect(effect);
// Flashback {5}{G}{G}
diff --git a/Mage.Sets/src/mage/cards/g/GuardianOfTazeem.java b/Mage.Sets/src/mage/cards/g/GuardianOfTazeem.java
index 64996b3853d..4bbd31d00c0 100644
--- a/Mage.Sets/src/mage/cards/g/GuardianOfTazeem.java
+++ b/Mage.Sets/src/mage/cards/g/GuardianOfTazeem.java
@@ -69,7 +69,7 @@ public class GuardianOfTazeem extends CardImpl {
// Flying
this.addAbility(FlyingAbility.getInstance());
- // Landfall - Whenever a land enters the battlefield under you control, tap target creature an opponent controls. If that land is an Island, that creature doesn't untap during its controller's next untap step.
+ // Landfall — Whenever a land enters the battlefield under you control, tap target creature an opponent controls. If that land is an Island, that creature doesn't untap during its controller's next untap step.
Ability ability = new GuardianOfTazeemTriggeredAbility();
ability.addTarget(new TargetCreaturePermanent(filter));
this.addAbility(ability);
@@ -124,7 +124,7 @@ class GuardianOfTazeemTriggeredAbility extends TriggeredAbilityImpl {
@Override
public String getRule() {
- return "Landfall - Whenever a land enters the battlefield under your control, " + super.getRule();
+ return "Landfall — Whenever a land enters the battlefield under your control, " + super.getRule();
}
}
diff --git a/Mage.Sets/src/mage/cards/h/HeartlashCinder.java b/Mage.Sets/src/mage/cards/h/HeartlashCinder.java
index 0606066095f..b6685e431de 100644
--- a/Mage.Sets/src/mage/cards/h/HeartlashCinder.java
+++ b/Mage.Sets/src/mage/cards/h/HeartlashCinder.java
@@ -67,7 +67,7 @@ public class HeartlashCinder extends CardImpl {
// Chroma - When Heartlash Cinder enters the battlefield, it gets +X/+0 until end of turn, where X is the number of red mana symbols in the mana costs of permanents you control.
ContinuousEffect effect = new BoostSourceEffect(new ChromaHeartlashCinderCount(), new StaticValue(0), Duration.EndOfTurn, true);
- effect.setText("Chroma - When Heartlash Cinder enters the battlefield, it gets +X/+0 until end of turn, where X is the number of red mana symbols in the mana costs of permanents you control.");
+ effect.setText("Chroma — When Heartlash Cinder enters the battlefield, it gets +X/+0 until end of turn, where X is the number of red mana symbols in the mana costs of permanents you control.");
this.addAbility(new EntersBattlefieldTriggeredAbility(effect, false, true));
}
diff --git a/Mage.Sets/src/mage/cards/h/HeirOfTheWilds.java b/Mage.Sets/src/mage/cards/h/HeirOfTheWilds.java
index 0b78fed34f6..4920ce96e55 100644
--- a/Mage.Sets/src/mage/cards/h/HeirOfTheWilds.java
+++ b/Mage.Sets/src/mage/cards/h/HeirOfTheWilds.java
@@ -61,7 +61,7 @@ public class HeirOfTheWilds extends CardImpl {
Ability ability = new ConditionalTriggeredAbility(
new AttacksTriggeredAbility(new BoostSourceEffect(1,1,Duration.EndOfTurn), false),
FerociousCondition.instance,
- "Ferocious - Whenever {this} attacks, if you control a creature with power 4 or greater, {this} gets +1/+1 until end of turn."
+ "Ferocious — Whenever {this} attacks, if you control a creature with power 4 or greater, {this} gets +1/+1 until end of turn."
);
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/h/HeroOfGomaFada.java b/Mage.Sets/src/mage/cards/h/HeroOfGomaFada.java
index 96233fd4d1a..ce03d6341b9 100644
--- a/Mage.Sets/src/mage/cards/h/HeroOfGomaFada.java
+++ b/Mage.Sets/src/mage/cards/h/HeroOfGomaFada.java
@@ -54,7 +54,7 @@ public class HeroOfGomaFada extends CardImpl {
this.power = new MageInt(4);
this.toughness = new MageInt(3);
- // Rally - Whenever Hero of Goma Fada or another Ally enters the battlefield under your control, creatures you control gain indestructible until end of turn.
+ // Rally — Whenever Hero of Goma Fada or another Ally enters the battlefield under your control, creatures you control gain indestructible until end of turn.
Ability ability = new AllyEntersBattlefieldTriggeredAbility(
new GainAbilityAllEffect(IndestructibleAbility.getInstance(), Duration.EndOfTurn,
new FilterControlledCreaturePermanent("creatures you control")), false);
diff --git a/Mage.Sets/src/mage/cards/h/HeroOfIroas.java b/Mage.Sets/src/mage/cards/h/HeroOfIroas.java
index a30f1f21fe5..748afba3402 100644
--- a/Mage.Sets/src/mage/cards/h/HeroOfIroas.java
+++ b/Mage.Sets/src/mage/cards/h/HeroOfIroas.java
@@ -63,7 +63,7 @@ public class HeroOfIroas extends CardImpl {
// Aura spells you cast cost {1} less to cast.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new SpellsCostReductionControllerEffect(filter, 1)));
- // Heroic - Whenever you cast a spell that targets Hero of Iroas, put a +1/+1 counter on Hero of Iroas.
+ // Heroic — Whenever you cast a spell that targets Hero of Iroas, put a +1/+1 counter on Hero of Iroas.
this.addAbility(new HeroicAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance())));
}
diff --git a/Mage.Sets/src/mage/cards/h/HeroOfLeinaTower.java b/Mage.Sets/src/mage/cards/h/HeroOfLeinaTower.java
index 0acf76c40b5..54cc004eaac 100644
--- a/Mage.Sets/src/mage/cards/h/HeroOfLeinaTower.java
+++ b/Mage.Sets/src/mage/cards/h/HeroOfLeinaTower.java
@@ -60,7 +60,7 @@ public class HeroOfLeinaTower extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(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.
+ // 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.
this.addAbility(new HeroicAbility(new HeroOfLeinaTowerEffect()));
}
diff --git a/Mage.Sets/src/mage/cards/h/HowlOfTheHorde.java b/Mage.Sets/src/mage/cards/h/HowlOfTheHorde.java
index d6e46210fa7..4a709af6d7d 100644
--- a/Mage.Sets/src/mage/cards/h/HowlOfTheHorde.java
+++ b/Mage.Sets/src/mage/cards/h/HowlOfTheHorde.java
@@ -59,8 +59,8 @@ public class HowlOfTheHorde extends CardImpl {
effect.setText("When you cast your next instant or sorcery spell this turn, copy that spell. You may choose new targets for the copy.");
this.getSpellAbility().addEffect(effect);
- // Raid - If you attacked with a creature this turn, when you cast your next instant or sorcery spell this turn, copy that spell an additional time. You may choose new targets for the copy.
- this.getSpellAbility().addEffect(new ConditionalOneShotEffect(new CreateDelayedTriggeredAbilityEffect(new HowlOfTheHordeDelayedTriggeredAbility()), RaidCondition.instance, "
Raid - If you attacked with a creature this turn, when you cast your next instant or sorcery spell this turn, copy that spell an additional time. You may choose new targets for the copy."));
+ // Raid — If you attacked with a creature this turn, when you cast your next instant or sorcery spell this turn, copy that spell an additional time. You may choose new targets for the copy.
+ this.getSpellAbility().addEffect(new ConditionalOneShotEffect(new CreateDelayedTriggeredAbilityEffect(new HowlOfTheHordeDelayedTriggeredAbility()), RaidCondition.instance, "
Raid — If you attacked with a creature this turn, when you cast your next instant or sorcery spell this turn, copy that spell an additional time. You may choose new targets for the copy."));
this.getSpellAbility().addWatcher(new PlayerAttackedWatcher());
}
diff --git a/Mage.Sets/src/mage/cards/i/IcyBlast.java b/Mage.Sets/src/mage/cards/i/IcyBlast.java
index d2c06f3d004..2dce926f881 100644
--- a/Mage.Sets/src/mage/cards/i/IcyBlast.java
+++ b/Mage.Sets/src/mage/cards/i/IcyBlast.java
@@ -56,7 +56,7 @@ public class IcyBlast extends CardImpl {
this.getSpellAbility().addEffect(new TapTargetEffect("X target creatures"));
this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, 1, StaticFilters.FILTER_PERMANENT_CREATURE, false));
- // Ferocious - If you control a creature with power 4 or greater, those creatures don't untap during their controllers' next untap steps.
+ // Ferocious — If you control a creature with power 4 or greater, those creatures don't untap during their controllers' next untap steps.
Effect effect = new ConditionalContinuousRuleModifyingEffect(
new DontUntapInControllersNextUntapStepTargetEffect(),
new LockedInCondition(FerociousCondition.instance));
diff --git a/Mage.Sets/src/mage/cards/i/InallaArchmageRitualist.java b/Mage.Sets/src/mage/cards/i/InallaArchmageRitualist.java
index b425301391f..4fe37b08e47 100644
--- a/Mage.Sets/src/mage/cards/i/InallaArchmageRitualist.java
+++ b/Mage.Sets/src/mage/cards/i/InallaArchmageRitualist.java
@@ -96,7 +96,7 @@ public class InallaArchmageRitualist extends CardImpl {
new InallaArchmageRitualistEffect(), new ManaCostsImpl("{1}"), "Pay {1} to create a token copy?"),
filter, false, SetTargetPointer.PERMANENT, ""),
SourceOnBattlefieldOrCommandZoneCondition.instance,
- "Eminence - Whenever another nontoken Wizard enters the battlefield under your control, "
+ "Eminence — Whenever another nontoken Wizard enters the battlefield under your control, "
+ "{this} is in the command zone or on the battlefield, "
+ "you may pay {1}. If you do, create a token that's a copy of that Wizard. "
+ "That token gains haste. Exile it at the beginning of the next end step");
diff --git a/Mage.Sets/src/mage/cards/i/InfernalTutor.java b/Mage.Sets/src/mage/cards/i/InfernalTutor.java
index 5e93fa0106f..9ae168485b8 100644
--- a/Mage.Sets/src/mage/cards/i/InfernalTutor.java
+++ b/Mage.Sets/src/mage/cards/i/InfernalTutor.java
@@ -65,7 +65,7 @@ public class InfernalTutor extends CardImpl {
Effect effect = new ConditionalOneShotEffect(
new SearchLibraryPutInHandEffect(new TargetCardInLibrary(new FilterCard()), false, true),
HellbentCondition.instance,
- "
Hellbent - If you have no cards in hand, instead search your library for a card, put it into your hand, then shuffle your library");
+ "
Hellbent — If you have no cards in hand, instead search your library for a card, put it into your hand, then shuffle your library");
this.getSpellAbility().addEffect(effect);
}
diff --git a/Mage.Sets/src/mage/cards/i/InfuseWithTheElements.java b/Mage.Sets/src/mage/cards/i/InfuseWithTheElements.java
index d9596b33668..baf48b212a9 100644
--- a/Mage.Sets/src/mage/cards/i/InfuseWithTheElements.java
+++ b/Mage.Sets/src/mage/cards/i/InfuseWithTheElements.java
@@ -50,7 +50,7 @@ public class InfuseWithTheElements extends CardImpl {
public InfuseWithTheElements(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.INSTANT},"{3}{G}");
- // 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.
+ // 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.
this.getSpellAbility().setAbilityWord(AbilityWord.CONVERGE);
Effect effect = new AddCountersTargetEffect(CounterType.P1P1.createInstance(0), ColorsOfManaSpentToCastCount.getInstance());
effect.setText("Put X +1/+1 counters on target creature, where X is the number of colors of mana spent to cast {this}");
diff --git a/Mage.Sets/src/mage/cards/j/JaddiOffshoot.java b/Mage.Sets/src/mage/cards/j/JaddiOffshoot.java
index d9a79655295..678feec5b91 100644
--- a/Mage.Sets/src/mage/cards/j/JaddiOffshoot.java
+++ b/Mage.Sets/src/mage/cards/j/JaddiOffshoot.java
@@ -51,7 +51,7 @@ public class JaddiOffshoot extends CardImpl {
// Defender
this.addAbility(DefenderAbility.getInstance());
- // Landfall - Whenever a land enters the battlefield under your control, you gain 1 life.
+ // Landfall — Whenever a land enters the battlefield under your control, you gain 1 life.
this.addAbility(new LandfallAbility(new GainLifeEffect(1), false));
}
diff --git a/Mage.Sets/src/mage/cards/j/JaggedPoppet.java b/Mage.Sets/src/mage/cards/j/JaggedPoppet.java
index 7062dbf0e7b..b4828248895 100644
--- a/Mage.Sets/src/mage/cards/j/JaggedPoppet.java
+++ b/Mage.Sets/src/mage/cards/j/JaggedPoppet.java
@@ -66,7 +66,7 @@ public class JaggedPoppet extends CardImpl {
Ability hellbentAbility = new ConditionalTriggeredAbility(
new DealsCombatDamageToAPlayerTriggeredAbility(new JaggedPoppetDealsDamageEffect(), false, true),
HellbentCondition.instance,
- "Hellbent - Whenever {this} deals combat damage to a player, if you have no cards in hand, that player discards cards equal to the damage.");
+ "Hellbent — Whenever {this} deals combat damage to a player, if you have no cards in hand, that player discards cards equal to the damage.");
hellbentAbility.setAbilityWord(AbilityWord.HELLBENT);
this.addAbility(hellbentAbility);
diff --git a/Mage.Sets/src/mage/cards/k/KalastriaHealer.java b/Mage.Sets/src/mage/cards/k/KalastriaHealer.java
index df0c5a46b05..555957ee127 100644
--- a/Mage.Sets/src/mage/cards/k/KalastriaHealer.java
+++ b/Mage.Sets/src/mage/cards/k/KalastriaHealer.java
@@ -53,7 +53,7 @@ public class KalastriaHealer extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(2);
- // Rally - Whenever Kalastria Healer or another Ally enters the battlefield under your control, each opponent loses 1 life and you gain 1 life.
+ // Rally — Whenever Kalastria Healer or another Ally enters the battlefield under your control, each opponent loses 1 life and you gain 1 life.
Ability ability = new AllyEntersBattlefieldTriggeredAbility(new LoseLifeOpponentsEffect(1), false);
Effect effect = new GainLifeEffect(1);
effect.setText("and you gain 1 life");
diff --git a/Mage.Sets/src/mage/cards/k/KirtarsWrath.java b/Mage.Sets/src/mage/cards/k/KirtarsWrath.java
index 316dc58934b..7a8803a199c 100644
--- a/Mage.Sets/src/mage/cards/k/KirtarsWrath.java
+++ b/Mage.Sets/src/mage/cards/k/KirtarsWrath.java
@@ -58,7 +58,7 @@ public class KirtarsWrath extends CardImpl {
new KirtarsWrathEffect(),
new DestroyAllEffect(new FilterCreaturePermanent("all creatures"), true),
new CardsInControllerGraveCondition(7),
- "Destroy all creatures. They can't be regenerated.
Threshold - If seven or more cards are in your graveyard, instead destroy all creatures, then create two 1/1 white Spirit creature tokens with flying. Creatures destroyed this way can't be regenerated"));
+ "Destroy all creatures. They can't be regenerated.
Threshold — If seven or more cards are in your graveyard, instead destroy all creatures, then create two 1/1 white Spirit creature tokens with flying. Creatures destroyed this way can't be regenerated"));
}
diff --git a/Mage.Sets/src/mage/cards/k/KragmaButcher.java b/Mage.Sets/src/mage/cards/k/KragmaButcher.java
index bae2fbb1134..0506b4be931 100644
--- a/Mage.Sets/src/mage/cards/k/KragmaButcher.java
+++ b/Mage.Sets/src/mage/cards/k/KragmaButcher.java
@@ -52,7 +52,7 @@ public class KragmaButcher extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(3);
- // Inspired - Whenever Kragma Butcher becomes untapped, it gets +2/+0 until end of turn.
+ // Inspired — Whenever Kragma Butcher becomes untapped, it gets +2/+0 until end of turn.
Effect effect = new BoostSourceEffect(2,0, Duration.EndOfTurn);
effect.setText("it gets +2/+0 until end of turn");
this.addAbility(new InspiredAbility(effect));
diff --git a/Mage.Sets/src/mage/cards/l/LanternScout.java b/Mage.Sets/src/mage/cards/l/LanternScout.java
index c46ca86e3dc..83d22abe0dc 100644
--- a/Mage.Sets/src/mage/cards/l/LanternScout.java
+++ b/Mage.Sets/src/mage/cards/l/LanternScout.java
@@ -64,7 +64,7 @@ public class LanternScout extends CardImpl {
new CardIdPredicate(this.getId()),
new SubtypePredicate(SubType.ALLY)));
- // Rally - Whenever Lantern Scout or another Ally enters the battlefield under your control, creatures you control gain lifelink until end of turn.
+ // Rally — Whenever Lantern Scout or another Ally enters the battlefield under your control, creatures you control gain lifelink until end of turn.
Effect effect = new GainAbilityAllEffect(LifelinkAbility.getInstance(), Duration.EndOfTurn, new FilterControlledCreaturePermanent());
effect.setText("creatures you control gain lifelink until end of turn");
Ability ability = new AllyEntersBattlefieldTriggeredAbility(
diff --git a/Mage.Sets/src/mage/cards/l/LightFromWithin.java b/Mage.Sets/src/mage/cards/l/LightFromWithin.java
index ae8eca23ad7..b394c05f10e 100644
--- a/Mage.Sets/src/mage/cards/l/LightFromWithin.java
+++ b/Mage.Sets/src/mage/cards/l/LightFromWithin.java
@@ -68,7 +68,7 @@ public class LightFromWithin extends CardImpl {
// Chroma - Each creature you control gets +1/+1 for each white mana symbol in its mana cost.
Effect effect = new LightFromWithinEffect();
- effect.setText("Chroma - Each creature you control gets +1/+1 for each white mana symbol in its mana cost.");
+ effect.setText("Chroma — Each creature you control gets +1/+1 for each white mana symbol in its mana cost.");
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
}
diff --git a/Mage.Sets/src/mage/cards/l/LightningSurge.java b/Mage.Sets/src/mage/cards/l/LightningSurge.java
index 0c80ac11a06..c5697dfa6d0 100644
--- a/Mage.Sets/src/mage/cards/l/LightningSurge.java
+++ b/Mage.Sets/src/mage/cards/l/LightningSurge.java
@@ -54,7 +54,7 @@ public class LightningSurge extends CardImpl {
Effect effect = new ConditionalOneShotEffect(new DamageTargetEffect(6, false),
new DamageTargetEffect(4),
new CardsInControllerGraveCondition(7),
- "{this} deals 4 damage to any target.
Threshold - {this} deals 6 damage to that permanent or player and the damage can't be prevented instead if seven or more cards are in your graveyard.");
+ "{this} deals 4 damage to any target.
Threshold — {this} deals 6 damage to that permanent or player and the damage can't be prevented instead if seven or more cards are in your graveyard.");
this.getSpellAbility().addTarget(new TargetAnyTarget());
this.getSpellAbility().addEffect(effect);
diff --git a/Mage.Sets/src/mage/cards/l/LurkingArynx.java b/Mage.Sets/src/mage/cards/l/LurkingArynx.java
index 22bac9ce5be..3edc5c1daf1 100644
--- a/Mage.Sets/src/mage/cards/l/LurkingArynx.java
+++ b/Mage.Sets/src/mage/cards/l/LurkingArynx.java
@@ -56,7 +56,7 @@ public class LurkingArynx extends CardImpl {
this.power = new MageInt(3);
this.toughness = new MageInt(5);
- // Formidable - {2}{G}: Target creature blocks Lurking Arynx this turn if able. Activate this ability only if creatures you control have total power 8 or greater.
+ // Formidable — {2}{G}: Target creature blocks Lurking Arynx this turn if able. Activate this ability only if creatures you control have total power 8 or greater.
Ability ability = new ActivateIfConditionActivatedAbility(
Zone.BATTLEFIELD,
new MustBeBlockedByTargetSourceEffect(Duration.EndOfTurn),
diff --git a/Mage.Sets/src/mage/cards/m/MagisterOfWorth.java b/Mage.Sets/src/mage/cards/m/MagisterOfWorth.java
index 1eaf8660a05..fdf4899bbee 100644
--- a/Mage.Sets/src/mage/cards/m/MagisterOfWorth.java
+++ b/Mage.Sets/src/mage/cards/m/MagisterOfWorth.java
@@ -84,7 +84,7 @@ class MagisterOfWorthVoteEffect extends OneShotEffect {
MagisterOfWorthVoteEffect() {
super(Outcome.Benefit);
- this.staticText = "Will of the council - When {this} enters the battlefield, starting with you, each player votes for grace or condemnation. If grace gets more votes, each player returns each creature card from their graveyard to the battlefield. If condemnation gets more votes or the vote is tied, destroy all creatures other than {this}.";
+ this.staticText = "Will of the council — When {this} enters the battlefield, starting with you, each player votes for grace or condemnation. If grace gets more votes, each player returns each creature card from their graveyard to the battlefield. If condemnation gets more votes or the vote is tied, destroy all creatures other than {this}.";
}
MagisterOfWorthVoteEffect(final MagisterOfWorthVoteEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/m/MaliciousAffliction.java b/Mage.Sets/src/mage/cards/m/MaliciousAffliction.java
index 1eaa3f14215..c626237b6fe 100644
--- a/Mage.Sets/src/mage/cards/m/MaliciousAffliction.java
+++ b/Mage.Sets/src/mage/cards/m/MaliciousAffliction.java
@@ -68,7 +68,7 @@ public class MaliciousAffliction extends CardImpl {
Ability ability = new ConditionalTriggeredAbility(
new CastSourceTriggeredAbility(new CopySourceSpellEffect(), true),
new LockedInCondition(MorbidCondition.instance),
- "Morbid - When you cast {this}, if a creature died this turn, you may copy {this} and may choose a new target for the copy");
+ "Morbid — When you cast {this}, if a creature died this turn, you may copy {this} and may choose a new target for the copy");
ability.setRuleAtTheTop(true);
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/m/MarduHeartPiercer.java b/Mage.Sets/src/mage/cards/m/MarduHeartPiercer.java
index bce976a76bf..57ec3fab09d 100644
--- a/Mage.Sets/src/mage/cards/m/MarduHeartPiercer.java
+++ b/Mage.Sets/src/mage/cards/m/MarduHeartPiercer.java
@@ -57,7 +57,7 @@ public class MarduHeartPiercer extends CardImpl {
// Raid - When Mardu Heart-Piercer enters the battlefield, if you attacked with a creature this turn, Mardu Heart-Piercer deals 2 damage to any target.
Ability ability = new ConditionalTriggeredAbility(new EntersBattlefieldTriggeredAbility(new DamageTargetEffect(2)), RaidCondition.instance,
- "Raid - When {this} enters the battlefield, if you attacked with a creature this turn, {this} deals 2 damage to any target.");
+ "Raid — When {this} enters the battlefield, if you attacked with a creature this turn, {this} deals 2 damage to any target.");
ability.addTarget(new TargetAnyTarget());
this.addAbility(ability, new PlayerAttackedWatcher());
}
diff --git a/Mage.Sets/src/mage/cards/m/MarduHordechief.java b/Mage.Sets/src/mage/cards/m/MarduHordechief.java
index 53cd6c4d662..b36e97d1ee2 100644
--- a/Mage.Sets/src/mage/cards/m/MarduHordechief.java
+++ b/Mage.Sets/src/mage/cards/m/MarduHordechief.java
@@ -54,7 +54,7 @@ public class MarduHordechief extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(3);
- // Raid - When Mardu Hordechief enters the battlefield, if you attacked with a creature this turn, create a 1/1 white Warrior creature token
+ // Raid — When Mardu Hordechief enters the battlefield, if you attacked with a creature this turn, create a 1/1 white Warrior creature token
this.addAbility(new ConditionalTriggeredAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new WarriorToken())), RaidCondition.instance,
"Raid — When {this} enters the battlefield, if you attacked with a creature this turn, create a 1/1 white Warrior creature token."),
new PlayerAttackedWatcher());
diff --git a/Mage.Sets/src/mage/cards/m/MarduSkullhunter.java b/Mage.Sets/src/mage/cards/m/MarduSkullhunter.java
index 53c90d3d2bc..16e2b5a3711 100644
--- a/Mage.Sets/src/mage/cards/m/MarduSkullhunter.java
+++ b/Mage.Sets/src/mage/cards/m/MarduSkullhunter.java
@@ -61,7 +61,7 @@ public class MarduSkullhunter extends CardImpl {
// Raid - When Mardu Skullhunter enters the battlefield, if you attacked with a creature this turn, target opponent discards a card.
Ability ability = new ConditionalTriggeredAbility(new EntersBattlefieldTriggeredAbility(new DiscardTargetEffect(1)), RaidCondition.instance,
- "Raid - When {this} enters the battlefield, if you attacked with a creature this turn, target opponent discards a card.");
+ "Raid — When {this} enters the battlefield, if you attacked with a creature this turn, target opponent discards a card.");
ability.addTarget(new TargetOpponent());
this.addAbility(ability, new PlayerAttackedWatcher());
}
diff --git a/Mage.Sets/src/mage/cards/m/MeletisAstronomer.java b/Mage.Sets/src/mage/cards/m/MeletisAstronomer.java
index 240c02d8620..be245129c54 100644
--- a/Mage.Sets/src/mage/cards/m/MeletisAstronomer.java
+++ b/Mage.Sets/src/mage/cards/m/MeletisAstronomer.java
@@ -58,7 +58,7 @@ public class MeletisAstronomer extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(3);
- // Heroic - Whenever you cast a spell that targets Meletis Astronomer, look at the top three cards of your library. You may reveal an enchantment card from among them and put it into your hand. Put the rest on the bottom of your library in any order.
+ // Heroic — Whenever you cast a spell that targets Meletis Astronomer, look at the top three cards of your library. You may reveal an enchantment card from among them and put it into your hand. Put the rest on the bottom of your library in any order.
this.addAbility(new HeroicAbility(new LookLibraryAndPickControllerEffect(3, 1, filter, true, false, Zone.HAND, true), false));
}
diff --git a/Mage.Sets/src/mage/cards/m/Mindreaver.java b/Mage.Sets/src/mage/cards/m/Mindreaver.java
index 0040ff54856..24370b26641 100644
--- a/Mage.Sets/src/mage/cards/m/Mindreaver.java
+++ b/Mage.Sets/src/mage/cards/m/Mindreaver.java
@@ -72,7 +72,7 @@ public class Mindreaver extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(1);
- // Heroic - Whenever you cast a spell that targets Mindreaver, exile the top three cards of target player's library.
+ // Heroic — Whenever you cast a spell that targets Mindreaver, exile the top three cards of target player's library.
Ability ability = new HeroicAbility(new MindreaverExileEffect(), false);
ability.addTarget(new TargetPlayer());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/m/MindsAglow.java b/Mage.Sets/src/mage/cards/m/MindsAglow.java
index 6b32184ec4f..2f2137d1f8d 100644
--- a/Mage.Sets/src/mage/cards/m/MindsAglow.java
+++ b/Mage.Sets/src/mage/cards/m/MindsAglow.java
@@ -68,7 +68,7 @@ class MindsAglowEffect extends OneShotEffect {
public MindsAglowEffect() {
super(Outcome.Detriment);
- this.staticText = "Join forces - Starting with you, each player may pay any amount of mana. Each player draws X cards, where X is the total amount of mana paid this way";
+ this.staticText = "Join forces — Starting with you, each player may pay any amount of mana. Each player draws X cards, where X is the total amount of mana paid this way";
}
public MindsAglowEffect(final MindsAglowEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/m/MoltenPsyche.java b/Mage.Sets/src/mage/cards/m/MoltenPsyche.java
index 07700b22e2e..57007c38199 100644
--- a/Mage.Sets/src/mage/cards/m/MoltenPsyche.java
+++ b/Mage.Sets/src/mage/cards/m/MoltenPsyche.java
@@ -76,7 +76,7 @@ class MoltenPsycheEffect extends OneShotEffect {
public MoltenPsycheEffect() {
super(Outcome.Neutral);
staticText = "Each player shuffles the cards from their hand into their library, then draws that many cards.\n"
- + "Metalcraft - If you control three or more artifacts, {this} deals damage to each opponent equal to the number of cards that player has drawn this turn.";
+ + "Metalcraft — If you control three or more artifacts, {this} deals damage to each opponent equal to the number of cards that player has drawn this turn.";
}
public MoltenPsycheEffect(final MoltenPsycheEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/m/MurasaRanger.java b/Mage.Sets/src/mage/cards/m/MurasaRanger.java
index 34dba086ff7..0f1c5584894 100644
--- a/Mage.Sets/src/mage/cards/m/MurasaRanger.java
+++ b/Mage.Sets/src/mage/cards/m/MurasaRanger.java
@@ -52,7 +52,7 @@ public class MurasaRanger extends CardImpl {
this.power = new MageInt(3);
this.toughness = new MageInt(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.
+ // 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.
this.addAbility(new LandfallAbility(new DoIfCostPaid(new AddCountersSourceEffect(CounterType.P1P1.createInstance(2)), new ManaCostsImpl("{3}{G}")), false));
}
diff --git a/Mage.Sets/src/mage/cards/n/NavigatorsRuin.java b/Mage.Sets/src/mage/cards/n/NavigatorsRuin.java
index 5b5dc9bd4aa..6c271933647 100644
--- a/Mage.Sets/src/mage/cards/n/NavigatorsRuin.java
+++ b/Mage.Sets/src/mage/cards/n/NavigatorsRuin.java
@@ -53,7 +53,7 @@ public class NavigatorsRuin extends CardImpl {
Ability ability = new ConditionalTriggeredAbility(
new BeginningOfEndStepTriggeredAbility(new PutLibraryIntoGraveTargetEffect(4), TargetController.YOU, false),
RaidCondition.instance,
- "Raid - At the beginning of your end step, if you attacked with a creature this turn, target opponent puts the top four cards of their library into their graveyard.");
+ "Raid — At the beginning of your end step, if you attacked with a creature this turn, target opponent puts the top four cards of their library into their graveyard.");
ability.addTarget(new TargetOpponent());
this.addAbility(ability, new PlayerAttackedWatcher());
}
diff --git a/Mage.Sets/src/mage/cards/n/NecromanticSummons.java b/Mage.Sets/src/mage/cards/n/NecromanticSummons.java
index a2c07949d2c..7a9924e71b7 100644
--- a/Mage.Sets/src/mage/cards/n/NecromanticSummons.java
+++ b/Mage.Sets/src/mage/cards/n/NecromanticSummons.java
@@ -60,8 +60,8 @@ public class NecromanticSummons extends CardImpl {
this.getSpellAbility().addEffect(new ReturnFromGraveyardToBattlefieldTargetEffect());
this.getSpellAbility().addTarget(new TargetCardInGraveyard(new FilterCreatureCard("creature card from a graveyard")));
- // Spell mastery - If there are two or more instant and/or sorcery cards in your graveyard, that creature enters the battlefield with two additional +1/+1 counters on it.
- this.getSpellAbility().addEffect(new InfoEffect("\"
Spell mastery - If there are two or more instant and/or sorcery cards in your graveyard, that creature enters the battlefield with two additional +1/+1 counters on it\""));
+ // Spell mastery — If there are two or more instant and/or sorcery cards in your graveyard, that creature enters the battlefield with two additional +1/+1 counters on it.
+ this.getSpellAbility().addEffect(new InfoEffect("\"
Spell mastery — If there are two or more instant and/or sorcery cards in your graveyard, that creature enters the battlefield with two additional +1/+1 counters on it\""));
}
public NecromanticSummons(final NecromanticSummons card) {
diff --git a/Mage.Sets/src/mage/cards/o/OmnathLocusOfRage.java b/Mage.Sets/src/mage/cards/o/OmnathLocusOfRage.java
index 9f422026a8e..1d678ffe5c0 100644
--- a/Mage.Sets/src/mage/cards/o/OmnathLocusOfRage.java
+++ b/Mage.Sets/src/mage/cards/o/OmnathLocusOfRage.java
@@ -66,7 +66,7 @@ public class OmnathLocusOfRage extends CardImpl {
this.power = new MageInt(5);
this.toughness = new MageInt(5);
- // Landfall - Whenever a land enters the battlefield under your control, create a 5/5 red and green Elemental creature token.
+ // Landfall — Whenever a land enters the battlefield under your control, create a 5/5 red and green Elemental creature token.
this.addAbility(new LandfallAbility(new CreateTokenEffect(new OmnathElementalToken()), false));
// Whenever Omnath, Locus of Rage or another Elemental you control dies, Omnath deals 3 damage to any target.
diff --git a/Mage.Sets/src/mage/cards/o/OranRiefHydra.java b/Mage.Sets/src/mage/cards/o/OranRiefHydra.java
index e877cd23380..e80023a5149 100644
--- a/Mage.Sets/src/mage/cards/o/OranRiefHydra.java
+++ b/Mage.Sets/src/mage/cards/o/OranRiefHydra.java
@@ -61,7 +61,7 @@ public class OranRiefHydra extends CardImpl {
// Trample
this.addAbility(TrampleAbility.getInstance());
- // Landfall - Whenever a land enters the battlefield under your control, put a +1/+1 counter on Oran-Rief Hydra.
+ // Landfall — Whenever a land enters the battlefield under your control, put a +1/+1 counter on Oran-Rief Hydra.
// If that land is a Forest, put two +1/+1 counters on Oran-Rief Hydra instead.
this.addAbility(new OranRiefHydraTriggeredAbility());
}
@@ -78,7 +78,7 @@ public class OranRiefHydra extends CardImpl {
class OranRiefHydraTriggeredAbility extends TriggeredAbilityImpl {
- private static final String text = "Landfall - Whenever a land enters the battlefield under your control, put a +1/+1 counter on {this}. "
+ private static final String text = "Landfall — Whenever a land enters the battlefield under your control, put a +1/+1 counter on {this}. "
+ "If that land is a Forest, put two +1/+1 counters on {this} instead.";
public OranRiefHydraTriggeredAbility() {
diff --git a/Mage.Sets/src/mage/cards/o/OreskosSunGuide.java b/Mage.Sets/src/mage/cards/o/OreskosSunGuide.java
index fd0fe3e97af..e501dbd603b 100644
--- a/Mage.Sets/src/mage/cards/o/OreskosSunGuide.java
+++ b/Mage.Sets/src/mage/cards/o/OreskosSunGuide.java
@@ -50,7 +50,7 @@ public class OreskosSunGuide extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(2);
- // Inspired - Whenever Oreskos Sun Guide becomes untapped, you gain 2 life.
+ // Inspired — Whenever Oreskos Sun Guide becomes untapped, you gain 2 life.
this.addAbility(new InspiredAbility(new GainLifeEffect(2)));
}
diff --git a/Mage.Sets/src/mage/cards/o/OutrageShaman.java b/Mage.Sets/src/mage/cards/o/OutrageShaman.java
index fddcf54d5cd..405a8ab90b0 100644
--- a/Mage.Sets/src/mage/cards/o/OutrageShaman.java
+++ b/Mage.Sets/src/mage/cards/o/OutrageShaman.java
@@ -57,7 +57,7 @@ public class OutrageShaman extends CardImpl {
// Chroma - When Outrage Shaman enters the battlefield, it deals damage to target creature equal to the number of red mana symbols in the mana costs of permanents you control.
Effect effect = new DamageTargetEffect(new ChromaOutrageShamanCount());
- effect.setText("Chroma - When Outrage Shaman enters the battlefield, it deals damage to target creature equal to the number of red mana symbols in the mana costs of permanents you control.");
+ effect.setText("Chroma — When Outrage Shaman enters the battlefield, it deals damage to target creature equal to the number of red mana symbols in the mana costs of permanents you control.");
Ability ability = new EntersBattlefieldTriggeredAbility(effect, false, true);
ability.addTarget(new TargetCreaturePermanent());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/p/PainSeer.java b/Mage.Sets/src/mage/cards/p/PainSeer.java
index bcf3ff7163b..f14ac0d4b75 100644
--- a/Mage.Sets/src/mage/cards/p/PainSeer.java
+++ b/Mage.Sets/src/mage/cards/p/PainSeer.java
@@ -58,7 +58,7 @@ public class PainSeer extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(2);
- // Inspired - Whenever Pain Seer becomes untapped, reveal the top card of your library and put that card into your hand. You lose life equal to that card's converted mana cost.
+ // Inspired — Whenever Pain Seer becomes untapped, reveal the top card of your library and put that card into your hand. You lose life equal to that card's converted mana cost.
this.addAbility(new InspiredAbility(new PainSeerEffect()));
}
diff --git a/Mage.Sets/src/mage/cards/p/PainfulTruths.java b/Mage.Sets/src/mage/cards/p/PainfulTruths.java
index f0cbfb07860..52de989f2a3 100644
--- a/Mage.Sets/src/mage/cards/p/PainfulTruths.java
+++ b/Mage.Sets/src/mage/cards/p/PainfulTruths.java
@@ -46,7 +46,7 @@ public class PainfulTruths extends CardImpl {
public PainfulTruths(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{2}{B}");
- // Converge - You draw X cards and lose X life, where X is the number of colors of mana spent to cast Painful Truths.
+ // Converge — You draw X cards and lose X life, where X is the number of colors of mana spent to cast Painful Truths.
getSpellAbility().setAbilityWord(AbilityWord.CONVERGE);
Effect effect = new DrawCardSourceControllerEffect(ColorsOfManaSpentToCastCount.getInstance());
effect.setText("You draw X cards");
diff --git a/Mage.Sets/src/mage/cards/p/PheresBandRaiders.java b/Mage.Sets/src/mage/cards/p/PheresBandRaiders.java
index e8c3759b54f..d01fa3ca098 100644
--- a/Mage.Sets/src/mage/cards/p/PheresBandRaiders.java
+++ b/Mage.Sets/src/mage/cards/p/PheresBandRaiders.java
@@ -53,7 +53,7 @@ public class PheresBandRaiders extends CardImpl {
this.power = new MageInt(5);
this.toughness = new MageInt(5);
- // Inspired - Whenever Pheres-Band Raiders becomes untapped, you may pay {2}{G}. If you do, create a 3/3 green Centaur enchantment creature token.
+ // Inspired — Whenever Pheres-Band Raiders becomes untapped, you may pay {2}{G}. If you do, create a 3/3 green Centaur enchantment creature token.
this.addAbility(new InspiredAbility(new DoIfCostPaid(new CreateTokenEffect(new CentaurEnchantmentCreatureToken()), new ManaCostsImpl("{2}{G}"))));
}
diff --git a/Mage.Sets/src/mage/cards/p/PheresBandTromper.java b/Mage.Sets/src/mage/cards/p/PheresBandTromper.java
index 5126a381bc3..a662f67e2df 100644
--- a/Mage.Sets/src/mage/cards/p/PheresBandTromper.java
+++ b/Mage.Sets/src/mage/cards/p/PheresBandTromper.java
@@ -51,7 +51,7 @@ public class PheresBandTromper extends CardImpl {
this.power = new MageInt(3);
this.toughness = new MageInt(3);
- // Inspired - Whenever Pheres-Band Tromper becomes untapped, put a +1/+1 counter on it.
+ // Inspired — Whenever Pheres-Band Tromper becomes untapped, put a +1/+1 counter on it.
this.addAbility(new InspiredAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance())));
}
diff --git a/Mage.Sets/src/mage/cards/p/PhosphorescentFeast.java b/Mage.Sets/src/mage/cards/p/PhosphorescentFeast.java
index 62fb26d2330..fc421b28974 100644
--- a/Mage.Sets/src/mage/cards/p/PhosphorescentFeast.java
+++ b/Mage.Sets/src/mage/cards/p/PhosphorescentFeast.java
@@ -56,7 +56,7 @@ public class PhosphorescentFeast extends CardImpl {
// Chroma - Reveal any number of cards in your hand. You gain 2 life for each green mana symbol in those cards' mana costs.
Effect effect = new PhosphorescentFeastEffect();
- effect.setText("Chroma - Reveal any number of cards in your hand. You gain 2 life for each green mana symbol in those cards' mana costs.");
+ effect.setText("Chroma — Reveal any number of cards in your hand. You gain 2 life for each green mana symbol in those cards' mana costs.");
this.getSpellAbility().addEffect(effect);
}
diff --git a/Mage.Sets/src/mage/cards/p/PredatorsHowl.java b/Mage.Sets/src/mage/cards/p/PredatorsHowl.java
index 9390c6c24d3..71aeffc0fe5 100644
--- a/Mage.Sets/src/mage/cards/p/PredatorsHowl.java
+++ b/Mage.Sets/src/mage/cards/p/PredatorsHowl.java
@@ -52,7 +52,7 @@ public class PredatorsHowl extends CardImpl {
new CreateTokenEffect(new WolfToken(), 3),
new CreateTokenEffect(new WolfToken(), 1),
MorbidCondition.instance,
- "Create a 2/2 green Wolf creature token.
Morbid - Create three 2/2 green Wolf creature tokens instead if a creature died this turn.");
+ "Create a 2/2 green Wolf creature token.
Morbid — Create three 2/2 green Wolf creature tokens instead if a creature died this turn.");
this.getSpellAbility().addEffect(effect);
}
diff --git a/Mage.Sets/src/mage/cards/p/Primalcrux.java b/Mage.Sets/src/mage/cards/p/Primalcrux.java
index ab41acd0d18..a46e610afa4 100644
--- a/Mage.Sets/src/mage/cards/p/Primalcrux.java
+++ b/Mage.Sets/src/mage/cards/p/Primalcrux.java
@@ -64,7 +64,7 @@ public class Primalcrux extends CardImpl {
// Chroma - Primalcrux's power and toughness are each equal to the number of green mana symbols in the mana costs of permanents you control.
Effect effect = new SetPowerToughnessSourceEffect(new ChromaPrimalcruxCount(), Duration.WhileOnBattlefield);
- effect.setText("Chroma - Primalcrux's power and toughness are each equal to the number of green mana symbols in the mana costs of permanents you control.");
+ effect.setText("Chroma — Primalcrux's power and toughness are each equal to the number of green mana symbols in the mana costs of permanents you control.");
this.addAbility(new SimpleStaticAbility(Zone.ALL, effect));
}
diff --git a/Mage.Sets/src/mage/cards/p/PrismArray.java b/Mage.Sets/src/mage/cards/p/PrismArray.java
index fce1925dbe0..d4a807fa806 100644
--- a/Mage.Sets/src/mage/cards/p/PrismArray.java
+++ b/Mage.Sets/src/mage/cards/p/PrismArray.java
@@ -53,7 +53,7 @@ public class PrismArray extends CardImpl {
public PrismArray(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.ENCHANTMENT},"{4}{U}");
- // Converge - Prism Array enters the battlefield with a crystal counter on it for each color of mana spent to cast it.
+ // Converge — Prism Array enters the battlefield with a crystal counter on it for each color of mana spent to cast it.
this.addAbility(new EntersBattlefieldAbility(
new AddCountersSourceEffect(CounterType.CRYSTAL.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));
diff --git a/Mage.Sets/src/mage/cards/p/ProteanRaider.java b/Mage.Sets/src/mage/cards/p/ProteanRaider.java
index 1949db295e4..108657c6a8b 100644
--- a/Mage.Sets/src/mage/cards/p/ProteanRaider.java
+++ b/Mage.Sets/src/mage/cards/p/ProteanRaider.java
@@ -52,7 +52,7 @@ public class ProteanRaider extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(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.
+ // 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.
Ability ability = new EntersBattlefieldAbility(new CopyPermanentEffect(), true, RaidCondition.instance,
"Raid — If you attacked with a creature this turn, you may have {this} enter the battlefield as a copy of any creature on the battlefield.", "");
this.addAbility(ability, new PlayerAttackedWatcher());
diff --git a/Mage.Sets/src/mage/cards/r/RaidersWake.java b/Mage.Sets/src/mage/cards/r/RaidersWake.java
index 0cfd603bf1b..6f5cbee073f 100644
--- a/Mage.Sets/src/mage/cards/r/RaidersWake.java
+++ b/Mage.Sets/src/mage/cards/r/RaidersWake.java
@@ -58,7 +58,7 @@ public class RaidersWake extends CardImpl {
// Raid — At the beginning of your end step, if you attacked with a creature this turn, target opponent discards a card.
Ability ability = new ConditionalTriggeredAbility(
new BeginningOfEndStepTriggeredAbility(new DiscardTargetEffect(1), TargetController.YOU, false), RaidCondition.instance,
- "Raid - At the beginning of your end step, if you attacked with a creature this turn, target opponent discards a card.");
+ "Raid — At the beginning of your end step, if you attacked with a creature this turn, target opponent discards a card.");
ability.addTarget(new TargetOpponent());
this.addAbility(ability, new PlayerAttackedWatcher());
}
diff --git a/Mage.Sets/src/mage/cards/r/RancidEarth.java b/Mage.Sets/src/mage/cards/r/RancidEarth.java
index 7aed5eebb9c..dd850640733 100644
--- a/Mage.Sets/src/mage/cards/r/RancidEarth.java
+++ b/Mage.Sets/src/mage/cards/r/RancidEarth.java
@@ -57,7 +57,7 @@ public class RancidEarth extends CardImpl {
new RancidEarthEffect(),
new DestroyTargetEffect(),
new CardsInControllerGraveCondition(7),
- "Destroy target land.
Threshold - If seven or more cards are in your graveyard, instead destroy that land and Rancid Earth deals 1 damage to each creature and each player."));
+ "Destroy target land.
Threshold — If seven or more cards are in your graveyard, instead destroy that land and Rancid Earth deals 1 damage to each creature and each player."));
this.getSpellAbility().addTarget(new TargetLandPermanent());
}
diff --git a/Mage.Sets/src/mage/cards/r/RetreatToEmeria.java b/Mage.Sets/src/mage/cards/r/RetreatToEmeria.java
index 28e4315a976..899d84206f6 100644
--- a/Mage.Sets/src/mage/cards/r/RetreatToEmeria.java
+++ b/Mage.Sets/src/mage/cards/r/RetreatToEmeria.java
@@ -47,7 +47,7 @@ public class RetreatToEmeria extends CardImpl {
public RetreatToEmeria(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{3}{W}");
- // Landfall - Whenever a land enters the battlefield under you control, choose one - Create a 1/1 white Kor Ally creature token; or Creatures you control get +1/+1 until end of turn.
+ // Landfall — Whenever a land enters the battlefield under you control, choose one - Create a 1/1 white Kor Ally creature token; or Creatures you control get +1/+1 until end of turn.
LandfallAbility ability = new LandfallAbility(new CreateTokenEffect(new KorAllyToken()), false);
Mode mode = new Mode();
mode.getEffects().add(new BoostControlledEffect(1, 1, Duration.EndOfTurn));
diff --git a/Mage.Sets/src/mage/cards/r/RoarOfChallenge.java b/Mage.Sets/src/mage/cards/r/RoarOfChallenge.java
index 18baa778169..660fb9308b6 100644
--- a/Mage.Sets/src/mage/cards/r/RoarOfChallenge.java
+++ b/Mage.Sets/src/mage/cards/r/RoarOfChallenge.java
@@ -52,7 +52,7 @@ public class RoarOfChallenge extends CardImpl {
// All creatures able to block target creature this turn do so.
this.getSpellAbility().addEffect(new MustBeBlockedByAllTargetEffect(Duration.EndOfTurn));
- // Ferocious - That creature gains indestructible until end of turn if you control a creature with power 4 or greater.
+ // Ferocious — That creature gains indestructible until end of turn if you control a creature with power 4 or greater.
this.getSpellAbility().addEffect(new ConditionalContinuousEffect(
new GainAbilityTargetEffect(IndestructibleAbility.getInstance(), Duration.EndOfTurn),
new LockedInCondition(FerociousCondition.instance),
diff --git a/Mage.Sets/src/mage/cards/r/RuinRaider.java b/Mage.Sets/src/mage/cards/r/RuinRaider.java
index 3c69a9b1a21..9b7f7e76075 100644
--- a/Mage.Sets/src/mage/cards/r/RuinRaider.java
+++ b/Mage.Sets/src/mage/cards/r/RuinRaider.java
@@ -67,7 +67,7 @@ public class RuinRaider extends CardImpl {
Ability ability = new ConditionalTriggeredAbility(
new BeginningOfEndStepTriggeredAbility(new RuinRaiderEffect(), TargetController.YOU, false),
RaidCondition.instance,
- "Raid - At the beginning of your end step, if you attacked with a creature this turn, "
+ "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.");
this.addAbility(ability, new PlayerAttackedWatcher());
diff --git a/Mage.Sets/src/mage/cards/s/SabertoothOutrider.java b/Mage.Sets/src/mage/cards/s/SabertoothOutrider.java
index ac25f60d476..70a5bb55798 100644
--- a/Mage.Sets/src/mage/cards/s/SabertoothOutrider.java
+++ b/Mage.Sets/src/mage/cards/s/SabertoothOutrider.java
@@ -57,7 +57,7 @@ public class SabertoothOutrider extends CardImpl {
// Trample
this.addAbility(TrampleAbility.getInstance());
- // Formidable - Whenever Sabertooth Outrider attacks, if creatures you control have total power 8 or greater, Sabertooth Outrider gains first strike until end of turn.
+ // Formidable — Whenever Sabertooth Outrider attacks, if creatures you control have total power 8 or greater, Sabertooth Outrider gains first strike until end of turn.
this.addAbility(new ConditionalTriggeredAbility(
new AttacksTriggeredAbility(new GainAbilitySourceEffect(FirstStrikeAbility.getInstance(), Duration.EndOfTurn), false),
FormidableCondition.instance,
diff --git a/Mage.Sets/src/mage/cards/s/SatyrNyxSmith.java b/Mage.Sets/src/mage/cards/s/SatyrNyxSmith.java
index bfeb7ef6e28..7f8dbcc8792 100644
--- a/Mage.Sets/src/mage/cards/s/SatyrNyxSmith.java
+++ b/Mage.Sets/src/mage/cards/s/SatyrNyxSmith.java
@@ -56,7 +56,7 @@ public class SatyrNyxSmith extends CardImpl {
// Haste
this.addAbility(HasteAbility.getInstance());
- // Inspired - Whenever Satyr Nyx-Smith becomes untapped, you may pay {2}{R}. If you do, create a 3/1 red Elemental enchantment creature token with haste.
+ // Inspired — Whenever Satyr Nyx-Smith becomes untapped, you may pay {2}{R}. If you do, create a 3/1 red Elemental enchantment creature token with haste.
this.addAbility(new InspiredAbility(new DoIfCostPaid(new CreateTokenEffect(new SatyrNyxSmithElementalToken()), new ManaCostsImpl("{2}{R}"))));
}
diff --git a/Mage.Sets/src/mage/cards/s/SavagePunch.java b/Mage.Sets/src/mage/cards/s/SavagePunch.java
index 486b48dcf87..434f628add6 100644
--- a/Mage.Sets/src/mage/cards/s/SavagePunch.java
+++ b/Mage.Sets/src/mage/cards/s/SavagePunch.java
@@ -60,7 +60,7 @@ public class SavagePunch extends CardImpl {
public SavagePunch(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{G}");
- // Ferocious - The creature you control gets +2/+2 until end of turn before it fights if you control a creature with power 4 or greater.
+ // Ferocious — The creature you control gets +2/+2 until end of turn before it fights if you control a creature with power 4 or greater.
Effect effect = new ConditionalContinuousEffect(
new BoostTargetEffect(2, 2, Duration.EndOfTurn),
new LockedInCondition(FerociousCondition.instance),
diff --git a/Mage.Sets/src/mage/cards/s/SeeTheUnwritten.java b/Mage.Sets/src/mage/cards/s/SeeTheUnwritten.java
index dfbb8f4f3c6..ebb62766750 100644
--- a/Mage.Sets/src/mage/cards/s/SeeTheUnwritten.java
+++ b/Mage.Sets/src/mage/cards/s/SeeTheUnwritten.java
@@ -57,7 +57,7 @@ public class SeeTheUnwritten extends CardImpl {
super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{4}{G}{G}");
// Reveal the top eight cards of your library. You may put a creature card from among them onto the battlefield. Put the rest into your graveyard.
- // Ferocious - If you control a creature with power 4 or greater, you may put two creature cards onto the battlefield instead of one.
+ // Ferocious — If you control a creature with power 4 or greater, you may put two creature cards onto the battlefield instead of one.
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
new SeeTheUnwrittenEffect(1),
new SeeTheUnwrittenEffect(2),
diff --git a/Mage.Sets/src/mage/cards/s/ServantOfTymaret.java b/Mage.Sets/src/mage/cards/s/ServantOfTymaret.java
index 518075f85ae..91d702d8957 100644
--- a/Mage.Sets/src/mage/cards/s/ServantOfTymaret.java
+++ b/Mage.Sets/src/mage/cards/s/ServantOfTymaret.java
@@ -56,7 +56,7 @@ public class ServantOfTymaret extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(3);
- // Inspired - Whenever Servant of Tymaret becomes untapped, each opponent loses 1 life. You gain life equal to the life lost this way.
+ // Inspired — Whenever Servant of Tymaret becomes untapped, each opponent loses 1 life. You gain life equal to the life lost this way.
this.addAbility(new InspiredAbility(new ServantOfTymaretEffect()));
// {2}{B}: Regenerate Servant of Tymaret.
diff --git a/Mage.Sets/src/mage/cards/s/SetessanOathsworn.java b/Mage.Sets/src/mage/cards/s/SetessanOathsworn.java
index 90a40e2800e..d07032378da 100644
--- a/Mage.Sets/src/mage/cards/s/SetessanOathsworn.java
+++ b/Mage.Sets/src/mage/cards/s/SetessanOathsworn.java
@@ -51,7 +51,7 @@ public class SetessanOathsworn extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(1);
- // Heroic - Whenever you cast a spell that targets Setessan Oathsworn, put two +1/+1 counters on Setessan Oathsworn.
+ // Heroic — Whenever you cast a spell that targets Setessan Oathsworn, put two +1/+1 counters on Setessan Oathsworn.
this.addAbility(new HeroicAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance(2), true)));
}
diff --git a/Mage.Sets/src/mage/cards/s/ShamanOfForgottenWays.java b/Mage.Sets/src/mage/cards/s/ShamanOfForgottenWays.java
index 74c7095e872..ad58b7aaa5b 100644
--- a/Mage.Sets/src/mage/cards/s/ShamanOfForgottenWays.java
+++ b/Mage.Sets/src/mage/cards/s/ShamanOfForgottenWays.java
@@ -70,7 +70,7 @@ public class ShamanOfForgottenWays extends CardImpl {
// {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.
+ // 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.
Ability ability = new ActivateIfConditionActivatedAbility(
Zone.BATTLEFIELD,
new ShamanOfForgottenWaysEffect(),
diff --git a/Mage.Sets/src/mage/cards/s/ShamanOfTheGreatHunt.java b/Mage.Sets/src/mage/cards/s/ShamanOfTheGreatHunt.java
index efe482f5af6..7ba8456ddaf 100644
--- a/Mage.Sets/src/mage/cards/s/ShamanOfTheGreatHunt.java
+++ b/Mage.Sets/src/mage/cards/s/ShamanOfTheGreatHunt.java
@@ -81,7 +81,7 @@ public class ShamanOfTheGreatHunt extends CardImpl {
new FilterControlledCreaturePermanent("a creature you control"), false, SetTargetPointer.PERMANENT, true
));
- // Ferocious - {2}{G/U}{G/U}: Draw a card for each creature you control with power 4 or greater.
+ // Ferocious — {2}{G/U}{G/U}: Draw a card for each creature you control with power 4 or greater.
DynamicValue amount = new PermanentsOnBattlefieldCount(filter);
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DrawCardSourceControllerEffect(amount), new ManaCostsImpl("{2}{G/U}{G/U}"));
ability.setAbilityWord(AbilityWord.FEROCIOUS);
diff --git a/Mage.Sets/src/mage/cards/s/ShamanicRevelation.java b/Mage.Sets/src/mage/cards/s/ShamanicRevelation.java
index 4829a3675f9..357e9a7993d 100644
--- a/Mage.Sets/src/mage/cards/s/ShamanicRevelation.java
+++ b/Mage.Sets/src/mage/cards/s/ShamanicRevelation.java
@@ -58,7 +58,7 @@ public class ShamanicRevelation extends CardImpl {
// Draw a card for each creature you control.
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(new PermanentsOnBattlefieldCount(new FilterControlledCreaturePermanent())));
- // Ferocious - You gain 4 life for each creature you control with power 4 or greater.
+ // Ferocious — You gain 4 life for each creature you control with power 4 or greater.
DynamicValue amount = new PermanentsOnBattlefieldCount(filter, 4);
Effect effect = new GainLifeEffect(amount);
effect.setText("
Ferocious — You gain 4 life for each creature you control with power 4 or greater.");
diff --git a/Mage.Sets/src/mage/cards/s/SharedTrauma.java b/Mage.Sets/src/mage/cards/s/SharedTrauma.java
index 80df7d5a6ff..fe94815a324 100644
--- a/Mage.Sets/src/mage/cards/s/SharedTrauma.java
+++ b/Mage.Sets/src/mage/cards/s/SharedTrauma.java
@@ -71,7 +71,7 @@ class SharedTraumaEffect extends OneShotEffect {
public SharedTraumaEffect() {
super(Outcome.Detriment);
- this.staticText = "Join forces - Starting with you, each player may pay any amount of mana. Each player puts the top X cards of their library into their graveyard, where X is the total amount of mana paid this way";
+ this.staticText = "Join forces — Starting with you, each player may pay any amount of mana. Each player puts the top X cards of their library into their graveyard, where X is the total amount of mana paid this way";
}
public SharedTraumaEffect(final SharedTraumaEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/s/ShipwreckLooter.java b/Mage.Sets/src/mage/cards/s/ShipwreckLooter.java
index dc6f2eb24b1..87278b4ff87 100644
--- a/Mage.Sets/src/mage/cards/s/ShipwreckLooter.java
+++ b/Mage.Sets/src/mage/cards/s/ShipwreckLooter.java
@@ -58,7 +58,7 @@ public class ShipwreckLooter extends CardImpl {
Ability ability = new ConditionalTriggeredAbility(
new EntersBattlefieldTriggeredAbility(new DrawDiscardControllerEffect(1, 1, true)),
RaidCondition.instance,
- "Raid - When {this} enters the battlefield, if you attacked with a creature this turn, you may draw a card. If you do, discard a card.");
+ "Raid — When {this} enters the battlefield, if you attacked with a creature this turn, you may draw a card. If you do, discard a card.");
this.addAbility(ability, new PlayerAttackedWatcher());
}
diff --git a/Mage.Sets/src/mage/cards/s/ShowerOfCoals.java b/Mage.Sets/src/mage/cards/s/ShowerOfCoals.java
index b66e2159ca2..f3eda970320 100644
--- a/Mage.Sets/src/mage/cards/s/ShowerOfCoals.java
+++ b/Mage.Sets/src/mage/cards/s/ShowerOfCoals.java
@@ -51,7 +51,7 @@ public class ShowerOfCoals extends CardImpl {
Effect effect = new ConditionalOneShotEffect(new DamageTargetEffect(4),
new DamageTargetEffect(2),
new CardsInControllerGraveCondition(7),
- "{this} deals 2 damage to each of up to three targets.
Threshold - {this} deals 4 damage to each of those permanents and/or players instead if seven or more cards are in your graveyard.");
+ "{this} deals 2 damage to each of up to three targets.
Threshold — {this} deals 4 damage to each of those permanents and/or players instead if seven or more cards are in your graveyard.");
this.getSpellAbility().addTarget(new TargetAnyTarget(0, 3));
this.getSpellAbility().addEffect(effect);
diff --git a/Mage.Sets/src/mage/cards/s/SirenOfTheSilentSong.java b/Mage.Sets/src/mage/cards/s/SirenOfTheSilentSong.java
index dcc45468175..d40a148a989 100644
--- a/Mage.Sets/src/mage/cards/s/SirenOfTheSilentSong.java
+++ b/Mage.Sets/src/mage/cards/s/SirenOfTheSilentSong.java
@@ -57,7 +57,7 @@ public class SirenOfTheSilentSong extends CardImpl {
// Flying
this.addAbility(FlyingAbility.getInstance());
- // Inspired - Whenever Siren of the Silent Song becomes untapped, each opponent discards a card, then puts the top card of their library into their graveyard.
+ // Inspired — Whenever Siren of the Silent Song becomes untapped, each opponent discards a card, then puts the top card of their library into their graveyard.
Ability ability = new InspiredAbility(new DiscardEachPlayerEffect(TargetController.OPPONENT));
Effect effect = new PutTopCardOfLibraryIntoGraveEachPlayerEffect(1, TargetController.OPPONENT);
effect.setText(", then puts the top card of their library into their graveyard");
diff --git a/Mage.Sets/src/mage/cards/s/SithAssassin.java b/Mage.Sets/src/mage/cards/s/SithAssassin.java
index b0bcd90e98a..2e46269bd41 100644
--- a/Mage.Sets/src/mage/cards/s/SithAssassin.java
+++ b/Mage.Sets/src/mage/cards/s/SithAssassin.java
@@ -68,7 +68,7 @@ public class SithAssassin extends CardImpl {
Ability ability = new ConditionalTriggeredAbility(
new EntersBattlefieldTriggeredAbility(new DestroyTargetEffect(), true),
HateCondition.instance,
- "Hate - When {this} enters the battlefield, if an opponent lost life from a source other than combat damage this turn, you may destroy target nonblack creature.");
+ "Hate — When {this} enters the battlefield, if an opponent lost life from a source other than combat damage this turn, you may destroy target nonblack creature.");
ability.addTarget(new TargetCreaturePermanent(filter));
this.addAbility(ability, new LifeLossOtherFromCombatWatcher());
}
diff --git a/Mage.Sets/src/mage/cards/s/SlitheringShade.java b/Mage.Sets/src/mage/cards/s/SlitheringShade.java
index 832fe062641..d7c44101ab7 100644
--- a/Mage.Sets/src/mage/cards/s/SlitheringShade.java
+++ b/Mage.Sets/src/mage/cards/s/SlitheringShade.java
@@ -68,7 +68,7 @@ public class SlitheringShade extends CardImpl {
Effect effect = new ConditionalAsThoughEffect(
new CanAttackAsThoughItDidntHaveDefenderSourceEffect(Duration.WhileOnBattlefield),
HellbentCondition.instance);
- effect.setText("Hellbent - {this} can attack as though it didn't have defender as long as you have no cards in hand");
+ effect.setText("Hellbent — {this} can attack as though it didn't have defender as long as you have no cards in hand");
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
}
diff --git a/Mage.Sets/src/mage/cards/s/SphinxsDisciple.java b/Mage.Sets/src/mage/cards/s/SphinxsDisciple.java
index a6b23449021..2d7ecd54340 100644
--- a/Mage.Sets/src/mage/cards/s/SphinxsDisciple.java
+++ b/Mage.Sets/src/mage/cards/s/SphinxsDisciple.java
@@ -53,7 +53,7 @@ public class SphinxsDisciple extends CardImpl {
// Flying
this.addAbility(FlyingAbility.getInstance());
- // Inspired - Whenever Sphinx's Disciple becomes untapped, draw a card.
+ // Inspired — Whenever Sphinx's Disciple becomes untapped, draw a card.
this.addAbility(new InspiredAbility(new DrawCardSourceControllerEffect(1)));
}
diff --git a/Mage.Sets/src/mage/cards/s/SplitDecision.java b/Mage.Sets/src/mage/cards/s/SplitDecision.java
index e45e7789d8a..8482c141f3b 100644
--- a/Mage.Sets/src/mage/cards/s/SplitDecision.java
+++ b/Mage.Sets/src/mage/cards/s/SplitDecision.java
@@ -68,7 +68,7 @@ class SplitDecisionEffect extends OneShotEffect {
SplitDecisionEffect() {
super(Outcome.Benefit);
- this.staticText = "Will of the council - Choose target instant or sorcery spell. Starting with you, each player votes for denial or duplication. If denial gets more votes, counter the spell. If duplication gets more votes or the vote is tied, copy the spell. You may choose new targets for the copy";
+ this.staticText = "Will of the council — Choose target instant or sorcery spell. Starting with you, each player votes for denial or duplication. If denial gets more votes, counter the spell. If duplication gets more votes or the vote is tied, copy the spell. You may choose new targets for the copy";
}
SplitDecisionEffect(final SplitDecisionEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/s/SpringjackShepherd.java b/Mage.Sets/src/mage/cards/s/SpringjackShepherd.java
index 821ec5414ee..af8d12aac7d 100644
--- a/Mage.Sets/src/mage/cards/s/SpringjackShepherd.java
+++ b/Mage.Sets/src/mage/cards/s/SpringjackShepherd.java
@@ -60,7 +60,7 @@ public class SpringjackShepherd extends CardImpl {
// Chroma - When Springjack Shepherd enters the battlefield, create a 0/1 white Goat creature token for each white mana symbol in the mana costs of permanents you control.
Effect effect = new CreateTokenEffect(new GoatToken(), new ChromaSpringjackShepherdCount());
- effect.setText("Chroma - When Springjack Shepherd enters the battlefield, create a 0/1 white Goat creature token for each white mana symbol in the mana costs of permanents you control.");
+ effect.setText("Chroma — When Springjack Shepherd enters the battlefield, create a 0/1 white Goat creature token for each white mana symbol in the mana costs of permanents you control.");
this.addAbility(new EntersBattlefieldTriggeredAbility(effect, false, true));
}
diff --git a/Mage.Sets/src/mage/cards/s/StampedingElkHerd.java b/Mage.Sets/src/mage/cards/s/StampedingElkHerd.java
index 1c77640ee19..d4f6b841100 100644
--- a/Mage.Sets/src/mage/cards/s/StampedingElkHerd.java
+++ b/Mage.Sets/src/mage/cards/s/StampedingElkHerd.java
@@ -53,7 +53,7 @@ public class StampedingElkHerd extends CardImpl {
this.power = new MageInt(5);
this.toughness = new MageInt(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.
+ // 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.
this.addAbility(new ConditionalTriggeredAbility(
new AttacksTriggeredAbility(new GainAbilityControlledEffect(TrampleAbility.getInstance(), Duration.EndOfTurn, new FilterControlledCreaturePermanent()), false),
FormidableCondition.instance,
diff --git a/Mage.Sets/src/mage/cards/s/StitchTogether.java b/Mage.Sets/src/mage/cards/s/StitchTogether.java
index 7b3928ed782..38e01a44be3 100644
--- a/Mage.Sets/src/mage/cards/s/StitchTogether.java
+++ b/Mage.Sets/src/mage/cards/s/StitchTogether.java
@@ -54,7 +54,7 @@ public class StitchTogether extends CardImpl {
new ReturnFromGraveyardToBattlefieldTargetEffect(),
new ReturnFromGraveyardToHandTargetEffect(),
new CardsInControllerGraveCondition(7),
- "Return target creature card from your graveyard to your hand.
Threshold - Return that card from your graveyard to the battlefield instead if seven or more cards are in your graveyard.");
+ "Return target creature card from your graveyard to your hand.
Threshold — Return that card from your graveyard to the battlefield instead if seven or more cards are in your graveyard.");
this.getSpellAbility().addEffect(effect);
this.getSpellAbility().addTarget(new TargetCardInYourGraveyard(StaticFilters.FILTER_CARD_CREATURE_YOUR_GRAVEYARD));
}
diff --git a/Mage.Sets/src/mage/cards/s/StormFleetAerialist.java b/Mage.Sets/src/mage/cards/s/StormFleetAerialist.java
index c62904dbd12..0e51079befc 100644
--- a/Mage.Sets/src/mage/cards/s/StormFleetAerialist.java
+++ b/Mage.Sets/src/mage/cards/s/StormFleetAerialist.java
@@ -60,7 +60,7 @@ public class StormFleetAerialist extends CardImpl {
// Raid - Storm Fleet Aerialist enters the battlefield with a +1/+1 counter on it if you attacked with a creature this turn.
this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance(1), false),
RaidCondition.instance,
- "Raid - {this} enters the battlefield with a +1/+1 counter on it if you attacked with a creature this turn.",
+ "Raid — {this} enters the battlefield with a +1/+1 counter on it if you attacked with a creature this turn.",
"{this} enters the battlefield with a +1/+1 counter"),
new PlayerAttackedWatcher());
}
diff --git a/Mage.Sets/src/mage/cards/s/Stratadon.java b/Mage.Sets/src/mage/cards/s/Stratadon.java
index 5d3f96f73f3..fea57a7ffed 100644
--- a/Mage.Sets/src/mage/cards/s/Stratadon.java
+++ b/Mage.Sets/src/mage/cards/s/Stratadon.java
@@ -77,7 +77,7 @@ class StratadonCostReductionEffect extends CostModificationEffectImpl {
public StratadonCostReductionEffect() {
super(Duration.WhileOnStack, Outcome.Benefit, CostModificationType.REDUCE_COST);
- staticText = "Domain - {this} costs {1} less to cast for each basic land type among lands you control.";
+ staticText = "Domain — {this} costs {1} less to cast for each basic land type among lands you control.";
}
protected StratadonCostReductionEffect(final StratadonCostReductionEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/s/StubbornDenial.java b/Mage.Sets/src/mage/cards/s/StubbornDenial.java
index eb85512442f..fe912ceae46 100644
--- a/Mage.Sets/src/mage/cards/s/StubbornDenial.java
+++ b/Mage.Sets/src/mage/cards/s/StubbornDenial.java
@@ -61,7 +61,7 @@ public class StubbornDenial extends CardImpl {
new CounterUnlessPaysEffect(new GenericManaCost(1)),
new InvertCondition(FerociousCondition.instance),
"Counter target noncreature spell unless its controller pays {1}."));
- // Ferocious - If you control a creature with power 4 or greater, counter that spell instead.
+ // Ferocious — If you control a creature with power 4 or greater, counter that spell instead.
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
new CounterTargetEffect(),
FerociousCondition.instance,
diff --git a/Mage.Sets/src/mage/cards/s/SurrakTheHuntCaller.java b/Mage.Sets/src/mage/cards/s/SurrakTheHuntCaller.java
index 4bdcbebf12b..be99ba23b0d 100644
--- a/Mage.Sets/src/mage/cards/s/SurrakTheHuntCaller.java
+++ b/Mage.Sets/src/mage/cards/s/SurrakTheHuntCaller.java
@@ -58,7 +58,7 @@ public class SurrakTheHuntCaller extends CardImpl {
this.power = new MageInt(5);
this.toughness = new MageInt(4);
- // Formidable - At the beginning of combat on your turn, if creatures you control have total power 8 or greater, target creature you control gains haste until end of turn.
+ // Formidable — At the beginning of combat on your turn, if creatures you control have total power 8 or greater, target creature you control gains haste until end of turn.
Ability ability = new ConditionalTriggeredAbility(
new BeginningOfCombatTriggeredAbility(new GainAbilityTargetEffect(HasteAbility.getInstance(), Duration.EndOfTurn), TargetController.YOU, false),
FormidableCondition.instance,
diff --git a/Mage.Sets/src/mage/cards/s/SwaggeringCorsair.java b/Mage.Sets/src/mage/cards/s/SwaggeringCorsair.java
index e1ae8c7d9d5..8943ed758d2 100644
--- a/Mage.Sets/src/mage/cards/s/SwaggeringCorsair.java
+++ b/Mage.Sets/src/mage/cards/s/SwaggeringCorsair.java
@@ -53,7 +53,7 @@ public class SwaggeringCorsair extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(2);
- // Raid - Swaggering Corsair enters the battlefield with a +1/+1 counter on it if you attacked with a creature this turn.
+ // Raid — Swaggering Corsair enters the battlefield with a +1/+1 counter on it if you attacked with a creature this turn.
this.addAbility(new EntersBattlefieldAbility(
new AddCountersSourceEffect(CounterType.P1P1.createInstance(1)),
RaidCondition.instance,
diff --git a/Mage.Sets/src/mage/cards/s/SwirlingSandstorm.java b/Mage.Sets/src/mage/cards/s/SwirlingSandstorm.java
index cc4169c8006..049c4ac1b57 100644
--- a/Mage.Sets/src/mage/cards/s/SwirlingSandstorm.java
+++ b/Mage.Sets/src/mage/cards/s/SwirlingSandstorm.java
@@ -59,7 +59,7 @@ public class SwirlingSandstorm extends CardImpl {
Effect effect = new ConditionalOneShotEffect(
new DamageAllEffect(5, filter),
new CardsInControllerGraveCondition(7),
- "Threshold - {this} deals 5 damage to each creature without flying if seven or more cards are in your graveyard.");
+ "Threshold — {this} deals 5 damage to each creature without flying if seven or more cards are in your graveyard.");
this.getSpellAbility().addEffect(effect);
}
diff --git a/Mage.Sets/src/mage/cards/t/TajuruBeastmaster.java b/Mage.Sets/src/mage/cards/t/TajuruBeastmaster.java
index 3fa8e8de55b..0dba9713f72 100644
--- a/Mage.Sets/src/mage/cards/t/TajuruBeastmaster.java
+++ b/Mage.Sets/src/mage/cards/t/TajuruBeastmaster.java
@@ -51,7 +51,7 @@ public class TajuruBeastmaster extends CardImpl {
this.power = new MageInt(5);
this.toughness = new MageInt(5);
- // Rally - Whenever Tajuru Beastmaster or another Ally creature enters the battlefield under your control, creatures you control get +1/+1 until end of turn.
+ // Rally — Whenever Tajuru Beastmaster or another Ally creature enters the battlefield under your control, creatures you control get +1/+1 until end of turn.
this.addAbility(new AllyEntersBattlefieldTriggeredAbility(new BoostControlledEffect(1, 1, Duration.EndOfTurn), false));
}
diff --git a/Mage.Sets/src/mage/cards/t/TalentOfTheTelepath.java b/Mage.Sets/src/mage/cards/t/TalentOfTheTelepath.java
index f2ccd7970f1..68475d200ce 100644
--- a/Mage.Sets/src/mage/cards/t/TalentOfTheTelepath.java
+++ b/Mage.Sets/src/mage/cards/t/TalentOfTheTelepath.java
@@ -58,7 +58,7 @@ public class TalentOfTheTelepath extends CardImpl {
super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{2}{U}{U}");
// Target opponent reveals the top seven cards of their library. You may cast an instant or sorcery card from among them without paying its mana cost. Then that player puts the rest into their graveyard.
- // Spell mastery - If there are two or more instant and/or sorcery cards in your graveyard, you may cast up to two revealed instant and/or sorcery cards instead of one.
+ // Spell mastery — If there are two or more instant and/or sorcery cards in your graveyard, you may cast up to two revealed instant and/or sorcery cards instead of one.
getSpellAbility().addEffect(new TalentOfTheTelepathEffect());
getSpellAbility().addTarget(new TargetOpponent());
@@ -81,7 +81,7 @@ class TalentOfTheTelepathEffect extends OneShotEffect {
public TalentOfTheTelepathEffect() {
super(Outcome.PlayForFree);
this.staticText = "Target opponent reveals the top seven cards of their library. You may cast an instant or sorcery card from among them without paying its mana cost. Then that player puts the rest into their graveyard. "
- + "
Spell mastery - If there are two or more instant and/or sorcery cards in your graveyard, you may cast up to two revealed instant and/or sorcery cards instead of one.";
+ + "
Spell mastery — If there are two or more instant and/or sorcery cards in your graveyard, you may cast up to two revealed instant and/or sorcery cards instead of one.";
}
public TalentOfTheTelepathEffect(final TalentOfTheTelepathEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/t/TemptWithDiscovery.java b/Mage.Sets/src/mage/cards/t/TemptWithDiscovery.java
index b60644bf8bd..ccf47c1169f 100644
--- a/Mage.Sets/src/mage/cards/t/TemptWithDiscovery.java
+++ b/Mage.Sets/src/mage/cards/t/TemptWithDiscovery.java
@@ -73,7 +73,7 @@ class TemptWithDiscoveryEffect extends OneShotEffect {
public TemptWithDiscoveryEffect() {
super(Outcome.PutLandInPlay);
- this.staticText = "Tempting offer - Search your library for a land card and put it onto the battlefield. Each opponent may search their 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 searched a library this way shuffles it";
+ this.staticText = "Tempting offer — Search your library for a land card and put it onto the battlefield. Each opponent may search their 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 searched a library this way shuffles it";
}
public TemptWithDiscoveryEffect(final TemptWithDiscoveryEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/t/TemptWithGlory.java b/Mage.Sets/src/mage/cards/t/TemptWithGlory.java
index 088abe7079b..510f6f1a9dc 100644
--- a/Mage.Sets/src/mage/cards/t/TemptWithGlory.java
+++ b/Mage.Sets/src/mage/cards/t/TemptWithGlory.java
@@ -71,7 +71,7 @@ class TemptWithGloryEffect extends OneShotEffect {
public TemptWithGloryEffect() {
super(Outcome.PutLandInPlay);
- this.staticText = "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";
+ this.staticText = "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";
}
public TemptWithGloryEffect(final TemptWithGloryEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/t/TemptWithImmortality.java b/Mage.Sets/src/mage/cards/t/TemptWithImmortality.java
index 054e87f7501..a34a7a9564e 100644
--- a/Mage.Sets/src/mage/cards/t/TemptWithImmortality.java
+++ b/Mage.Sets/src/mage/cards/t/TemptWithImmortality.java
@@ -72,7 +72,7 @@ class TemptWithImmortalityEffect extends OneShotEffect {
public TemptWithImmortalityEffect() {
super(Outcome.PutCreatureInPlay);
- this.staticText = "Tempting offer - Return a creature card from your graveyard to the battlefield. Each opponent may return a creature card from their graveyard to the battlefield. For each player who does, return a creature card from your graveyard to the battlefield";
+ this.staticText = "Tempting offer — Return a creature card from your graveyard to the battlefield. Each opponent may return a creature card from their graveyard to the battlefield. For each player who does, return a creature card from your graveyard to the battlefield";
}
diff --git a/Mage.Sets/src/mage/cards/t/TemptWithReflections.java b/Mage.Sets/src/mage/cards/t/TemptWithReflections.java
index f10b0688c86..93316a1dbfd 100644
--- a/Mage.Sets/src/mage/cards/t/TemptWithReflections.java
+++ b/Mage.Sets/src/mage/cards/t/TemptWithReflections.java
@@ -72,7 +72,7 @@ class TemptWithReflectionsEffect extends OneShotEffect {
public TemptWithReflectionsEffect() {
super(Outcome.PutCreatureInPlay);
- this.staticText = "Tempting offer - Choose target creature you control. Create a token that's a copy of that creature. Each opponent may create a token that's a copy of that creature. For each opponent who does, create a token that's a copy of that creature";
+ this.staticText = "Tempting offer — Choose target creature you control. Create a token that's a copy of that creature. Each opponent may create a token that's a copy of that creature. For each opponent who does, create a token that's a copy of that creature";
}
public TemptWithReflectionsEffect(final TemptWithReflectionsEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/t/TemptWithVengeance.java b/Mage.Sets/src/mage/cards/t/TemptWithVengeance.java
index 8402c8a4793..d3c6174d98f 100644
--- a/Mage.Sets/src/mage/cards/t/TemptWithVengeance.java
+++ b/Mage.Sets/src/mage/cards/t/TemptWithVengeance.java
@@ -67,7 +67,7 @@ class TemptWithVengeanceEffect extends OneShotEffect {
public TemptWithVengeanceEffect() {
super(Outcome.PutLandInPlay);
- this.staticText = "Tempting offer - create X 1/1 red Elemental creature tokens with haste. Each opponent may create X 1/1 red Elemental creature tokens with haste. For each player who does, create X 1/1 red Elemental creature tokens with haste";
+ this.staticText = "Tempting offer — create X 1/1 red Elemental creature tokens with haste. Each opponent may create X 1/1 red Elemental creature tokens with haste. For each player who does, create X 1/1 red Elemental creature tokens with haste";
}
public TemptWithVengeanceEffect(final TemptWithVengeanceEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/t/TheUrDragon.java b/Mage.Sets/src/mage/cards/t/TheUrDragon.java
index bf3283104f7..88b2653f776 100644
--- a/Mage.Sets/src/mage/cards/t/TheUrDragon.java
+++ b/Mage.Sets/src/mage/cards/t/TheUrDragon.java
@@ -72,7 +72,7 @@ public class TheUrDragon extends CardImpl {
this.power = new MageInt(10);
this.toughness = new MageInt(10);
- // Eminence - As long as The Ur-Dragon is in the command zone or on the battlefield, other Dragon spells you cast cost {1} less to cast.
+ // Eminence — As long as The Ur-Dragon is in the command zone or on the battlefield, other Dragon spells you cast cost {1} less to cast.
Effect effect = new SpellsCostReductionControllerEffect(filter, 1);
effect.setText("As long as {this} is in the command zone or on the battlefield, other Dragon spells you cast cost {1} less to cast");
Ability ability = new SimpleStaticAbility(Zone.BATTLEFIELD, effect);
diff --git a/Mage.Sets/src/mage/cards/t/ThermalBlast.java b/Mage.Sets/src/mage/cards/t/ThermalBlast.java
index 09d6342660c..f5e506b3c76 100644
--- a/Mage.Sets/src/mage/cards/t/ThermalBlast.java
+++ b/Mage.Sets/src/mage/cards/t/ThermalBlast.java
@@ -52,7 +52,7 @@ public class ThermalBlast extends CardImpl {
Effect effect = new ConditionalOneShotEffect(new DamageTargetEffect(5),
new DamageTargetEffect(3),
new CardsInControllerGraveCondition(7),
- "{this} deals 3 damage to target creature.
Threshold - {this} deals 5 damage to that creature instead if seven or more cards are in your graveyard.");
+ "{this} deals 3 damage to target creature.
Threshold — {this} deals 5 damage to that creature instead if seven or more cards are in your graveyard.");
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
this.getSpellAbility().addEffect(effect);
}
diff --git a/Mage.Sets/src/mage/cards/t/TimelyHordemate.java b/Mage.Sets/src/mage/cards/t/TimelyHordemate.java
index 0c1be7483da..1c81660e5c3 100644
--- a/Mage.Sets/src/mage/cards/t/TimelyHordemate.java
+++ b/Mage.Sets/src/mage/cards/t/TimelyHordemate.java
@@ -64,7 +64,7 @@ public class TimelyHordemate extends CardImpl {
this.power = new MageInt(3);
this.toughness = new MageInt(2);
- // Raid - When Timely Hordemate enters the battlefield, if you attacked this turn, return target creature card with converted mana cost 2 or less from your graveyard to the battlefield.
+ // Raid — When Timely Hordemate enters the battlefield, if you attacked this turn, return target creature card with converted mana cost 2 or less from your graveyard to the battlefield.
Ability ability = new ConditionalTriggeredAbility(new EntersBattlefieldTriggeredAbility(new ReturnFromGraveyardToBattlefieldTargetEffect()), RaidCondition.instance,
"Raid — When {this} enters the battlefield, if you attacked with a creature this turn, return target creature card with converted mana cost 2 or less from your graveyard to the battlefield.");
ability.addTarget(new TargetCardInYourGraveyard(filter));
diff --git a/Mage.Sets/src/mage/cards/t/ToxicStench.java b/Mage.Sets/src/mage/cards/t/ToxicStench.java
index c057d1de70a..c2d6c78f896 100644
--- a/Mage.Sets/src/mage/cards/t/ToxicStench.java
+++ b/Mage.Sets/src/mage/cards/t/ToxicStench.java
@@ -75,7 +75,7 @@ public class ToxicStench extends CardImpl {
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
new DestroyTargetEffect(true),
new CardsInControllerGraveCondition(7),
- "
Threshold - If seven or more cards are in your graveyard, instead destroy that creature. It can't be regenerated."));
+ "
Threshold — If seven or more cards are in your graveyard, instead destroy that creature. It can't be regenerated."));
this.getSpellAbility().addTarget(new TargetCreaturePermanent(filter));
}
diff --git a/Mage.Sets/src/mage/cards/t/TritonFortuneHunter.java b/Mage.Sets/src/mage/cards/t/TritonFortuneHunter.java
index 44ac3fd7738..ca92fb28631 100644
--- a/Mage.Sets/src/mage/cards/t/TritonFortuneHunter.java
+++ b/Mage.Sets/src/mage/cards/t/TritonFortuneHunter.java
@@ -50,7 +50,7 @@ public class TritonFortuneHunter extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(2);
- // Heroic - Whenever you cast a spell that targets Triton Fortune Hunter, draw a card.
+ // Heroic — Whenever you cast a spell that targets Triton Fortune Hunter, draw a card.
this.addAbility(new HeroicAbility(new DrawCardSourceControllerEffect(1)));
}
diff --git a/Mage.Sets/src/mage/cards/t/TrompTheDomains.java b/Mage.Sets/src/mage/cards/t/TrompTheDomains.java
index 374f9e22a98..4ccc9db3d8b 100644
--- a/Mage.Sets/src/mage/cards/t/TrompTheDomains.java
+++ b/Mage.Sets/src/mage/cards/t/TrompTheDomains.java
@@ -51,7 +51,7 @@ public class TrompTheDomains extends CardImpl {
// Domain - Until end of turn, creatures you control gain trample and get +1/+1 for each basic land type among lands you control.
Effect effect = new GainAbilityControlledEffect(TrampleAbility.getInstance(), Duration.EndOfTurn);
- effect.setText("Domain - Until end of turn, creatures you control gain Trample");
+ effect.setText("Domain — Until end of turn, creatures you control gain Trample");
this.getSpellAbility().addEffect(effect);
DynamicValue domain = new DomainValue();
effect = new BoostControlledEffect(domain, domain, Duration.EndOfTurn, StaticFilters.FILTER_PERMANENT_CREATURE, false);
diff --git a/Mage.Sets/src/mage/cards/t/TunnelingGeopede.java b/Mage.Sets/src/mage/cards/t/TunnelingGeopede.java
index 647a7770184..6087d8f9c14 100644
--- a/Mage.Sets/src/mage/cards/t/TunnelingGeopede.java
+++ b/Mage.Sets/src/mage/cards/t/TunnelingGeopede.java
@@ -49,7 +49,7 @@ public class TunnelingGeopede extends CardImpl {
this.power = new MageInt(3);
this.toughness = new MageInt(2);
- // Landfall - Whenever a land enters the battlefield under your control, Tunneling Geopede deals 1 damage to each opponent.
+ // Landfall — Whenever a land enters the battlefield under your control, Tunneling Geopede deals 1 damage to each opponent.
this.addAbility(new LandfallAbility(new DamagePlayersEffect(1, TargetController.OPPONENT), false));
}
diff --git a/Mage.Sets/src/mage/cards/t/Twinstrike.java b/Mage.Sets/src/mage/cards/t/Twinstrike.java
index b23223682aa..208f6e174e6 100644
--- a/Mage.Sets/src/mage/cards/t/Twinstrike.java
+++ b/Mage.Sets/src/mage/cards/t/Twinstrike.java
@@ -56,7 +56,7 @@ public class Twinstrike extends CardImpl {
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
new DestroyTargetEffect(),
HellbentCondition.instance,
- "
Hellbent - Destroy those creatures instead if you have no cards in hand"));
+ "
Hellbent — Destroy those creatures instead if you have no cards in hand"));
this.getSpellAbility().addTarget(new TargetCreaturePermanent(2,2));
}
diff --git a/Mage.Sets/src/mage/cards/t/TyrantsChoice.java b/Mage.Sets/src/mage/cards/t/TyrantsChoice.java
index a943e94bc37..92020df34e7 100644
--- a/Mage.Sets/src/mage/cards/t/TyrantsChoice.java
+++ b/Mage.Sets/src/mage/cards/t/TyrantsChoice.java
@@ -66,7 +66,7 @@ class TyrantsChoiceEffect extends OneShotEffect {
TyrantsChoiceEffect() {
super(Outcome.Benefit);
- this.staticText = "Will of the council - Starting with you, each player votes for death or torture. If death gets more votes, each opponent sacrifices a creature. If torture gets more votes or the vote is tied, each opponent loses 4 life";
+ this.staticText = "Will of the council — Starting with you, each player votes for death or torture. If death gets more votes, each opponent sacrifices a creature. If torture gets more votes or the vote is tied, each opponent loses 4 life";
}
TyrantsChoiceEffect(final TyrantsChoiceEffect effect) {
diff --git a/Mage.Sets/src/mage/cards/u/UmbraStalker.java b/Mage.Sets/src/mage/cards/u/UmbraStalker.java
index b0ae34b5ac8..fffb18f7980 100644
--- a/Mage.Sets/src/mage/cards/u/UmbraStalker.java
+++ b/Mage.Sets/src/mage/cards/u/UmbraStalker.java
@@ -60,7 +60,7 @@ public class UmbraStalker extends CardImpl {
// Chroma - Umbra Stalker's power and toughness are each equal to the number of black mana symbols in the mana costs of cards in your graveyard.
Effect effect = new SetPowerToughnessSourceEffect(new ChromaUmbraStalkerCount(), Duration.WhileOnBattlefield);
- effect.setText("Chroma - Umbra Stalker's power and toughness are each equal to the number of black mana symbols in the mana costs of cards in your graveyard.");
+ effect.setText("Chroma — Umbra Stalker's power and toughness are each equal to the number of black mana symbols in the mana costs of cards in your graveyard.");
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
}
diff --git a/Mage.Sets/src/mage/cards/u/UnholyHunger.java b/Mage.Sets/src/mage/cards/u/UnholyHunger.java
index ec319dfd596..db902f5dd0e 100644
--- a/Mage.Sets/src/mage/cards/u/UnholyHunger.java
+++ b/Mage.Sets/src/mage/cards/u/UnholyHunger.java
@@ -51,9 +51,9 @@ public class UnholyHunger extends CardImpl {
this.getSpellAbility().addEffect(new DestroyTargetEffect());
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
- // Spell mastery - If there are two or more instant and/or sorcery cards in your graveyard, you gain 2 life.
+ // Spell mastery — If there are two or more instant and/or sorcery cards in your graveyard, you gain 2 life.
Effect effect = new ConditionalOneShotEffect(new GainLifeEffect(2),
- SpellMasteryCondition.instance, "Spell mastery - If there are two or more instant and/or sorcery cards in your graveyard, you gain 2 life");
+ SpellMasteryCondition.instance, "Spell mastery — If there are two or more instant and/or sorcery cards in your graveyard, you gain 2 life");
this.getSpellAbility().addEffect(effect);
}
diff --git a/Mage.Sets/src/mage/cards/v/ValakutPredator.java b/Mage.Sets/src/mage/cards/v/ValakutPredator.java
index 6e0fdb4e642..2ebb6cb1cec 100644
--- a/Mage.Sets/src/mage/cards/v/ValakutPredator.java
+++ b/Mage.Sets/src/mage/cards/v/ValakutPredator.java
@@ -49,7 +49,7 @@ public class ValakutPredator extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(2);
- // Landfall - Whenever a land enters the battlefield under your control, Valakut Predator gets +2/+2 until end of turn.
+ // Landfall — Whenever a land enters the battlefield under your control, Valakut Predator gets +2/+2 until end of turn.
this.addAbility(new LandfallAbility(new BoostSourceEffect(2, 2, Duration.EndOfTurn), false));
}
diff --git a/Mage.Sets/src/mage/cards/v/VanguardOfBrimaz.java b/Mage.Sets/src/mage/cards/v/VanguardOfBrimaz.java
index 62df5b49ba2..a46b8d87899 100644
--- a/Mage.Sets/src/mage/cards/v/VanguardOfBrimaz.java
+++ b/Mage.Sets/src/mage/cards/v/VanguardOfBrimaz.java
@@ -54,7 +54,7 @@ public class VanguardOfBrimaz extends CardImpl {
// Vigilance
this.addAbility(VigilanceAbility.getInstance());
- // Heroic - Whenever you cast a spell that targets Vanguard of Brimaz, create a 1/1 white Cat Soldier creature token with vigilance.
+ // Heroic — Whenever you cast a spell that targets Vanguard of Brimaz, create a 1/1 white Cat Soldier creature token with vigilance.
this.addAbility(new HeroicAbility(new CreateTokenEffect(new CatSoldierCreatureToken()), false));
}
diff --git a/Mage.Sets/src/mage/cards/w/WarNameAspirant.java b/Mage.Sets/src/mage/cards/w/WarNameAspirant.java
index 6493133c3b0..a5c3e402594 100644
--- a/Mage.Sets/src/mage/cards/w/WarNameAspirant.java
+++ b/Mage.Sets/src/mage/cards/w/WarNameAspirant.java
@@ -65,7 +65,7 @@ public class WarNameAspirant extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(1);
- // Raid - War-Name Aspirant enters the battlefield with a +1/+1 counter on it if you attacked with a creature this turn.
+ // Raid — War-Name Aspirant enters the battlefield with a +1/+1 counter on it if you attacked with a creature this turn.
this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance(1), false),
RaidCondition.instance,
"Raid — {this} enters the battlefield with a +1/+1 counter on it if you attacked with a creature this turn",
diff --git a/Mage.Sets/src/mage/cards/w/WarchanterOfMogis.java b/Mage.Sets/src/mage/cards/w/WarchanterOfMogis.java
index b2a37943e7f..2c92169220d 100644
--- a/Mage.Sets/src/mage/cards/w/WarchanterOfMogis.java
+++ b/Mage.Sets/src/mage/cards/w/WarchanterOfMogis.java
@@ -54,7 +54,7 @@ public class WarchanterOfMogis extends CardImpl {
this.power = new MageInt(3);
this.toughness = new MageInt(3);
- // Inspired - Whenever Warchanter of Mogis becomes untapped, target creature you control gains intimidate until end of turn.
+ // Inspired — Whenever Warchanter of Mogis becomes untapped, target creature you control gains intimidate until end of turn.
Ability ability = new InspiredAbility(new GainAbilityTargetEffect(IntimidateAbility.getInstance(), Duration.EndOfTurn), false);
ability.addTarget(new TargetControlledCreaturePermanent());
this.addAbility(ability);
diff --git a/Mage.Sets/src/mage/cards/w/WorldlyCounsel.java b/Mage.Sets/src/mage/cards/w/WorldlyCounsel.java
index 2ac46960a3e..634748da29c 100644
--- a/Mage.Sets/src/mage/cards/w/WorldlyCounsel.java
+++ b/Mage.Sets/src/mage/cards/w/WorldlyCounsel.java
@@ -72,7 +72,7 @@ class WorldlyCounselEffect extends OneShotEffect {
public WorldlyCounselEffect() {
super(Outcome.DrawCard);
- this.staticText = "Domain - Look at the top X cards of your library, where X is the number of basic land types among lands you control. Put one of those cards into your hand and the rest on the bottom of your library in any order";
+ this.staticText = "Domain — Look at the top X cards of your library, where X is the number of basic land types among lands you control. Put one of those cards into your hand and the rest on the bottom of your library in any order";
}
public WorldlyCounselEffect(final WorldlyCounselEffect effect) {
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 739a9043932..2c7808d5d5f 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
@@ -115,7 +115,7 @@ public class SpendOtherManaTest extends CardTestPlayerBase {
addCard(Zone.GRAVEYARD, playerA, "Lightning Bolt", 2);
// Search your library for a card and put that card into your hand. Then shuffle your library.
- // Spell mastery - If there are two or more instant and/or sorcery cards in your graveyard, add {B}{B}{B}.
+ // Spell mastery — If there are two or more instant and/or sorcery cards in your graveyard, add {B}{B}{B}.
addCard(Zone.HAND, playerA, "Dark Petition"); // {3}{B}{B}
// +1: Create a 0/1 green Plant creature token onto the battlefield.
diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/dies/OmnathLocusOfRageTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/dies/OmnathLocusOfRageTest.java
index ad134443413..9439e4dd352 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/triggers/dies/OmnathLocusOfRageTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/triggers/dies/OmnathLocusOfRageTest.java
@@ -44,7 +44,7 @@ public class OmnathLocusOfRageTest extends CardTestPlayerBase {
*/
@Test
public void testDiesTriggeredAbility() {
- // Landfall - Whenever a land enters the battlefield under your control, put a 5/5 red and green Elemental creature token onto the battlefield.
+ // Landfall — Whenever a land enters the battlefield under your control, put a 5/5 red and green Elemental creature token onto the battlefield.
// Whenever Omnath, Locus of Rage or another Elemental you control dies, Omnath deals 3 damage to any target.
addCard(Zone.BATTLEFIELD, playerA, "Omnath, Locus of Rage", 1);
@@ -68,7 +68,7 @@ public class OmnathLocusOfRageTest extends CardTestPlayerBase {
@Test
public void testDiesTriggeredAbilityOnlyIfPresent() {
- // Landfall - Whenever a land enters the battlefield under your control, put a 5/5 red and green Elemental creature token onto the battlefield.
+ // Landfall — Whenever a land enters the battlefield under your control, put a 5/5 red and green Elemental creature token onto the battlefield.
// Whenever Omnath, Locus of Rage or another Elemental you control dies, Omnath deals 3 damage to any target.
addCard(Zone.BATTLEFIELD, playerA, "Omnath, Locus of Rage", 1);
addCard(Zone.BATTLEFIELD, playerA, "Lightning Elemental", 1); // 4/1 Elemental - Haste
diff --git a/Mage.Tests/src/test/java/org/mage/test/commander/duel/AnafenzaTest.java b/Mage.Tests/src/test/java/org/mage/test/commander/duel/AnafenzaTest.java
index ef1441ce5cd..cf96c0c518a 100644
--- a/Mage.Tests/src/test/java/org/mage/test/commander/duel/AnafenzaTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/commander/duel/AnafenzaTest.java
@@ -103,7 +103,7 @@ public class AnafenzaTest extends CardTestCommanderDuelBase {
addCard(Zone.BATTLEFIELD, playerA, "Acidic Slime", 1);
addCard(Zone.HAND, playerB, "Forest", 2);
- // Landfall - Whenever a land enters the battlefield under your control, put a 5/5 red and green Elemental creature token onto the battlefield.
+ // Landfall — Whenever a land enters the battlefield under your control, put a 5/5 red and green Elemental creature token onto the battlefield.
// Whenever Omnath, Locus of Rage or another Elemental you control dies, Omnath deals 3 damage to any target.
addCard(Zone.BATTLEFIELD, playerB, "Omnath, Locus of Rage", 1);
diff --git a/Mage/src/main/java/mage/abilities/abilityword/ConstellationAbility.java b/Mage/src/main/java/mage/abilities/abilityword/ConstellationAbility.java
index 6dd21c8b275..1f1edfde803 100644
--- a/Mage/src/main/java/mage/abilities/abilityword/ConstellationAbility.java
+++ b/Mage/src/main/java/mage/abilities/abilityword/ConstellationAbility.java
@@ -79,6 +79,6 @@ public class ConstellationAbility extends TriggeredAbilityImpl {
@Override
public String getRule() {
- return new StringBuilder("Constellation - Whenever {this} or another enchantment enters the battlefield under your control, ").append(super.getRule()).toString();
+ return new StringBuilder("Constellation — Whenever {this} or another enchantment enters the battlefield under your control, ").append(super.getRule()).toString();
}
}
diff --git a/Mage/src/main/java/mage/abilities/abilityword/KinshipAbility.java b/Mage/src/main/java/mage/abilities/abilityword/KinshipAbility.java
index 3bc8a61082b..8ff8641c943 100644
--- a/Mage/src/main/java/mage/abilities/abilityword/KinshipAbility.java
+++ b/Mage/src/main/java/mage/abilities/abilityword/KinshipAbility.java
@@ -86,7 +86,7 @@ public class KinshipAbility extends TriggeredAbilityImpl {
@Override
public String getRule() {
- return new StringBuilder("Kinship - At the beginning of your upkeep, ").append(super.getRule()).toString();
+ return new StringBuilder("Kinship — At the beginning of your upkeep, ").append(super.getRule()).toString();
}
}
diff --git a/Mage/src/main/java/mage/abilities/abilityword/LieutenantAbility.java b/Mage/src/main/java/mage/abilities/abilityword/LieutenantAbility.java
index 6471e97e765..701c6dff438 100644
--- a/Mage/src/main/java/mage/abilities/abilityword/LieutenantAbility.java
+++ b/Mage/src/main/java/mage/abilities/abilityword/LieutenantAbility.java
@@ -46,12 +46,12 @@ import mage.constants.Zone;
public class LieutenantAbility extends SimpleStaticAbility {
public LieutenantAbility(ContinuousEffect effect) {
- super(Zone.BATTLEFIELD, new ConditionalContinuousEffect(new BoostSourceEffect(2, 2, Duration.WhileOnBattlefield), CommanderInPlayCondition.instance, "Lieutenant - As long as you control your commander, {this} gets +2/+2"));
+ super(Zone.BATTLEFIELD, new ConditionalContinuousEffect(new BoostSourceEffect(2, 2, Duration.WhileOnBattlefield), CommanderInPlayCondition.instance, "Lieutenant — As long as you control your commander, {this} gets +2/+2"));
this.addEffect(new ConditionalContinuousEffect(effect, CommanderInPlayCondition.instance, effect.getText(null)));
}
public LieutenantAbility(Effects effects) {
- super(Zone.BATTLEFIELD, new ConditionalContinuousEffect(new BoostSourceEffect(2, 2, Duration.WhileOnBattlefield), CommanderInPlayCondition.instance, "Lieutenant - As long as you control your commander, {this} gets +2/+2"));
+ super(Zone.BATTLEFIELD, new ConditionalContinuousEffect(new BoostSourceEffect(2, 2, Duration.WhileOnBattlefield), CommanderInPlayCondition.instance, "Lieutenant — As long as you control your commander, {this} gets +2/+2"));
for (Effect effect : effects) {
this.addEffect(new ConditionalContinuousEffect((ContinuousEffect) effect, CommanderInPlayCondition.instance, effect.getText(null)));
}
diff --git a/Mage/src/main/java/mage/abilities/abilityword/StriveAbility.java b/Mage/src/main/java/mage/abilities/abilityword/StriveAbility.java
index 4517b16cd5f..8804fe9b33a 100644
--- a/Mage/src/main/java/mage/abilities/abilityword/StriveAbility.java
+++ b/Mage/src/main/java/mage/abilities/abilityword/StriveAbility.java
@@ -68,7 +68,7 @@ public class StriveAbility extends SimpleStaticAbility {
@Override
public String getRule() {
- return new StringBuilder("Strive - {this} costs ").append(striveCost).append(" more to cast for each target beyond the first.").toString();
+ return new StringBuilder("Strive — {this} costs ").append(striveCost).append(" more to cast for each target beyond the first.").toString();
}
}
diff --git a/Mage/src/main/java/mage/abilities/effects/keyword/SweepEffect.java b/Mage/src/main/java/mage/abilities/effects/keyword/SweepEffect.java
index b70c5895679..fa6a28a5f90 100644
--- a/Mage/src/main/java/mage/abilities/effects/keyword/SweepEffect.java
+++ b/Mage/src/main/java/mage/abilities/effects/keyword/SweepEffect.java
@@ -53,7 +53,7 @@ public class SweepEffect extends OneShotEffect {
public SweepEffect(SubType sweepSubtype) {
super(Outcome.Benefit);
this.sweepSubtype = sweepSubtype;
- this.staticText = "Sweep - Return any number of " + sweepSubtype + (sweepSubtype.getDescription().endsWith("s") ? "" : "s") + " you control to their owner's hand";
+ this.staticText = "Sweep — Return any number of " + sweepSubtype + (sweepSubtype.getDescription().endsWith("s") ? "" : "s") + " you control to their owner's hand";
}
public SweepEffect(final SweepEffect effect) {
diff --git a/Mage/src/main/java/mage/abilities/keyword/BattalionAbility.java b/Mage/src/main/java/mage/abilities/keyword/BattalionAbility.java
index 9b78f558631..a9fedfd858a 100644
--- a/Mage/src/main/java/mage/abilities/keyword/BattalionAbility.java
+++ b/Mage/src/main/java/mage/abilities/keyword/BattalionAbility.java
@@ -72,7 +72,7 @@ public class BattalionAbility extends TriggeredAbilityImpl {
@Override
public String getRule() {
- return new StringBuilder("Battalion - Whenever {this} and at least two other creatures attack, ").append(super.getRule()).toString() ;
+ return new StringBuilder("Battalion — Whenever {this} and at least two other creatures attack, ").append(super.getRule()).toString() ;
}
}
diff --git a/Mage/src/main/java/mage/abilities/keyword/BloodrushAbility.java b/Mage/src/main/java/mage/abilities/keyword/BloodrushAbility.java
index dafb43c8e81..ea9fda3ca01 100644
--- a/Mage/src/main/java/mage/abilities/keyword/BloodrushAbility.java
+++ b/Mage/src/main/java/mage/abilities/keyword/BloodrushAbility.java
@@ -65,7 +65,7 @@ public class BloodrushAbility extends ActivatedAbilityImpl {
@Override
public String getRule() {
- StringBuilder sb = new StringBuilder("Bloodrush - ");
+ StringBuilder sb = new StringBuilder("Bloodrush — ");
sb.append(super.getRule());
return sb.toString();
}
diff --git a/Mage/src/main/java/mage/abilities/keyword/ChannelAbility.java b/Mage/src/main/java/mage/abilities/keyword/ChannelAbility.java
index f181894b99b..a88831f2253 100644
--- a/Mage/src/main/java/mage/abilities/keyword/ChannelAbility.java
+++ b/Mage/src/main/java/mage/abilities/keyword/ChannelAbility.java
@@ -60,7 +60,7 @@ public class ChannelAbility extends ActivatedAbilityImpl {
@Override
public String getRule() {
- StringBuilder sb = new StringBuilder("Channel - ");
+ StringBuilder sb = new StringBuilder("Channel — ");
sb.append(super.getRule());
if(this.timing == TimingRule.SORCERY) {
sb.append(" Activate this ability only any time you could cast a sorcery.");
diff --git a/Mage/src/main/java/mage/abilities/keyword/HeroicAbility.java b/Mage/src/main/java/mage/abilities/keyword/HeroicAbility.java
index 083a80484b7..1a8d5d70583 100644
--- a/Mage/src/main/java/mage/abilities/keyword/HeroicAbility.java
+++ b/Mage/src/main/java/mage/abilities/keyword/HeroicAbility.java
@@ -103,6 +103,6 @@ public class HeroicAbility extends TriggeredAbilityImpl {
@Override
public String getRule() {
- return new StringBuilder("Heroic - Whenever you cast a spell that targets {this}, ").append(super.getRule()).toString();
+ return new StringBuilder("Heroic — Whenever you cast a spell that targets {this}, ").append(super.getRule()).toString();
}
}
diff --git a/Mage/src/main/java/mage/abilities/keyword/InspiredAbility.java b/Mage/src/main/java/mage/abilities/keyword/InspiredAbility.java
index 23a8b876bb1..5ac808f7dad 100644
--- a/Mage/src/main/java/mage/abilities/keyword/InspiredAbility.java
+++ b/Mage/src/main/java/mage/abilities/keyword/InspiredAbility.java
@@ -71,6 +71,6 @@ public class InspiredAbility extends TriggeredAbilityImpl {
@Override
public String getRule() {
- return "Inspired - Whenever {this} becomes untapped, " + super.getRule();
+ return "Inspired — Whenever {this} becomes untapped, " + super.getRule();
}
}
diff --git a/Utils/mtg-cards-data.txt b/Utils/mtg-cards-data.txt
index 603cdffbda8..1f28bcb355a 100644
--- a/Utils/mtg-cards-data.txt
+++ b/Utils/mtg-cards-data.txt
@@ -1358,12 +1358,12 @@ Crack the Earth|Betrayers of Kamigawa|98|C|{R}|Sorcery - Arcane|||Each player sa
Cunning Bandit|Betrayers of Kamigawa|99|U|{1}{R}{R}|Creature - Human Warrior|2|2|Whenever you cast a Spirit or Arcane spell, you may put a ki counter on Cunning Bandit.$At the beginning of the end step, if there are two or more ki counters on Cunning Bandit, you may flip it.$|
Acolyte's Reward|Born of the Gods|1|U|{1}{W}|Instant|||Prevent the next X damage that would be dealt to target creature this turn, where X is your devotion to white. If damage is prevented this way, Acolyte's Reward deals that much damage to any target.|
Akroan Phalanx|Born of the Gods|2|U|{3}{W}|Creature - Human Soldier|3|3|Vigilance${2}{R}: Creatures you control get +1/+0 until end of turn.|
-Akroan Skyguard|Born of the Gods|3|C|{1}{W}|Creature - Human Soldier|1|1|Flying$Heroic - Whenever you cast a spell that targets Akroan Skyguard, put a +1/+1 counter on Akroan Skyguard.|
+Akroan Skyguard|Born of the Gods|3|C|{1}{W}|Creature - Human Soldier|1|1|Flying$Heroic — Whenever you cast a spell that targets Akroan Skyguard, put a +1/+1 counter on Akroan Skyguard.|
Archetype of Courage|Born of the Gods|4|U|{1}{W}{W}|Enchantment Creature Human Soldier|2|2|Creatures you control have first strike.$Creatures your opponents control lose first strike and can't have or gain first strike.|
Brimaz, King of Oreskos|Born of the Gods|5|M|{1}{W}{W}|Legendary Creature Cat Soldier|3|4|Vigilance$Whenever Brimaz, King of Oreskos attacks, put a 1/1 white Cat Soldier creature token with vigilance onto the battlefield attacking.$Whenever Brimaz blocks a creature, put a 1/1 white Cat Soldier creature token with vigilance onto the battlefield blocking that creature.|
Dawn to Dusk|Born of the Gods|6|U|{2}{W}{W}|Sorcery|||Choose one or both Return target enchantment card from your graveyard to your hand; and/or destroy target enchantment.|
Eidolon of Countless Battles|Born of the Gods|7|R|{1}{W}{W}|Enchantment Creature Spirit|0|0|Bestow {2}{W}{W}$Eidolon of Countless Battles and enchanted creature get +1/+1 for each creature you control and +1/+1 for each Aura you control.|
-Elite Skirmisher|Born of the Gods|8|C|{2}{W}|Creature - Human Soldier|3|1|Heroic - Whenever you cast a spell that targets Elite Skirmisher, you may tap target creature.|
+Elite Skirmisher|Born of the Gods|8|C|{2}{W}|Creature - Human Soldier|3|1|Heroic — Whenever you cast a spell that targets Elite Skirmisher, you may tap target creature.|
Ephara's Radiance|Born of the Gods|9|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{1}{W}, {T}: You gain 3 life."|
Excoriate|Born of the Gods|10|C|{3}{W}|Sorcery|||Exile target tapped creature.|
Fated Retribution|Born of the Gods|11|R|{4}{W}{W}{W}|Instant|||Destroy all creatures and planeswalkers. If it's your turn, scry 2.|
@@ -1377,7 +1377,7 @@ Hold at Bay|Born of the Gods|18|C|{1}{W}|Instant|||Prevent the next 7 damage tha
Loyal Pegasus|Born of the Gods|19|C|{W}|Creature Pegasus|2|1|Flying$Loyal Pegasus can't attack or block alone.|
Mortal's Ardor|Born of the Gods|20|C|{W}|Instant|||Target creature gets +1/+1 and gains lifelink until end of turn.|
Nyxborn Shieldmate|Born of the Gods|21|C|{W}|Enchantment Creature Human Soldier|1|2|Bestow {2}{W}$Enchanted creature gets +1/+2.|
-Oreskos Sun Guide|Born of the Gods|22|C|{1}{W}|Creature Cat Monk|2|2|Inspired - Whenever Oreskos Sun Guide becomes untapped, you gain 2 life.|
+Oreskos Sun Guide|Born of the Gods|22|C|{1}{W}|Creature Cat Monk|2|2|Inspired — Whenever Oreskos Sun Guide becomes untapped, you gain 2 life.|
Ornitharch|Born of the Gods|23|U|{3}{W}{W}|Creature - Archon|3|3|Flying$Tribute 2$When Ornitharch enters the battlefield, if tribute wasn't paid, put two 1/1 white Bird creature tokens with flying onto the battlefield.|
Plea for Guidance|Born of the Gods|24|R|{5}{W}|Sorcery|||Search your library for up to two enchantment cards, reveal them, and put them into your hand. Then shuffle your library.|
Revoke Existence|Born of the Gods|25|C|{1}{W}|Sorcery|||Exile target artifact or enchantment.|
@@ -1385,12 +1385,12 @@ Silent Sentinel|Born of the Gods|26|R|{5}{W}{W}|Creature Archon|4|6|Flying$Whe
Spirit of the Labyrinth|Born of the Gods|27|R|{1}{W}|Enchantment Creature Spirit|3|1|Each player can't draw more than one card each turn.|
Sunbond|Born of the Gods|28|U|{3}{W}|Enchantment Aura|||Enchant creature$Enchanted creature has "Whenever you gain life, put that many +1/+1 counters on this creature."|
Vanguard of Brimaz|Born of the Gods|29|U|{W}{W}|Creature Cat Soldier|2|2|Vigilance$Heroic Whenever you cast a spell that targets Vanguard of Brimaz, put a 1/1 white Cat Soldier creature token with vigilance onto the battlefield.|
-Aerie Worshippers|Born of the Gods|30|U|{3}{U}|Creature Human Cleric|2|4|Inspired - Whenever Aerie Worshipers becomes untapped, you may pay {2}{U}. If you do, put a 2/2 blue Bird enchantment creature token with flying onto the battlefield.|
-Arbiter of the Ideal|Born of the Gods|31|R|{4}{U}{U}|Creature Sphinx|4|5|Flying$Inspired - Whenever Arbiter of the Ideal becomes untapped, reveal the top card of your library. If it's an artifact, creature, or land card, you may put it onto the battlefield with a manifestation counter on it. It's an enchantment in addition to its other types.|
+Aerie Worshippers|Born of the Gods|30|U|{3}{U}|Creature Human Cleric|2|4|Inspired — Whenever Aerie Worshipers becomes untapped, you may pay {2}{U}. If you do, put a 2/2 blue Bird enchantment creature token with flying onto the battlefield.|
+Arbiter of the Ideal|Born of the Gods|31|R|{4}{U}{U}|Creature Sphinx|4|5|Flying$Inspired — Whenever Arbiter of the Ideal becomes untapped, reveal the top card of your library. If it's an artifact, creature, or land card, you may put it onto the battlefield with a manifestation counter on it. It's an enchantment in addition to its other types.|
Archetype of Imagination|Born of the Gods|32|U|{4}{U}{U}|Enchantment Creature Human Wizard|3|2|Creatures you control have flying.$Creatures your opponents control lose flying and can't have or gain flying.|
-Chorus of the Tides|Born of the Gods|33|C|{3}{U}|Creature - Siren|3|2|Flying$Heroic - Whenever you cast a spell that targets Chorus of the Tides, scry 1.|
+Chorus of the Tides|Born of the Gods|33|C|{3}{U}|Creature - Siren|3|2|Flying$Heroic — Whenever you cast a spell that targets Chorus of the Tides, scry 1.|
Crypsis|Born of the Gods|34|C|{1}{U}|Instant|||Target creature you control gains protection from creatures your opponents control until end of turn. Untap it.|
-Deepwater Hypnotist|Born of the Gods|35|C|{1}{U}|Creature - Merfolk Wizard|2|1|Inspired - Whenever Deepwater Hypnotist becomes untapped, target creature an opponent controls gets -3/-0 until end of turn.|
+Deepwater Hypnotist|Born of the Gods|35|C|{1}{U}|Creature - Merfolk Wizard|2|1|Inspired — Whenever Deepwater Hypnotist becomes untapped, target creature an opponent controls gets -3/-0 until end of turn.|
Divination|Born of the Gods|36|C|{2}{U}|Sorcery|||Draw two cards.|
Eternity Snare|Born of the Gods|37|U|{5}{U}|Enchantment - Aura|||Enchant creature$When Eternity Snare enters the battlefield, draw a card.$Enchanted creature doesn't untap during its controller's untap step.|
Evanescent Intellect|Born of the Gods|38|C|{U}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{1}{U}, {T}: Target player puts the top three cards of his or her library into his or her graveyard."|
@@ -1406,7 +1406,7 @@ Oracle's Insight|Born of the Gods|47|U|{3}{U}|Enchantment - Aura|||Enchant creat
Perplexing Chimera|Born of the Gods|48|R|{4}{U}|Enchantment Creature Chimera|3|3|Whenever an opponent casts a spell, you may exchange control of Perplexing Chimera and that spell. If you do, you may choose new targets for the spell. (If the spell becomes a permanent, you control that permanent.)|
Retraction Helix|Born of the Gods|49|C|{U}|Instant|||Until end of turn, target creature gains "{T}: Return target nonland permanent to its owner's hand."|
Siren of the Fanged Coast|Born of the Gods|50|U|{3}{U}{U}|Creature - Siren|1|1|Flying$Tribute 3$When Siren of the Fanged Coast enters the battlefield, if tribute wasn't paid, gain control of target creature.|
-Sphinx's Disciple|Born of the Gods|51|C|{3}{U}{U}|Creature - Human Wizard|2|2|Flying$Inspired - Whenever Sphinx's Disciple becomes untapped, draw a card.|
+Sphinx's Disciple|Born of the Gods|51|C|{3}{U}{U}|Creature - Human Wizard|2|2|Flying$Inspired — Whenever Sphinx's Disciple becomes untapped, draw a card.|
Stratus Walk|Born of the Gods|52|C|{1}{U}|Enchantment - Aura|||Enchant creature$When Stratus Walk enters the battlefield, draw a card.$Enchanted creature has flying.$Enchanted creature can block only creatures with flying.|
Sudden Storm|Born of the Gods|53|C|{3}{U}|Instant|||Tap up to two target creatures. Those creatures don't untap during their controllers' next untap steps. Scry 1.|
Thassa's Rebuff|Born of the Gods|54|U|{1}{U}|Instant|||Counter target spell unless its controller pays {X}, where X is your devotion to blue.|
@@ -1426,7 +1426,7 @@ Eye Gouge|Born of the Gods|67|C|{B}|Instant|||Target creature gets -1/-1 until e
Fate Unraveler|Born of the Gods|68|R|{3}{B}|Enchantment Creature Hag|3|4|Whenever an opponent draws a card, Fate Unraveler deals 1 damage to that player.|
Fated Return|Born of the Gods|69|R|{4}{B}{B}{B}|Instant|||Put target creature card from a graveyard onto the battlefield under your control. It gains indestructible. If it's your turn, scry 2.|
Felhide Brawler|Born of the Gods|70|C|{1}{B}|Creature Minotaur|2|2|Felhide Brawler can't block unless you control another Minotaur.|
-Forlorn Pseudamma|Born of the Gods|71|U|{3}{B}|Creature Zombie|2|1|Intimidate$Inspired - Whenever Forlorn Pseudamma becomes untapped, you may pay {2}{B}. If you do, put a 2/2 black Zombie enchantment creature token onto the battlefield.|
+Forlorn Pseudamma|Born of the Gods|71|U|{3}{B}|Creature Zombie|2|1|Intimidate$Inspired — Whenever Forlorn Pseudamma becomes untapped, you may pay {2}{B}. If you do, put a 2/2 black Zombie enchantment creature token onto the battlefield.|
Forsaken Drifters|Born of the Gods|72|C|{3}{B}|Creature - Zombie|4|2|When Forsaken Drifters dies, put the top four cards of your library into your graveyard.|
Gild|Born of the Gods|73|R|{3}{B}|Enchantment Creature Hag|3|4|Whenever an opponent draws a card, Fate Unraveler deals 1 damage to that player.|
Grisly Transformation|Born of the Gods|74|C|{2}{B}|Enchantment - Aura|||Enchant creature$When Grisly Transformation enters the battlefield, draw a card.$Enchanted creature has intimidate.|
@@ -1435,12 +1435,12 @@ Marshmist Titan|Born of the Gods|76|C|{6}{B}|Creature Giant|4|5|Marshmist Tita
Necrobite|Born of the Gods|77|C|{2}{B}|Instant|||Target creature gains deathtouch until end of turn. Regenerate it.|
Nyxborn Eidolon|Born of the Gods|78|C|{1}{B}|Enchantment Creature Spirit|2|1|Bestow {4}{B}$Enchanted creature gets +2/+1.|
Odunos River Trawler|Born of the Gods|79|U|{2}{B}|Creature - Zombie|2|2|When Odunos River Trawler enters the battlefield, return target enchantment creature card from your graveyard to your hand.${W}, Sacrifice Odunos River Trawler: Return target enchantment creature card from your graveyard to your hand.|
-Pain Seer|Born of the Gods|80|R|{1}{B}|Creature Human Wizard|2|2|Inspired - Whenever Pain Seer becomes untapped, reveal the top card of your library and put that card into your hand. You lose life equal to that card's converted mana cost.|
+Pain Seer|Born of the Gods|80|R|{1}{B}|Creature Human Wizard|2|2|Inspired — Whenever Pain Seer becomes untapped, reveal the top card of your library and put that card into your hand. You lose life equal to that card's converted mana cost.|
Sanguimancy|Born of the Gods|81|U|{4}{B}|Sorcery|||You draw X cards and you lose X life, where X is your devotion to black.|
-Servant of Tymaret|Born of the Gods|82|C|{2}{B}|Creature Zombie|1|3|Inspired - Whenever Servant of Tymaret becomes untapped, each opponent loses 1 life. You gain life equal to the life lost this way.${2}{B}: Regenerate Servant of Tymaret.|
+Servant of Tymaret|Born of the Gods|82|C|{2}{B}|Creature Zombie|1|3|Inspired — Whenever Servant of Tymaret becomes untapped, each opponent loses 1 life. You gain life equal to the life lost this way.${2}{B}: Regenerate Servant of Tymaret.|
Shrike Harpy|Born of the Gods|83|U|{3}{B}{B}|Creature Harpy|2|2|Flying$Tribute 2 (As this creature enters the battlefield, an opponent of your choice may place two +1/+1 counters on it.)$When Shrike Harpy enters the battlefield, if tribute wasn't paid, target opponent sacrifices a creature.|
Spiteful Returned|Born of the Gods|84|U|{1}{B}|Enchantment Creature Zombie|1|1|Bestow {3}{B}$Whenever Spiteful Returned or enchanted creature attacks, defending player loses 2 life.$Enchanted creature gets +1/+1.|
-Warchanter of Mogis|Born of the Gods|85|C|{3}{B}{B}|Creature Minotaur Shaman|3|3|Inspired - Whenever Warchanter of Mogis becomes untapped, target creature you control gains intimidate until end of turn.|
+Warchanter of Mogis|Born of the Gods|85|C|{3}{B}{B}|Creature Minotaur Shaman|3|3|Inspired — Whenever Warchanter of Mogis becomes untapped, target creature you control gains intimidate until end of turn.|
Weight of the Underworld|Born of the Gods|86|C|{3}{B}|Enchantment Aura|||Enchant creature$Enchanted creature gets -3/-2.|
Akroan Conscriptor|Born of the Gods|87|U|{4}{R}|Creature Human Shaman|3|2|Heroic Whenever you cast a spell that targets Akroan Conscriptor, gain control of another target creature until end of turn. Untap that creature. It gains haste until end of turn.|
Archetype of Aggression|Born of the Gods|88|U|{1}{R}{R}|Enchantment Creature Human Warrior|3|2|Creatures you control have trample.$Creatures your opponents control lose trample and can't have or gain trample.|
@@ -1451,11 +1451,11 @@ Everflame Eidolon|Born of the Gods|92|U|{1}{R}|Enchantment Creature Spirit|1|1
Fall of the Hammer|Born of the Gods|93|C|{1}{R}|Instant|||Target creature you control deals damage equal to its power to another target creature.|
Fated Conflagration|Born of the Gods|94|R|{1}{R}{R}{R}|Instant|||Fated Conflagration deals 5 damage to target creature or planewalker. If it's your turn, scry 2.|
Fearsome Temper|Born of the Gods|95|C|{2}{R}|Enchantment Aura|||Enchant creature$Enchanted creature gets +2/+2 and has "{2}{R}: Target creature can't block this creature this turn."|
-Felhide Spiritbinder|Born of the Gods|96|R|{3}{R}|Creature Minotaur Shaman|3|4|Inspired - Whenever Felhide Spiritbinder becomes untapped, you may pay {1}{R}. If you do, put a token onto the battlefield that's a copy of another target creature except it's an enchantment in addition to its other types. It gains haste. Exile it at the beginning of the next end step.|
+Felhide Spiritbinder|Born of the Gods|96|R|{3}{R}|Creature Minotaur Shaman|3|4|Inspired — Whenever Felhide Spiritbinder becomes untapped, you may pay {1}{R}. If you do, put a token onto the battlefield that's a copy of another target creature except it's an enchantment in addition to its other types. It gains haste. Exile it at the beginning of the next end step.|
Flame-Wreathed Phoenix|Born of the Gods|97|M|{2}{R}{R}|Creature Phoenix|3|3|Flying$Tribute 2 (As this creature enters the battlefield, an opponent of your choice may place two +1/+1 counters on it.)$When Flame-Wreathed Phoenix enters the battlefield, if tribute wasn't paid, it gains haste and "When this creature dies, return it to its owner's hand."|
Forgestoker Dragon|Born of the Gods|98|R|{4}{R}{R}|Creature Dragon|5|4|Flying${1}{R}: Forgestoker Dragon deals 1 damage to target creature. That creature can't block this combat. Activate this ability only if Forgestoker Dragon is attacking.|
Impetuous Sunchaser|Born of the Gods|99|C|{1}{R}|Creature Human Soldier|1|1|Flying, haste$Impetuous Sunchaser attacks each turn if able.|
-Kragma Butcher|Born of the Gods|100|C|{2}{R}|Creature Minotaur Warrior|2|3|Inspired - Whenever Kragma Butcher becomes untapped, it gets +2/+0 until end of turn.|
+Kragma Butcher|Born of the Gods|100|C|{2}{R}|Creature Minotaur Warrior|2|3|Inspired — Whenever Kragma Butcher becomes untapped, it gets +2/+0 until end of turn.|
Lightning Volley|Born of the Gods|101|U|{3}{R}|Instant|||Until end of turn, creatures you control gain "{T}: This creature deals 1 damage to any target."|
Nyxborn Rollicker|Born of the Gods|102|C|{R}|Enchantment Creature Satyr|1|1|Bestow {1}{R}$Enchanted creature gets +1/+1.|
Oracle of Bones|Born of the Gods|103|R|{2}{R}{R}|Creature Minotaur Shaman|3|1|Haste$Tribute 2 (As this creature enters the battlefield, an opponent of your choice may place two +1/+1 counters on it.)$When Oracle of Bones enters the battlefield, if tribute wasn't paid, you may cast an instant or sorcery card from your hand without paying its mana cost.|
@@ -1464,7 +1464,7 @@ Pinnacle of Rage|Born of the Gods|105|U|{4}{R}{R}|Sorcery|||Pinnacle of Rage dea
Reckless Reveler|Born of the Gods|106|C|{1}{R}|Creature Satyr|2|1|{R}, Sacrifice Reckless Reveler: Destroy target artifact.|
Rise to the Challenge|Born of the Gods|107|C|{1}{R}|Instant|||Target creature gets +2/+0 and gains first strike until end of turn.|
Satyr Firedancer|Born of the Gods|108|R|{1}{R}|Enchantment Creature Satyr|1|1|Whenever an instant or sorcery spell you control deals damage to an opponent, Satyr Firedancer deals that much damage to target creature that player controls.|
-Satyr Nyx-Smith|Born of the Gods|109|U|{2}{R}|Creature Satyr Shaman|2|1|Haste$Inspired - Whenever Satyr Nyx-Smith becomes untapped, you may pay {2}{R}. If you do, put a 3/1 red Elemental enchantment creature token with haste onto the battlefield.|
+Satyr Nyx-Smith|Born of the Gods|109|U|{2}{R}|Creature Satyr Shaman|2|1|Haste$Inspired — Whenever Satyr Nyx-Smith becomes untapped, you may pay {2}{R}. If you do, put a 3/1 red Elemental enchantment creature token with haste onto the battlefield.|
Scouring Sands|Born of the Gods|110|C|{1}{R}|Sorcery|||Scouring Sands deals 1 damage to each creature your opponents control. Scry 1.|
Searing Blood|Born of the Gods|111|U|{R}{R}|Instant|||Searing Blood deals 2 damage to target creature. When that creature dies this turn, Searing Blood deals 3 damage to that creature's controller.|
Stormcaller of Keranos|Born of the Gods|112|U|{2}{R}|Creature Human Shaman|2|2|Haste${1}{U}: Scry 1.|
@@ -1488,8 +1488,8 @@ Nessian Wilds Ravager|Born of the Gods|129|R|{4}{G}{G}|Creature Hydra|6|6|Trib
Noble Quarry|Born of the Gods|130|U|{2}{G}|Enchantment Creature Unicorn|1|1|Bestow {5}{G}$All creatures able to block Noble Quarry or enchanted creature do so.$Enchanted creature gets +1/+1.|
Nyxborn Wolf|Born of the Gods|131|C|{2}{G}|Enchantment Creature Wolf|3|1|Bestow {4}{G}$Enchanted creature gets +3/+1.|
Peregrination|Born of the Gods|132|U|{3}{G}|Sorcery|||Seach 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. Shuffle your library, then scry 1.|
-Pheres-Band Raiders|Born of the Gods|133|U|{5}{G}|Creature Centaur Warrior|5|5|Inspired - Whenever Pheres-Band Raiders becomes untapped, you may pay {2}{G}. If you do, put a 3/3 green Centaur enchantment creature token onto the battlefield.|
-Pheres-Band Tromper|Born of the Gods|134|C|{3}{G}|Creature Centaur Warrior|3|3|Inspired - Whenever Pheres-Band Tromper becomes untapped, put a +1/+1 counter on it.|
+Pheres-Band Raiders|Born of the Gods|133|U|{5}{G}|Creature Centaur Warrior|5|5|Inspired — Whenever Pheres-Band Raiders becomes untapped, you may pay {2}{G}. If you do, put a 3/3 green Centaur enchantment creature token onto the battlefield.|
+Pheres-Band Tromper|Born of the Gods|134|C|{3}{G}|Creature Centaur Warrior|3|3|Inspired — Whenever Pheres-Band Tromper becomes untapped, put a +1/+1 counter on it.|
Raised by Wolves|Born of the Gods|135|U|{3}{G}{G}|Enchantment Aura|||Enchant creature$When Raised by Wolves enters the battlefield, put two 2/2 green Wolf creature tokens onto the battlefield.$Enchanted creature gets +1/+1 for each Wolf you control.|
Satyr Wayfinder|Born of the Gods|136|C|{1}{G}|Creature Satyr|1|1|When Satyr Wayfinder enters the battlefield, reveal the top four cards of your library. You may put a land card from among them into your hand. Put the rest into your graveyard.|
Scourge of Skola Vale|Born of the Gods|137|R|{2}{G}|Creature Hydra|0|0|Trample$Scourge of Skola Vale enters the battlefield with two +1/+1 counters on it.${T}, Sacrifice another creature: Put a number of +1/+1 counters on Scourge of Skola Vale equal to the sacrificed creature's toughness.|
@@ -1510,7 +1510,7 @@ Mogis, God of Slaughter|Born of the Gods|151|M|{2}{B}{R}|Legendary Enchantment C
Phenax, God of Deception|Born of the Gods|152|M|{3}{U}{B}|Legendary Enchantment Creature God|4|7|Indestructible$As long as your devotion to blue and black is less than seven, Phenax isn't a creature.$Creatures you control have "{T}: Target player puts the top X cards of his or her library into his or her graveyard, where X is this creature's toughness."|
Ragemonger|Born of the Gods|153|U|{1}{B}{R}|Creature Minotaur Shaman|2|3|Minotaur spells you cast cost {B}{R} less to cast. This effect reduces only the amount of colored mana you pay. (For example, if you cast a Minotaur spell with mana cost {2}{R}, it costs {2} to cast.)|
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.|
+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 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}|
@@ -4371,15 +4371,15 @@ Virulent Plague|Dragons of Tarkir|125|U|{2}{B}|Enchantment|||Creature tokens get
Vulturous Aven|Dragons of Tarkir|126|C|{3}{B}|Creature - Bird Shaman|2|3|Flying$Exploit (When this creature enters the battlefield, you may sacrifice a creature.)$When Vulturous Aven explots a creature, you draw two cards and you lose 2 life.|
Wandering Tombshell|Dragons of Tarkir|127|C|{3}{B}|Creature - Zombie Turtle|1|6||
Atarka Efreet|Dragons of Tarkir|128|C|{3}{R}|Creature - Efreet Shaman|5|1|Megamorph {2}{R} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)$When Atarka Efreet is turned face up, it deals 1 damage to any target.|
-Atarka Pummeler|Dragons of Tarkir|129|U|{4}{R}|Creature - Ogre Warrior|4|5|Formidable - {3}{R}{R}: Each creature you control can't be blocked this turn except by two or more creatures. Activate this ability only if creature you control have total power 8 or greater,|
+Atarka Pummeler|Dragons of Tarkir|129|U|{4}{R}|Creature - Ogre Warrior|4|5|Formidable — {3}{R}{R}: Each creature you control can't be blocked this turn except by two or more creatures. Activate this ability only if creature you control have total power 8 or greater,|
Berserkers' Onslaught|Dragons of Tarkir|130|R|{3}{R}{R}|Enchantment|||Attacking creatures you control have double strike.|
Commune with Lava|Dragons of Tarkir|131|R|{X}{R}{R}|Instant|||Exile the top X cards of your library. Until the end of your next turn, you may play those cards.|
-Crater Elemental|Dragons of Tarkir|132|R|{2}{R}|Creature - Elemental|0|6|{R}, {T}, Sacrifice Crater Elemental: Crater Elemental deals 4 damage to target creature.$Formidable - {2}{R}: Crater Elemental has base power 8 until end of turn. Activate this ability only if creatures you control have total power 8 or greater.|
+Crater Elemental|Dragons of Tarkir|132|R|{2}{R}|Creature - Elemental|0|6|{R}, {T}, Sacrifice Crater Elemental: Crater Elemental deals 4 damage to target creature.$Formidable — {2}{R}: Crater Elemental has base power 8 until end of turn. Activate this ability only if creatures you control have total power 8 or greater.|
Descent of the Dragons|Dragons of Tarkir|133|M|{4}{R}{R}|Sorcery||Destroy any number of target creatures. For each creature destroyed this way, its controller puts a 4/4 red Dragon creature token with flying onto the battlefield.|
Draconic Roar|Dragons of Tarkir|134|U|{1}{R}|Instant|||As an additional cost to cast Draconic Roar, you may reveal a Dragon card from your hand.$Draconic Roar deals 3 damage to target creature. If you revealed a Dragon card or controlled a Dragon as you cast Draconic Roar, Draconic Roar deals 3 damage to that creature's controller.|
Dragon Fodder|Dragons of Tarkir|135|C|{1}{R}|Sorcery|||Put two 1/1 red Goblin creature tokens onto the battlefield.|
Dragon Tempest|Dragons of Tarkir|136|R|{1}{R}|Enchantment|||Whenever a creature with flying enters the battlefield under your control, it gains haste until the end of turn.$Whenever a Dragon enters the battlefield under your control, it deals X damage to any target, where X is the number of Dragons you control.|
-Dragon Whisperer|Dragons of Tarkir|137|M|{R}{R}|Creature - Human Shaman|2|2|{R}: Dragon Whisperer gains flying until end of turn.${1}{R}: Dragon Whisperer get +1/+0 until end of turn$ - {4}{R}{R}: Put a 4/4 red Dragon creature token with flying onto the battlefield. Activate this ability only if creatures you control have total power 8 or greater.|
+Dragon Whisperer|Dragons of Tarkir|137|M|{R}{R}|Creature - Human Shaman|2|2|{R}: Dragon Whisperer gains flying until end of turn.${1}{R}: Dragon Whisperer get +1/+0 until end of turn$ — {4}{R}{R}: Put a 4/4 red Dragon creature token with flying onto the battlefield. Activate this ability only if creatures you control have total power 8 or greater.|
Dragonlord's Servant|Dragons of Tarkir|138|U|{1}{R}|Creature - Goblin Shaman|1|3|Dragon spells you cast cost {1} less to cast.|
Hardened Berserker|Dragons of Tarkir|139|C|{2}{R}|Creature - Human Berserker|3|2|Whenever Hardened Berserker attacks the next spell you cast this turn costs {1} less to cast.|
Impact Tremors|Dragons of Tarkir|140|C|{1}{R}|Enchantment|||Whenever a creature enters the battlefield under your control, Impact Tremors deals 1 damage to each opponent.|
@@ -4394,7 +4394,7 @@ Magmatic Chasm|Dragons of Tarkir|148|C|{1}{R}|Sorcery|||Creature without flying
Qal Sisma Behemoth|Dragons of Tarkir|149|U|{2}{R}|Creature - Ogre Warrior|5|5|Qal Sisma Behemoth can't attack or block unless you pay {2}.|
Rending Volley|Dragons of Tarkir|150|U|{R}|Instant|||Rending Volley can't be countered by spells or abilities.$Rending Volley deals 4 damage to target white or blue creature.|
Roast|Dragons of Tarkir|151|U|{1}{R}|Sorcery|||Roast deals 5 damage to target creature without flying.|
-Sabertooth Outrider|Dragons of Tarkir|152|C|{3}{R}|Creature - Human Warrior|4|2|Trample$Formidable - Whenever Sabertooth Outrider attacks, if creatures you control have total power 8 or greater, Sabertooth Outrider gains first strike until end of turn.|
+Sabertooth Outrider|Dragons of Tarkir|152|C|{3}{R}|Creature - Human Warrior|4|2|Trample$Formidable — Whenever Sabertooth Outrider attacks, if creatures you control have total power 8 or greater, Sabertooth Outrider gains first strike until end of turn.|
Sarkhan's Rage|Dragons of Tarkir|153|C|{4}{R}|Instant|||Sarkhan's Rage deals 5 damage to any target. If you control no Dragons, Sarkhan's Rage deals 2 damage to you.|
Sarkhan's Triumph|Dragons of Tarkir|154|U|{2}{R}|Instant|||Search your library for a Dragon creature card, reveal it, put it into your hand, then shuffle your library.|
Screamreach Brawler|Dragons of Tarkir|155|C|{2}{R}|Creature - Orc Berserker|2|3|Dash {1}{R} (You may cast this spell for its dash cost. If you do, it gains haste, and it's returned from the battlefield to its owner's hand at the beginning of the next end step.)|
@@ -4416,25 +4416,25 @@ Aerie Bowmasters|Dragons of Tarkir|170|C|{2}|{G}{G}|Creature - Hound Archer|Reac
Ainok Artillerist|Dragons of Tarkir|171|C|{2}{G}|Creature - Hound Arch|4|1|Ainok Artillerist has reach as long as it has a +1/+1 counter on it. (It can block creatures with flying.)|
Ainok Survivalist|Dragons of Tarkir|172|U|{1}{G}|Creature - Hound Shaman|2|1|Megamorph {1}{G} (You may cast this card face down for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)$When Ainok Survivalist is turned face up, destroy target artifact or enchantment an opponent controls.|
Assault Formation|Dragons of Tarkir|173|R|{1}{G}|Enchantment|||Each creature you control assigns combat damage equal to its toughness rather than its power.${G}: Target creature with defender can attack this turn as though it didn't have defender.${2}{G}: Creatures you control get +0/+1 until end of turn.|
-Atarka Beastbreaker|Dragons of Tarkir|174|C|{1}{G}|Creature - Human Warrior|2|2|Formidable - {4}{G}: Atarka Beastbreaker gets +4/+4 until end of turn. Activate this only if creatures you control have total power 8 or greater.|
+Atarka Beastbreaker|Dragons of Tarkir|174|C|{1}{G}|Creature - Human Warrior|2|2|Formidable — {4}{G}: Atarka Beastbreaker gets +4/+4 until end of turn. Activate this only if creatures you control have total power 8 or greater.|
Avatar of the Resolute|Dragons of Tarkir|175|R|{G}{G}|Creature - Avatar|3|2|Reach, trample$Avatar of the Resolute enters the battlefield with a +1/+1 counter on it for each other creature you control with a +1/+1 counter on it.|
-Circle of Elders|Dragons of Tarkir|176|U|{2}{G}{G}|Creature - Human Shaman|2|4|Vigilance$Formidable - {T}: Add {C}{C}{C}. Activate this only if creatures you control have total power 8 or greater.|
+Circle of Elders|Dragons of Tarkir|176|U|{2}{G}{G}|Creature - Human Shaman|2|4|Vigilance$Formidable — {T}: Add {C}{C}{C}. Activate this only if creatures you control have total power 8 or greater.|
Collected Company|Dragons of Tarkir|177|R|{3}{G}|Instant|||Look at the top six cards of your library. Put up to two creature cards with converted mana cost 3 or less from among them onto the battlefield. Put the rest on the bottom of your library in any order.|
Colossodon Yearling|Dragons of Tarkir|178|C|{2}{G}|Creature - Beast|2|4||
Conifer Strider|Dragons of Tarkir|179|C|{3}{G}|Creature - Elemental|5|1|Hexproof (This creature can't be the target of spells or abilities your opponents control.)|
Deathmist Raptor|Dragons of Tarkir|180|M|{1}{G}{G}|Creature - Lizard Beast|3|3|Deathtouch$Whenever a permanent you control is turned face up, you may return Deathmist Raptor from your graveyard to the battlefield face up or face down.$Megamorph {4}{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.)|
Den Protector|Dragons of Tarkir|181|R|{1}{G}|Creature - Human Warrior|2|1|Creatures with power less than Den Protector's power can't block it.$Megamorph {1}{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.)|
Display of Dominance|Dragons of Tarkir|182|U|{1}{G}|Instant|||Choose one - Destroy target blue or black noncreature permanent; or Permanents you control can't be the targets of blue or black spells your opponents control this turn.|
-Dragon-Scarred Bear|Dragons of Tarkir|183|C|{2}{G}|Creature - Bear|3|2|Formidable - {1}{G}: Regenerate Dragon-Scarred Bear. Activate this only if creatures you control have total power 8 or greater.|
+Dragon-Scarred Bear|Dragons of Tarkir|183|C|{2}{G}|Creature - Bear|3|2|Formidable — {1}{G}: Regenerate Dragon-Scarred Bear. Activate this only if creatures you control have total power 8 or greater.|
Dromoka's Gift|Dragons of Tarkir|184|U|{4}{G}|Instant|||Bolster 4. (Choose a creature with the least toughness among creatures you control and put four +1/+1 counters on it.)|
Epic Confrontation|Dragons of Tarkir|185|C|{1}{G}|Sorcery|||Target creature you control gets +1/+2 until end of turn. It fights target creature you don't control.|
Explosive Vegetation|Dragons of Tarkir|186|U|{3}{G}|Sorcery|||Search your library for up to two basic land cards and put them onto the battlefield tapped. Then shuffle your library.|
Foe-Razer Regent|Dragons of Tarkir|187|R|{5}{G}{G}|Creature - Dragon|4|5|Flying$When Foe-Razer Regent enters the battlefield, you may have it fight target creature you don't control.$Whenever a creature you control fights, put two +1/+1 counters on it at the beginning of the next end step.|
-Glade Watcher|Dragons of Tarkir|188|C|{1}{G}|Creature - Elemental|3|3|Defender$Formidable - {G}: Glade Watcher can attack this turn as though it didn't have defender. Activate this ability only if creatures you control have total power 8 or greater.|
+Glade Watcher|Dragons of Tarkir|188|C|{1}{G}|Creature - Elemental|3|3|Defender$Formidable — {G}: Glade Watcher can attack this turn as though it didn't have defender. Activate this ability only if creatures you control have total power 8 or greater.|
Guardian Shield-Bearer|Dragons of Tarkir|189|C|{1}{G}|Creature - Human Soldier|2|1|Megamorph {3}{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.)$When Guardian Shield-Bearer is turned face up, put a +1/+1 counter on another target creature you control.|
Herdchaser Dragon|Dragons of Tarkir|190|U|{5}{G}|Creature - Dragon|3|3|Flying, trample$Megamorph {5}{G}{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)$When Herdchaser Dragon is turned face up, put a +1/+1 counter on each other Dragon creature you control.|
Inspiring Call|Dragons of Tarkir|191|U|{2}{G}|Instant|||Draw a card for each creature you control with a +1/+1 counter on it. THose creatures gain indestructible until end of turn. (Damage and effects that say "destroy" don't destroy them.)|
-Lurking Arynx|Dragons of Tarkir|192|U|{4}{G}|Creature - Cat Beast|3|5|Formidable - {2}{G}: Target creature blocks Lurking Arynx this turn if able. Activate this ability only if creatures you control have total power 8 or greater.|
+Lurking Arynx|Dragons of Tarkir|192|U|{4}{G}|Creature - Cat Beast|3|5|Formidable — {2}{G}: Target creature blocks Lurking Arynx this turn if able. Activate this ability only if creatures you control have total power 8 or greater.|
Naturalize|Dragons of Tarkir|193|C|{1}{G}|Instant|||Destroy target artifact or enchantment.|
Obscuring AEther|Dragons of Tarkir|194|R|{G}|Enchantment|||Face-down creature spells you cast cost {1} less to cast.${1}{G}: Turn Obscuring AEther face down. (It becomes a 2/2 creature.)|
Pinion Feast|Dragons of Tarkir|195|C|{4}{G}|Instant|||Destroy target creature with flying. Bolster 2. (Choose a creature with the least toughness among creature you control and put two +1/1 counters on it.)|
@@ -4446,13 +4446,13 @@ 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. 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."|
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.|
+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.)|
-Surrak, the Hunt Caller|Dragons of Tarkir|210|R|{2}{G}{G}|Legendary Creature - Human Warrior|5|4|Formidable - At the beginning of combat on your turn, if creatures you control have total power 8 or greater, target creature you control gains haste until end of turn.|
+Surrak, the Hunt Caller|Dragons of Tarkir|210|R|{2}{G}{G}|Legendary Creature - Human Warrior|5|4|Formidable — At the beginning of combat on your turn, if creatures you control have total power 8 or greater, target creature you control gains haste until end of turn.|
Tread Upon|Dragons of Tarkir|211|C|{1}{G}|Instant|||Target creature gets +2/+2 and gains trample until end of turn.|
Arashin Sovereign|Dragons of Tarkir|212|R|{5}{G}{W}|Creature - Dragon|6|6|Flying$When Arashin Sovereign dies, you may put it on the top or bottom of its owner's library.|
Atarka's Command|Dragons of Tarkir|213|R|{R}{G}|Instant|||Choose two - Your opponents can't gain life this turn; or Atarka's Command deals 3 damage to each opponent; or You may put a land card from your hand onto the battlefield; or Creatures you control get +1/+1 and gain reach until the end of turn.|
@@ -13709,7 +13709,7 @@ Skaab Goliath|Magic Origins|74|U|{5}{U}|Creature - Zombie Giant|6|9|As an additi
Soulblade Djinn|Magic Origins|75|R|{3}{U}{U}|Creature - Djinn|4|3|Flying$Whenever you cast a noncreature spell, creatures you control get +1/+1 until end of turn.|
Sphinx's Tutelage|Magic Origins|76|U|{2}{U}|Enchantment|||Whenever you draw a card, target opponent puts the top two cards of his or her library into his or her graveyard. If they're both nonland cards that share a color, repeat this process.${5}{U}: Draw a card, then discard a card.|
Stratus Walk|Magic Origins|77|C|{1}{U}|Enchantment - Aura|||Enchant creature$When Stratus Walk enters the battlefield, draw a card.$Enchanted creature has flying.$Enchanted creature can block only creatures with flying.|
-Talent of the Telepath|Magic Origins|78|R|{2}{U}{U}|Sorcery|||Target opponent reveals the top seven cards of his or her library. You may cast an instant or sorcery card from among them without paying its mana cost. Then that player puts the rest into his or her graveyard. $Spell mastery --- If there are two or more instant and/or sorcery cards in your graveyard, you may cast up to two revealed instant and/or sorcery cards instead of one.|
+Talent of the Telepath|Magic Origins|78|R|{2}{U}{U}|Sorcery|||Target opponent reveals the top seven cards of his or her library. You may cast an instant or sorcery card from among them without paying its mana cost. Then that player puts the rest into his or her graveyard. $Spell mastery —-- If there are two or more instant and/or sorcery cards in your graveyard, you may cast up to two revealed instant and/or sorcery cards instead of one.|
Thopter Spy Network|Magic Origins|79|R|{2}{U}{U}|Enchantment|||At the beginning of your upkeep, if you control an artifact, put a 1/1 colorless Thopter artifact creature token with flying onto the battlefield.$Whenever one or more artifact creatures you control deals combat damage to a player, draw a card.|
Tower Geist|Magic Origins|80|U|{3}{U}|Creature - Spirit|2|2|Flying$When Tower Geist enters the battlefield, look at the top two cards of your library. Put one of them into your hand and the other into your graveyard.|
Turn to Frog|Magic Origins|81|U|{1}{U}|Instant|||Until end of turn, target creature loses all abilities and becomes a blue Frog with base power and toughness 1/1.|
@@ -20058,7 +20058,7 @@ Avatar of the Resolute|Prerelease Events|162|R|{G}{G}|Creature - Avatar|3|2|Reac
Blessed Reincarnation|Prerelease Events|163|R|{3}{U}|Instant|||Exile target creature an opponent controls. That player reveals cards from the top of his or her library until a creature card is revealed. The player puts that card onto the battlefield, then shuffles the rest into his or her library$Rebound (If you cast this spell from your hand, exile it as it resolves. At the beginning of you next upkeep, you may cast this card from exile without paying its mana cost.)|
Blood-Chin Fanatic|Prerelease Events|164|R|{1}{B}{B}|Creature - Orc Warrior|3|3|{1}{B}, Sacrifice another Warrior creature: Target player loses X life and you gain X life, where X is the sacrificed creature's power.|
Boltwing Marauder|Prerelease Events|165|R|{3}{B}{R}|Creature - Dragon|5|4|Flying$Whenever another creature enters the battlefield under your control, target creature gets +2/+0 until end of turn.|
-Crater Elemental|Prerelease Events|166|R|{2}{R}|Creature - Elemental|0|6|{R}, {T}, Sacrifice Crater Elemental: Crater Elemental deals 4 damage to target creature.$Formidable - {2}{R}: Crater Elemental has base power 8 until end of turn. Activate this ability only if creatures you control have total power 8 or greater.|
+Crater Elemental|Prerelease Events|166|R|{2}{R}|Creature - Elemental|0|6|{R}, {T}, Sacrifice Crater Elemental: Crater Elemental deals 4 damage to target creature.$Formidable — {2}{R}: Crater Elemental has base power 8 until end of turn. Activate this ability only if creatures you control have total power 8 or greater.|
Damnable Pact|Prerelease Events|167|R|{X}{B}{B}|Sorcery|||Target player draws X cards and loses X life.|
Deathbringer Regent|Prerelease Events|168|R|{5}{B}{B}|Creature - Dragon|5|6|Flying$When Deathbringer Regent enters the battlefield, if you cast it from your hand and there are five or more other creatures on the battlefield, destroy all other creatures.|
Den Protector|Prerelease Events|169|R|{1}{G}|Creature - Human Warrior|2|1|Creatures with power less than Den Protector's power can't block it.$Megamorph {1}{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.)|
@@ -20086,7 +20086,7 @@ Silumgar Assassin|Prerelease Events|190|R|{1}{B}|Creature - Human Assassin|2|1|C
Silumgar's Command|Prerelease Events|191|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.|
Stratus Dancer|Prerelease Events|192|R|{1}{U}|Creature - Djinn Monk|2|1|Flying$Megamorph {1}{U} You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time from its megamorph cost and put a +1/+1 counter on it.)|
Sunscorch Regent|Prerelease Events|193|R|{3}{W}{W}|Creature - Dragon|4|3|Flying$Whenever an opponent casts a spell, put a +1/+1 counter on Sunscorch Regent and you gain 1 life.|
-Surrak, the Hunt Caller|Prerelease Events|194|R|{2}{G}{G}|Legendary Creature - Human Warrior|5|4|Formidable - At the beginning of combat on your turn, if creatures you control have total power 8 or greater, target creature you control gains haste until end of turn.|
+Surrak, the Hunt Caller|Prerelease Events|194|R|{2}{G}{G}|Legendary Creature - Human Warrior|5|4|Formidable — At the beginning of combat on your turn, if creatures you control have total power 8 or greater, target creature you control gains haste until end of turn.|
Thunderbreak Regent|Prerelease Events|195|R|{2}{R}{R}|Creature - Dragon|4|4|Flying$Whenever a Dragon you control becomes the target of a spell or ability your opponent controls, Thunderbreak Regent deals 3 damage to that player.|
Volcanic Vision|Prerelease Events|196|R|{5}{R}{R}|Sorcery|||Return target instant or sorcery card from your graveyard to your hand. Volcanic Visions deals damage equal to that card's converted mana cost to each creature your opponents control. Exile Volcanic Vision.|
Zurgo Bellstriker|Prerelease Events|197|R|{R}|Legendary Creature - Orc Warrior|2|2|Zurgo Bellstriker can't block creatures with power 2 or greater.$Dash {1}{R} You may cast this creature for its dash cost. If you do, it gains haste, and it's returned to its owner's hand at the beginning of the next end step.)|
@@ -20125,7 +20125,7 @@ Priest of the Blood Rite|Prerelease Events|229|R|{3}{B}{B}|Creature - Human Cler
Relic Seeker|Prerelease Events|230|R|{1}{W}|Creature - Human Soldier|2|2|Renown 1 (When this creature deals combat damage to a player, if it isn't renowned, put a +1/+1 counter on it and it becomes renowned.)$When Relic Seeker becomes renowned, you may search your library for an Equipment card, reveal it, put it into your hand, then shuffle your library.|
Scab-Clan Berserker|Prerelease Events|231|R|{1}{R}{R}|Creature - Human Berserker|2|2|Haste$Renown 1 (When this creature deals combat damage to a player, if it isn't renowned, put a +1/+1 counter on it and it becomes renowned.)$Whenever an opponent casts a noncreature spell, if Scab-Clan Berserker is renowned, Scab-Clan Berserker deals 2 damage to that player.|
Soulblade Djinn|Prerelease Events|232|R|{3}{U}{U}|Creature - Djinn|4|3|Flying$Whenever you cast a noncreature spell, creatures you control get +1/+1 until end of turn.|
-Talent of the Telepath|Prerelease Events|233|R|{2}{U}{U}|Sorcery|||Target opponent reveals the top seven cards of his or her library. You may cast an instant or sorcery card from among them without paying its mana cost. Then that player puts the rest into his or her graveyard. $Spell mastery --- If there are two or more instant and/or sorcery cards in your graveyard, you may cast up to two revealed instant and/or sorcery cards instead of one.|
+Talent of the Telepath|Prerelease Events|233|R|{2}{U}{U}|Sorcery|||Target opponent reveals the top seven cards of his or her library. You may cast an instant or sorcery card from among them without paying its mana cost. Then that player puts the rest into his or her graveyard. $Spell mastery —-- If there are two or more instant and/or sorcery cards in your graveyard, you may cast up to two revealed instant and/or sorcery cards instead of one.|
Thopter Spy Network|Prerelease Events|234|R|{2}{U}{U}|Enchantment|||At the beginning of your upkeep, if you control an artifact, put a 1/1 colorless Thopter artifact creature token with flying onto the battlefield.$Whenever one or more artifact creatures you control deals combat damage to a player, draw a card.|
Tragic Arrogance|Prerelease Events|235|R|{3}{W}{W}|Sorcery|||For each player, you choose from among the permanents that player controls an artifact, a creature, an enchantment, and a planeswalker. Then each player sacrifices all other nonland permanents he or she controls.|
Vryn Wingmare|Prerelease Events|236|R|{2}{W}|Creature - Pegasus|2|1|Flying$Noncreature spells cost {1} more to cast.|
@@ -27496,12 +27496,12 @@ Demon's Grasp|Battle for Zendikar|108|C|{4}{B}|Sorcery|||Target creature gets -5
Dominator Drone|Battle for Zendikar|92|C|{2}{B}|Creature - Eldrazi Drone|3|2|Devoid (This creature has no color.)$Ingest (Whenever this creature deals combat damage to a player, that player exiles the top card of his or her library.)$When Dominator Drone enters the battlefield, if you control another colorless creature, each opponent loses 2 life.|
Drana, Liberator of Malakir|Battle for Zendikar|109|M|{1}{B}{B}|Legendary Creature - Vampire Ally|2|3|Flying, first strike$Whenever Drana, Liberator of Malakir deals combat damage to a player, put a +1/+1 counter on each attacking creature you control.|
Dutiful Return|Battle for Zendikar|110|C|{3}{B}|Sorcery|||Return up to two target creature cards from your graveyard to your hand.|
-Geyserfield Stalker|Battle for Zendikar|111|C|{4}{B}|Creature - Elemental|3|2|Menace$Landfall - Whenever a land enters the battlefield under your control, Geyserfield Stalker gets +2/+2 until end of turn.|
+Geyserfield Stalker|Battle for Zendikar|111|C|{4}{B}|Creature - Elemental|3|2|Menace$Landfall — Whenever a land enters the battlefield under your control, Geyserfield Stalker gets +2/+2 until end of turn.|
Grave Birthing|Battle for Zendikar|93|C|{2}{B}|Instant|||Devoid (This card has no color.)$Target opponent exiles a card from his or her graveyard. You put a 1/1 colorless Eldrazi Scion creature token onto the battlefield. It has "Sacrifice this creature: Add {C}."$Draw a card.|
Grip of Desolation|Battle for Zendikar|94|U|{4}{B}{B}|Intant|||Devoid (This card has no color.)$Exile target creature and target land.|
Guul Draz Overseer|Battle for Zendikar|112|R|{4}{B}{B}|Creature - Vampire|3|4|Flying$Landfall � Whenever a land enters the battlefield under your control, other creatures you control get +1/+0 until end of turn. If that land is a Swamp, those creatures get +2/+0 until end of turn instead.|
Hagra Sharpshooter|Battle for Zendikar|113|U|{2}{B}|Creature - Human Assassin Ally|2|2|{4}{B}: Target creature gets -1/-1 until end of turn.|
-Kalastria Healer|Battle for Zendikar|114|C|{1}{B}|Creature - Vampire Cleric Ally|1|2|Rally - Whenever Kalastria Healer or another Ally enters the battlefield under your control, each opponent loses 1 life and you gain 1 life.|
+Kalastria Healer|Battle for Zendikar|114|C|{1}{B}|Creature - Vampire Cleric Ally|1|2|Rally — Whenever Kalastria Healer or another Ally enters the battlefield under your control, each opponent loses 1 life and you gain 1 life.|
Kalastria Nightwatch|Battle for Zendikar|115|C|{4}{B}|Creature - Vampire Warrior Ally|4|5|Whenever you gain life, Kalastria Nightwatch gains flying until end of turn.|
Malakir Familiar|Battle for Zendikar|116|U|{2}{B}|Creature - Bat|2|1|Flying, deahtouch$Whenever you gain life, Malakir Familiar gets +1/+1 until end of turn.|
Mind Raker|Battle for Zendikar|95|C|{3}{B}|Creature - Eldrazi Processor|3|3|Devoid (This card has no color.)$When Mind Raker enters the battlefield, you may put a card an opponent owns from exile into that player's graveyard. If you do, each opponent discards a card.|
@@ -27550,10 +27550,10 @@ Shatterskull Recruit|Battle for Zendikar|155|C|{3}{R}{R}|Creature - Giant Warrio
Stonefury|Battle for Zendikar|156|C|{3}{R}{R}|Instant|||Stonefury deals damage to target creature equal to the number of lands you control.|
Sure Strike|Battle for Zendikar|157|C|{1}{R}|Instant|||Target creature gets +3/+0 and gains first strike until end of turn.|
Touch of the Void|Battle for Zendikar|134|C|{2}{R}|Sorcery|||Devoid (This card has no color.)$Touch of the Void deals 3 damage to any target. If a creature dealt damage this way would die this turn, exile it instead.|
-Tunneling Geopede|Battle for Zendikar|158|U|{2}{R}|Creature - Insect|3|2|Landfall - Whenever a land enters the battlefield under your control, Tunneling Geopede deals 1 damage to each opponent.|
+Tunneling Geopede|Battle for Zendikar|158|U|{2}{R}|Creature - Insect|3|2|Landfall — Whenever a land enters the battlefield under your control, Tunneling Geopede deals 1 damage to each opponent.|
Turn Against|Battle for Zendikar|135|U|{4}{R}|Instant|||Devoid (This card has no color.)$Gain control of target creature until end of turn. Untap that creature. It gains haste until end of turn.|
Valakut Invoker|Battle for Zendikar|159|C|{2}{R}|Creature - Human Shaman|2|3|{8}: Valakut Invoker deals 3 damage to any target.|
-Valakut Predator|Battle for Zendikar|160|C|{2}{R}|Creature - Elemental|2|2|Landfall - Whenever a land enters the battlefield under your control, Valakut Predator gets +2/+2 until end of turn.|
+Valakut Predator|Battle for Zendikar|160|C|{2}{R}|Creature - Elemental|2|2|Landfall — Whenever a land enters the battlefield under your control, Valakut Predator gets +2/+2 until end of turn.|
Vestige of Emrakul|Battle for Zendikar|136|C|{3}{R}|Creature - Eldrazi Drone|3|4|Devoid (This card has no color.)$Trample|
Vile Aggregate|Battle for Zendikar|137|U|{2}{R}|Creature - Eldrazi Drone|0|5|Devoid (This card has no color.)$Vile Aggregate's power is equal to the number of colorless creatures you control.$Trample$Ingest (Whenever this creature deals combat damage to a player, that player exiles the top card of his or her library.)|
Volcanic Upheaval|Battle for Zendikar|161|C|{3}{R}|Instant|||Destroy target land.|
@@ -27568,10 +27568,10 @@ Eyeless Watcher|Battle for Zendikar|166|C|{3}{G}|Creature - Eldrazi Drone|1|1|De
From Beyond|Battle for Zendikar|167|R|{3}{G}|Enchantment|||Devoid (This card has no color.)$At the beginning of your upkeep, put a 1/1 colorless Eldrazi Scion creature token onto the battlefield. It has "Sacrifice this creature: Add {C}."${1}{G}, Sacrifice From Beyond: Search your library for an Eldrazi card, reveal it, put it into your hand, then shuffle your library.|
Giant Mantis|Battle for Zendikar|173|C|{3}{G}|Creature - Insect|2|4|Reach (This creature can block creatures with flying.)|
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.|
+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.|
-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.|
+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.|
Oran-Rief Hydra|Battle for Zendikar|181|R|{4}{G}{G}|Creature - Hydra|5|5|Trample$Landfall � Whenever a land enters the battlefield under your control, put a +1/+1 counter on Oran-Rief Hydra. If that land is a Forest, put two +1/+1 counters on Oran-Rief Hydra instead.|
@@ -27586,10 +27586,10 @@ Seek the Wilds|Battle for Zendikar|189|C|{1}{G}|Sorcery|||Look at the top four c
Snapping Gnarlid|Battle for Zendikar|190|C|{1}{G}|Creature - Beast|2|2|Landfall � Whenever a land enters the battlefield under your control, Snapping Gnarlid gets +1/+1 until end of turn.|
Swell of Growth|Battle for Zendikar|191|C|{1}{G}|Instant|||Target creature gets +2/+2 until end of turn. You may put a land card from your hand onto the battlefield.|
Sylvan Scrying|Battle for Zendikar|192|U|{1}{G}|Sorcery|||Search your library for a land card, reveal it, and put it into your hand. Then shuffle your library.|
-Tajuru Beastmaster|Battle for Zendikar|193|C|{5}{G}|Creature - Elf Warrior Ally|5|5|Rally - Whenever Tajuru Beastmaster or another Ally creature enters the battlefield under your control, creatures you control get +1/+1 until end of turn.|
-Tajuru Stalwart|Battle for Zendikar|194|C|{2}{G}|Creature - Elf Scout Ally|0|1|Converge - Tajuru Stalwart enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.|
+Tajuru Beastmaster|Battle for Zendikar|193|C|{5}{G}|Creature - Elf Warrior Ally|5|5|Rally — Whenever Tajuru Beastmaster or another Ally creature enters the battlefield under your control, creatures you control get +1/+1 until end of turn.|
+Tajuru Stalwart|Battle for Zendikar|194|C|{2}{G}|Creature - Elf Scout Ally|0|1|Converge — Tajuru Stalwart enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.|
Tajuru Warcaller|Battle for Zendikar|195|U|{3}{G}{G}|Creature - Elf Warrior Ally|2|1|Rally � Whenever Tajuru Warcaller or another Ally enters the battlefield under your control, creatures you control get +2/+2 until end of turn.|
-Territorial Baloth|Battle for Zendikar|196|C|{4}{G}|Creature - Beast|4|4|Landfall - Whenever a land enters the battlefield under your control, Territorial Baloth gets +2/+2 until end of turn.|
+Territorial Baloth|Battle for Zendikar|196|C|{4}{G}|Creature - Beast|4|4|Landfall — Whenever a land enters the battlefield under your control, Territorial Baloth gets +2/+2 until end of turn.|
Undergrowth Champion|Battle for Zendikar|197|M|{1}{G}{G}|Creature - Elemental|2|2|If damage would be dealt to Undergrowth Champion while it has a +1/+1 counter on it, prevent that damage and remove a +1/+1 counter from Undergrowth Champion.$Landfall � Whenever a land enters the battlefield under your control, put a +1/+1 counter on Undergrowth Champion.|
Unnatural Aggression|Battle for Zendikar|168|C|{2}{G}|Instant|||Devoid (This card has no color.)$Target creature you control fights target creature an opponent controls. If the creature an opponent controls would die this turn, exile it instead.|
Void Attendant|Battle for Zendikar|169|U|{2}{G}|Creature - Eldrazi Processor|2|3|Devoid (This card has no color.)${1}{G}, Put a card an opponent owns from exile into that player's graveyard: Put a 1/1 colorless Eldrazi Scion creature token onto the battlefield. It has "Sacrifice this creature: Add {C}."|
@@ -28355,7 +28355,7 @@ Brute Strength|Oath of the Gatewatch|103|C|{1}{R}|Instant|||Target creature gets
Chandra, Flamecaller|Oath of the Gatewatch|104|M|{4}{R}{R}|Legendary Planeswalker - Chandra|||+1: Put two 3/1 red Elemental creature tokens with haste onto the battlefield. Exile them at the beginning of the next end step.$0: Discard all the cards in your hand, then draw that many cards plus one.$-X: Chandra, Flamecaller deals X damage to each creature.|
Cinder Hellion|Oath of the Gatewatch|105|C|{4}{R}|Creature - Hellion|4|4|Trample$When Cinder Hellion enters the battlefield, it deals 2 damage to target opponent.|
Devour in Flames|Oath of the Gatewatch|106|U|{2}{R}|Sorcery|||As an additional cost to cast Devour in Flames, return a land you control to its owner's hand.$Devour in Flames deals 5 damage to target creature or planeswalker.|
-Embodiment of Fury|Oath of the Gatewatch|107|U|{3}{R}|Creature - Elemental|4|3|Trample$Land creatures you control have trample.$Landfall - Whenever a land enters the battlefield under your control, you may have target land you control become a 3/3 Elemental creature with haste until end of turn. It's still a land.|
+Embodiment of Fury|Oath of the Gatewatch|107|U|{3}{R}|Creature - Elemental|4|3|Trample$Land creatures you control have trample.$Landfall — Whenever a land enters the battlefield under your control, you may have target land you control become a 3/3 Elemental creature with haste until end of turn. It's still a land.|
Expedite|Oath of the Gatewatch|108|C|{R}|Instant|||Target creature gains haste until end of turn.$Draw a card.|
Fall of the Titans|Oath of the Gatewatch|109|R|{X}{X}{R}|Instant|||Surge {X}{R} (You may cast this spell for its surge cost if you or a teammate has cast another spell this turn.)$Fall of the Titans deals X damage to each of up to two target creatures and/or players.|
Goblin Dark-Dwellers|Oath of the Gatewatch|110|R|{3}{R}{R}|Creature - Goblin|4|4|Menace$When Goblin Dark-Dwellers enters the battlefield, you may cast target instant or sorcery card with converted mana cost 3 or less from your graveyard without paying its mana cost. If that card would be put into your graveyard this turn, exile it instead.|
@@ -28379,7 +28379,7 @@ Baloth Pup|Oath of the Gatewatch|127|U|{1}{G}|Creature - Beast|3|1|Baloth Pup ha
Bonds of Mortality|Oath of the Gatewatch|128|U|{1}{G}|Enchantment|||When Bonds of Mortality enters the battlefield, draw a card.${G}: Creatures your opponents control lose hexproof and indestructible until end of turn.|
Canopy Gorger|Oath of the Gatewatch|129|C|{4}{G}{G}|Creature - Wurm|6|5||
Elemental Uprising|Oath of the Gatewatch|130|C|{1}{G}|Instant|||Target land you control becomes a 4/4 Elemental creature with haste until end of turn. It's still a land. It must be blocked this turn if able.|
-Embodiment of Insight|Oath of the Gatewatch|131|U|{4}{G}|Creature - Elemental|4|4|Vigilance$Land creatures you control have vigilance.$Landfall - Whenever a land enters the battlefield under you control, you may have target land you control become a 3/3 Elemental creature with haste until end of turn. It's still a land.|
+Embodiment of Insight|Oath of the Gatewatch|131|U|{4}{G}|Creature - Elemental|4|4|Vigilance$Land creatures you control have vigilance.$Landfall — Whenever a land enters the battlefield under you control, you may have target land you control become a 3/3 Elemental creature with haste until end of turn. It's still a land.|
Gladehart Cavalry|Oath of the Gatewatch|132|R|{5}{G}{G}|Creature - Elf Knight|6|6|When Gladehart Cavalry enters the battlefield, support 6. (Put a +1/+1 counter on each of up to six other target creatures.)$Whenever a creature you control with a +1/+1 counter on it dies, you gain 2 life.|
Harvester Troll|Oath of the Gatewatch|133|U|{3}{G}|Creature - Troll|2|3|When Harvester Troll enters the battlefield, you may sacrifice a creature or land. If you do, put two +1/+1 counters on Harvester Troll.|
Lead by Example|Oath of the Gatewatch|134|C|{1}{G}|Instant|||Support 2. (Put a +1/+1 counter on each of up to two target creatures.)|
@@ -28614,7 +28614,7 @@ Thunderbreak Regent|Game Day|44|R|{2}{R}{R}|Creature - Dragon|4|4|Flying$Wheneve
Conclave Naturalists|Game Day|45|U|{4}{G}|Creature - Dryad|4|4|When Conclave Naturalists enters the battlefield, you may destroy target artifact or enchantment.|
Languish|Game Day|46|R|{2}{B}{B}|Sorcery|||All creatures get -4/-4 until end of turn.|
Stasis Snare|Game Day|47|U|{1}{W}{W}|Enchantment|||Flash$When Stasis Snare enters the battlefield, exile target creature an opponent controls until Stasis Snare leaves the battlefield.|
-Radiant Flames|Game Day|48|R|{2}{R}|Sorcery||Converge - Radiant Flames deals X damage to each creature, where X is the number of colors of mana spent to cast Radiant Flames.|
+Radiant Flames|Game Day|48|R|{2}{R}|Sorcery||Converge — Radiant Flames deals X damage to each creature, where X is the number of colors of mana spent to cast Radiant Flames.|
Immolating Glare|Game Day|49|U|{1}{W}|Instant|||Destroy target attacking creature.|
Jori En, Ruin Diver|Game Day|50|R|{1}{U}{R}|Legendary Creature - Merfolk Wizard|2|3|Whenever you cast your second spell each turn, draw a card.|
Incorrigible Youths|Game Day|51|U|{3}{R}{R}|Creature - Vampire|4|3|Haste$Madness {2}{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.)|
@@ -28800,7 +28800,7 @@ Liliana Vess|Media Inserts|101|Special|{3}{B}{B}|Legendary Planeswalker - Lilian
Chandra, Pyromaster|Media Inserts|102|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.|
Nissa, Worldwaker|Media Inserts|103|Special|{3}{G}{G}|Legendary Planeswalker - Nissa||3|+1: Target land you control becomes a 4/4 Elemental creature with trample. It's still a land.$+1: Untap up to four target Forests.$-7: Search your library for any number of basic land cards, put them onto the battlefield, then shuffle your library. Those lands become 4/4 Elemental creatures with trample. They're still lands.|
Garruk, Apex Predator|Media Inserts|104|Special|{5}{B}{G}|Legendary Planeswalker - Garruk||5|+1: Destroy another target planeswalker.$+1: Put a 3/3 black Beast creature token with deathtouch onto the battlefield.$-3: Destroy target creature. You gain life equal to its toughness.$-8: Target opponent gets an emblem with "Whenever a creature attacks you, it gets +5/+5 and gains trample until end of turn."|
-Shamanic Revelation|Media Inserts|105|Special|{2}{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.|
+Shamanic Revelation|Media Inserts|105|Special|{2}{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.|
Ojutai's Command|Media Inserts|106|Special|{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.|
Dragonscale General|Media Inserts|107|Special|{3}{W}|Creature - Human Warrior|2|3|At the beginning of your end step, bolster X, where X is the number of tapped creatures you control. (Choose a creature with the least toughness among creatures you control and put X +1/+1 counters on it.)|
Sage-Eye Avengers|Media Inserts|108|Special|{4}{U}{U}|Creature - Djinn Monk|4|5|Prowess (Whenever you cast a noncreature spell, this creature gets +1/+1 until end of turn.)$Whenever Sage-Eye Avengers attacks, you may return target creature to its owner's hand if its power is less than Sage-Eye Avengers's power.|
@@ -31735,7 +31735,7 @@ Nazahn, Revered Bladesmith|Commander 2017|44|M|{4}{G}{W}|Legendary Creature - Ca
O-Kagachi, Vengeful Kami|Commander 2017|45|M|{1}{W}{U}{B}{R}{G}|Legendary Creature - Dragon Spirit|6|6|Flying, Trample$Whenever O-Kagachi, Vengeful Kami deals combat damage to a player, if that player attacked you during his or her last turn, exile target nonland permanent that player controls|
Taigam, Ojutai Master|Commander 2017|46|R|{2}{W}{U}|Legendary Creature - Human Monk|3|4|Instant, sorcery, and Dragon spells you control can't be countered by spells or abilities.$Whenever you cast an instant or sorcery spell from your hand, if Taigam, Ojutai Master attacked this turn, that spell gains rebound. (Exile the spell as it resolves. At the beginning of your next upkeep, you may cast that card from exile without paying its mana cost.)|
Taigam, Sidisi's Hand|Commander 2017|47|R|{3}{U}{B}|Legendary Creature - Human Wizard|3|4|Skip your draw step.$At the beginning of your upkeep, look at the top three cards of your library. Put one of them into your hand and the rest into your graveyard.$B, T, Exile X cards from your graveyard: Target creature gets -X/-X until end of turn.|
-The Ur-Dragon|Commander 2017|48|M|{4}{W}{U}{B}{R}{G}|Legendary Creature - Dragon Avatar|10|10|Eminence - As long as The Ur-Dragon is in the command zone or on the battlefield, other Dragon spells you cast cost {1} less to cast.$Flying$Whenever one or more Dragons you control attack, draw that many cards, then you may put a permanent card from your hand onto the battlefield|
+The Ur-Dragon|Commander 2017|48|M|{4}{W}{U}{B}{R}{G}|Legendary Creature - Dragon Avatar|10|10|Eminence — As long as The Ur-Dragon is in the command zone or on the battlefield, other Dragon spells you cast cost {1} less to cast.$Flying$Whenever one or more Dragons you control attack, draw that many cards, then you may put a permanent card from your hand onto the battlefield|
Wasitora, Nekoru Queen|Commander 2017|49|M|{2}{B}{R}{G}|Legendary Creature - Cat Dragon|5|4|Flying, trample$Whenever Wasitora, Nekoru Queen deals combat damage to a player, that player sacrifices a creature. If the player can't, you create a 3/3 black, red, and green Cat Dragon creature token with flying|
Bloodforged War Axe|Commander 2017|50|R|{1}|Artifact - Equipment|||Equipped creature gets +2/+0.$Whenever equipped creature deals combat damage to a player, create a token that's a copy of Bloodforged War Axe.$Equip 2|
Hammer of Nazahn|Commander 2017|51|R|{4}|Legendary Artifact - Equipment|||Whenever Hammer of Nazahn or another Equipment enters the battlefield under your control, you may attach that Equipment to target creature you control.$Equipped creature gets +2/+0 and has indestructible.$Equip 4|