diff --git a/Mage.Sets/src/mage/cards/p/PredatorsHour.java b/Mage.Sets/src/mage/cards/p/PredatorsHour.java index e17993a265..2d1e4785a1 100644 --- a/Mage.Sets/src/mage/cards/p/PredatorsHour.java +++ b/Mage.Sets/src/mage/cards/p/PredatorsHour.java @@ -35,7 +35,7 @@ public final class PredatorsHour extends CardImpl { new MenaceAbility(false), Duration.EndOfTurn, StaticFilters.FILTER_CONTROLLED_CREATURES - ).setText("Until end of turn, creature you control gain menace ") + ).setText("Until end of turn, creatures you control gain menace") ); // and “Whenever this creature deals combat damage to a player, diff --git a/Mage.Sets/src/mage/cards/s/StormOfSouls.java b/Mage.Sets/src/mage/cards/s/StormOfSouls.java index c35281f0ce..a33a47df30 100644 --- a/Mage.Sets/src/mage/cards/s/StormOfSouls.java +++ b/Mage.Sets/src/mage/cards/s/StormOfSouls.java @@ -31,7 +31,7 @@ public class StormOfSouls extends CardImpl { this.getSpellAbility().addEffect(new StormOfSoulsReturnEffect()); // Exile Storm of Souls. - this.getSpellAbility().addEffect(new ExileSpellEffect().concatBy("
")); + this.getSpellAbility().addEffect(new ExileSpellEffect()); } private StormOfSouls(final StormOfSouls card) { super(card); } @@ -43,7 +43,7 @@ public class StormOfSouls extends CardImpl { class StormOfSoulsReturnEffect extends OneShotEffect { public StormOfSoulsReturnEffect() { super(Outcome.Benefit); - staticText = "Return all creature cards from your graveyard to the battlefield." + + staticText = "Return all creature cards from your graveyard to the battlefield. " + "Each of them is a 1/1 Spirit with flying in addition to its other types."; } diff --git a/Mage.Sets/src/mage/cards/t/TimotharBaronOfBats.java b/Mage.Sets/src/mage/cards/t/TimotharBaronOfBats.java index 9565118321..5641da434d 100644 --- a/Mage.Sets/src/mage/cards/t/TimotharBaronOfBats.java +++ b/Mage.Sets/src/mage/cards/t/TimotharBaronOfBats.java @@ -85,7 +85,7 @@ class TimotharBaronOfBatsCreateBatEffect extends OneShotEffect { staticText = "you may pay {1} and exile it. " + "If you do, create a 1/1 black Bat creature token with flying. " + "It gains \"When this creature deals combat damage to a player, " + - "sacrifice it and return the exiled card to the battlefield tapped\"."; + "sacrifice it and return the exiled card to the battlefield tapped.\""; } private TimotharBaronOfBatsCreateBatEffect(final TimotharBaronOfBatsCreateBatEffect effect) { super(effect); }