diff --git a/Mage.Sets/src/mage/cards/c/CarthTheLion.java b/Mage.Sets/src/mage/cards/c/CarthTheLion.java index a5b751eeefb..2b38f6e2e67 100644 --- a/Mage.Sets/src/mage/cards/c/CarthTheLion.java +++ b/Mage.Sets/src/mage/cards/c/CarthTheLion.java @@ -94,7 +94,7 @@ class CarthTheLionTriggeredAbility extends TriggeredAbilityImpl { @Override public String getRule() { - return "Whenever {this} enters the battlefield, or a planeswalker you control dies, " + super.getRule(); + return "Whenever {this} enters the battlefield or a planeswalker you control dies, " + super.getRule(); } } @@ -102,7 +102,7 @@ class CarthTheLionLoyaltyCostEffect extends CostModificationEffectImpl { public CarthTheLionLoyaltyCostEffect() { super(Duration.WhileOnBattlefield, Outcome.Benefit, CostModificationType.INCREASE_COST); - this.staticText = "Planeswalkers' loyalty abilities you activate cost an additonal +1 to activate"; + this.staticText = "Planeswalkers' loyalty abilities you activate cost an additional +1 to activate"; } private CarthTheLionLoyaltyCostEffect(final CarthTheLionLoyaltyCostEffect effect) { diff --git a/Mage.Sets/src/mage/cards/g/GristTheHungerTide.java b/Mage.Sets/src/mage/cards/g/GristTheHungerTide.java index f27f3dd5d4b..09d295d8690 100644 --- a/Mage.Sets/src/mage/cards/g/GristTheHungerTide.java +++ b/Mage.Sets/src/mage/cards/g/GristTheHungerTide.java @@ -53,12 +53,19 @@ public final class GristTheHungerTide extends CardImpl { this.addAbility(new LoyaltyAbility(new GristTheHungerTideTokenEffect(), 1)); // −2: You may sacrifice a creature. When you do, destroy target creature or planeswalker. - ReflexiveTriggeredAbility ability = new ReflexiveTriggeredAbility(new DestroyTargetEffect(), false, "destroy target creature or planeswalker"); + ReflexiveTriggeredAbility ability = new ReflexiveTriggeredAbility( + new DestroyTargetEffect(), false, "destroy target creature or planeswalker" + ); ability.addTarget(new TargetCreatureOrPlaneswalker()); - this.addAbility(new LoyaltyAbility(new DoWhenCostPaid(ability, new SacrificeTargetCost(new TargetControlledPermanent(StaticFilters.FILTER_CONTROLLED_CREATURE_SHORT_TEXT)), "Sacrifice a creature?"), -2)); + this.addAbility(new LoyaltyAbility(new DoWhenCostPaid( + ability, + new SacrificeTargetCost(new TargetControlledPermanent( + StaticFilters.FILTER_CONTROLLED_CREATURE_SHORT_TEXT + )), "Sacrifice a creature?" + ), -2)); // −5: Each opponent loses life equal to the number of creature cards in your graveyard. - this.addAbility(new LoyaltyAbility(new LoseLifeOpponentsEffect(xValue), -5)); + this.addAbility(new LoyaltyAbility(new LoseLifeOpponentsEffect(xValue).setText("each opponent loses life equal to the number of creature cards in your graveyard"), -5)); } private GristTheHungerTide(final GristTheHungerTide card) {