From 720c9849cbde26adb112ba275658f9da9c96fff8 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Sun, 30 Jun 2019 22:32:50 +0400 Subject: [PATCH] [M20] fixed wrong texts --- Mage.Sets/src/mage/cards/s/SavageGorger.java | 2 +- Mage.Sets/src/mage/cards/s/ScorchSpitter.java | 2 +- Mage.Sets/src/mage/cards/t/ThunderkinAwakener.java | 4 ++-- Mage.Sets/src/mage/cards/t/TomeboundLich.java | 2 +- Mage.Sets/src/mage/cards/v/VeilOfSummer.java | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Mage.Sets/src/mage/cards/s/SavageGorger.java b/Mage.Sets/src/mage/cards/s/SavageGorger.java index dd7944968a..68a2e25950 100644 --- a/Mage.Sets/src/mage/cards/s/SavageGorger.java +++ b/Mage.Sets/src/mage/cards/s/SavageGorger.java @@ -38,7 +38,7 @@ public final class SavageGorger extends CardImpl { new BeginningOfEndStepTriggeredAbility(new AddCountersSourceEffect( CounterType.P1P1.createInstance()), TargetController.YOU, false ), SavageGorgerCondition.instance, "At the beginning of your end step, " + - "if an opponent lost life this turn, put a +1/+1 counter on {this}" + "if an opponent lost life this turn, put a +1/+1 counter on {this}." )); } diff --git a/Mage.Sets/src/mage/cards/s/ScorchSpitter.java b/Mage.Sets/src/mage/cards/s/ScorchSpitter.java index 56ecccb672..c3c797da1f 100644 --- a/Mage.Sets/src/mage/cards/s/ScorchSpitter.java +++ b/Mage.Sets/src/mage/cards/s/ScorchSpitter.java @@ -76,6 +76,6 @@ class ScorchSpitterTriggeredAbility extends TriggeredAbilityImpl { @Override public String getRule() { - return "Whenever {this} attacks, it deals 1 damage to the player or planeswalker it’s attacking"; + return "Whenever {this} attacks, it deals 1 damage to the player or planeswalker it's attacking."; } } diff --git a/Mage.Sets/src/mage/cards/t/ThunderkinAwakener.java b/Mage.Sets/src/mage/cards/t/ThunderkinAwakener.java index 8530e61cbf..95b756db61 100644 --- a/Mage.Sets/src/mage/cards/t/ThunderkinAwakener.java +++ b/Mage.Sets/src/mage/cards/t/ThunderkinAwakener.java @@ -54,7 +54,7 @@ public final class ThunderkinAwakener extends CardImpl { this.addAbility(HasteAbility.getInstance()); // Whenever Thunderkin Awakener attacks, choose target Elemental creature card in your graveyard - // with toughness less than Thunderkin Awakener’s toughness. Return that card to the battlefield tapped and attacking. + // with toughness less than Thunderkin Awakener's toughness. Return that card to the battlefield tapped and attacking. // Sacrifice it at the beginning of the next end step. Ability ability = new AttacksTriggeredAbility(new ThunderkinAwakenerEffect(), false); ability.addTarget(new TargetCardInYourGraveyard(filter)); @@ -86,7 +86,7 @@ class ThunderkinAwakenerEffect extends OneShotEffect { ThunderkinAwakenerEffect() { super(Outcome.Benefit); - staticText = "choose target Elemental creature card in your graveyard with toughness less than {this}’s toughness." + staticText = "choose target Elemental creature card in your graveyard with toughness less than {this}'s toughness." + " Return that card to the battlefield tapped and attacking. Sacrifice it at the beginning of the next end step"; } diff --git a/Mage.Sets/src/mage/cards/t/TomeboundLich.java b/Mage.Sets/src/mage/cards/t/TomeboundLich.java index 1a379a035d..fb5eced39b 100644 --- a/Mage.Sets/src/mage/cards/t/TomeboundLich.java +++ b/Mage.Sets/src/mage/cards/t/TomeboundLich.java @@ -84,7 +84,7 @@ class TomeboundLichTriggeredAbility extends TriggeredAbilityImpl { @Override public String getRule() { return "Whenever {this} enters the battlefield or deals combat damage " + - "to a player, draw a card, then discard a card"; + "to a player, draw a card, then discard a card."; } } diff --git a/Mage.Sets/src/mage/cards/v/VeilOfSummer.java b/Mage.Sets/src/mage/cards/v/VeilOfSummer.java index 8dfec6a28e..b6516e96a7 100644 --- a/Mage.Sets/src/mage/cards/v/VeilOfSummer.java +++ b/Mage.Sets/src/mage/cards/v/VeilOfSummer.java @@ -38,11 +38,11 @@ public final class VeilOfSummer extends CardImpl { this.getSpellAbility().addEffect(new ConditionalOneShotEffect( new DrawCardSourceControllerEffect(1), VeilOfSummerCondition.instance, "Draw a card " + - "if an opponent has cast a blue or black spell this turn." + "if an opponent has cast a blue or black spell this turn" )); this.getSpellAbility().addEffect(new CantBeCounteredControlledEffect( StaticFilters.FILTER_SPELL, Duration.EndOfTurn - ).setText("Spells you control can't be countered this turn.")); + ).setText("Spells you control can't be countered this turn")); this.getSpellAbility().addEffect(new VeilOfSummerEffect()); this.getSpellAbility().addWatcher(new VeilOfSummerWatcher()); }