diff --git a/Mage.Sets/src/mage/cards/a/AyaraWidowOfTheRealm.java b/Mage.Sets/src/mage/cards/a/AyaraWidowOfTheRealm.java index 4dd28227ee..ce04c86e88 100644 --- a/Mage.Sets/src/mage/cards/a/AyaraWidowOfTheRealm.java +++ b/Mage.Sets/src/mage/cards/a/AyaraWidowOfTheRealm.java @@ -47,9 +47,9 @@ public final class AyaraWidowOfTheRealm extends CardImpl { // {T}, Sacrifice another creature or artifact: Ayara, Widow of the Realm deals X damage to target opponent or battle and you gain X life, where X is the sacrificed permanent's mana value. Ability ability = new SimpleActivatedAbility(new DamageTargetEffect(xValue) - .setText("deals X damage to target opponent or battle"), new TapSourceCost()); + .setText("{this} deals X damage to target opponent or battle"), new TapSourceCost()); ability.addCost(new SacrificeTargetCost(StaticFilters.FILTER_CONTROLLED_ANOTHER_ARTIFACT_OR_CREATURE_SHORT_TEXT)); - ability.addEffect(new GainLifeEffect(xValue).concatBy("and")); + ability.addEffect(new GainLifeEffect(xValue).setText("and you gain X life, where X is the sacrificed permanent's mana value")); ability.addTarget(new TargetPermanentOrPlayer(filter)); this.addAbility(ability); diff --git a/Mage.Sets/src/mage/cards/c/CompleteTheCircuit.java b/Mage.Sets/src/mage/cards/c/CompleteTheCircuit.java index b80d52cd69..9d7ec3b373 100644 --- a/Mage.Sets/src/mage/cards/c/CompleteTheCircuit.java +++ b/Mage.Sets/src/mage/cards/c/CompleteTheCircuit.java @@ -45,7 +45,7 @@ public final class CompleteTheCircuit extends CardImpl { new CompleteTheCircuitEffect(), "When you next cast an instant or sorcery spell " + "this turn, copy that spell twice. You may choose new targets for the copies." ) - )); + ).concatBy("<br>")); } private CompleteTheCircuit(final CompleteTheCircuit card) { diff --git a/Mage.Sets/src/mage/cards/g/GhaltaAndMavren.java b/Mage.Sets/src/mage/cards/g/GhaltaAndMavren.java index f3cfd39169..7461738c84 100644 --- a/Mage.Sets/src/mage/cards/g/GhaltaAndMavren.java +++ b/Mage.Sets/src/mage/cards/g/GhaltaAndMavren.java @@ -36,7 +36,7 @@ public final class GhaltaAndMavren extends CardImpl { filter.add(AnotherPredicate.instance); } - private static final DynamicValue xValue = new PermanentsOnBattlefieldCount(filter); + private static final DynamicValue xValue = new PermanentsOnBattlefieldCount(filter, null); public GhaltaAndMavren(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{G}{G}{W}{W}"); diff --git a/Mage.Sets/src/mage/cards/i/IngaAndEsika.java b/Mage.Sets/src/mage/cards/i/IngaAndEsika.java index 57d348e4f0..fd9db268f5 100644 --- a/Mage.Sets/src/mage/cards/i/IngaAndEsika.java +++ b/Mage.Sets/src/mage/cards/i/IngaAndEsika.java @@ -33,7 +33,7 @@ import java.util.UUID; public final class IngaAndEsika extends CardImpl { private static final FilterSpell filter - = new FilterCreatureSpell("creature spell, if three or more mana from creatures was spent to cast it"); + = new FilterCreatureSpell("a creature spell, if three or more mana from creatures was spent to cast it"); static { filter.add(IngaAndEsikaPredicate.instance); diff --git a/Mage.Sets/src/mage/cards/t/TeferiAkosaOfZhalfir.java b/Mage.Sets/src/mage/cards/t/TeferiAkosaOfZhalfir.java index 173057a5e4..8cb1504f93 100644 --- a/Mage.Sets/src/mage/cards/t/TeferiAkosaOfZhalfir.java +++ b/Mage.Sets/src/mage/cards/t/TeferiAkosaOfZhalfir.java @@ -47,7 +47,8 @@ public final class TeferiAkosaOfZhalfir extends CardImpl { null, new DiscardControllerEffect(2), new DiscardTargetCost(new TargetCardInHand(StaticFilters.FILTER_CARD_CREATURE_A)) .setText("discard a creature card instead of discarding two cards") - ).setText("Then discard two cards unless you discard an artifact card")); + ).setText("Then discard two cards unless you discard a creature card")); + this.addAbility(ability); // -2: You get an emblem with "Knights you control get +1/+0 and have ward {1}." this.addAbility(new LoyaltyAbility(new GetEmblemEffect(new TeferiAkosaOfZhalfirEmblem()), -2));