diff --git a/Mage.Sets/src/mage/cards/d/DeepGoblinSkulltaker.java b/Mage.Sets/src/mage/cards/d/DeepGoblinSkulltaker.java index b136cd0247b..85d8aa7bbf9 100644 --- a/Mage.Sets/src/mage/cards/d/DeepGoblinSkulltaker.java +++ b/Mage.Sets/src/mage/cards/d/DeepGoblinSkulltaker.java @@ -30,7 +30,7 @@ public final class DeepGoblinSkulltaker extends CardImpl { this.toughness = new MageInt(2); // Menace - this.addAbility(new MenaceAbility()); + this.addAbility(new MenaceAbility(false)); // At the beginning of your end step, if you descended this turn, put a +1/+1 counter on Deep Goblin Skulltaker. this.addAbility(new BeginningOfEndStepTriggeredAbility( diff --git a/Mage.Sets/src/mage/cards/d/DireBlunderbuss.java b/Mage.Sets/src/mage/cards/d/DireBlunderbuss.java index 77e26631179..e78d4d2576f 100644 --- a/Mage.Sets/src/mage/cards/d/DireBlunderbuss.java +++ b/Mage.Sets/src/mage/cards/d/DireBlunderbuss.java @@ -44,7 +44,7 @@ public final class DireBlunderbuss extends CardImpl { this.addAbility(ability); // Equip {1} - this.addAbility(new EquipAbility(1)); + this.addAbility(new EquipAbility(1, false)); } private DireBlunderbuss(final DireBlunderbuss card) { diff --git a/Mage.Sets/src/mage/cards/d/DireFlail.java b/Mage.Sets/src/mage/cards/d/DireFlail.java index b85e4cfb4fe..2224c630043 100644 --- a/Mage.Sets/src/mage/cards/d/DireFlail.java +++ b/Mage.Sets/src/mage/cards/d/DireFlail.java @@ -26,7 +26,7 @@ public final class DireFlail extends CardImpl { this.addAbility(new SimpleStaticAbility(new BoostEquippedEffect(2, 0))); // Equip {1} - this.addAbility(new EquipAbility(1)); + this.addAbility(new EquipAbility(1, false)); // Craft with artifact {3}{R}{R} this.addAbility(new CraftAbility("{3}{R}{R}")); diff --git a/Mage.Sets/src/mage/cards/d/DreadOsseosaur.java b/Mage.Sets/src/mage/cards/d/DreadOsseosaur.java index 0eba99659dd..aea68c4293c 100644 --- a/Mage.Sets/src/mage/cards/d/DreadOsseosaur.java +++ b/Mage.Sets/src/mage/cards/d/DreadOsseosaur.java @@ -28,7 +28,7 @@ public final class DreadOsseosaur extends CardImpl { this.color.setBlack(true); // Menace - this.addAbility(new MenaceAbility()); + this.addAbility(new MenaceAbility(false)); // Whenever Dread Osseosaur enters the battlefield or attacks, you may mill two cards. this.addAbility(new EntersBattlefieldOrAttacksSourceTriggeredAbility( diff --git a/Mage.Sets/src/mage/cards/k/KitesailLarcenist.java b/Mage.Sets/src/mage/cards/k/KitesailLarcenist.java index 194f1beb714..7bead01f38a 100644 --- a/Mage.Sets/src/mage/cards/k/KitesailLarcenist.java +++ b/Mage.Sets/src/mage/cards/k/KitesailLarcenist.java @@ -41,7 +41,7 @@ public final class KitesailLarcenist extends CardImpl { this.addAbility(FlyingAbility.getInstance()); // Ward {1} - this.addAbility(new WardAbility(new ManaCostsImpl<>("{1}"))); + this.addAbility(new WardAbility(new ManaCostsImpl<>("{1}"), false)); // When Kitesail Larcenist enters the battlefield, for each player, choose up to one other target artifact or creature that player controls. For as long as Kitesail Larcenist remains on the battlefield, the chosen permanents become Treasure artifacts with "{T}, Sacrifice this artifact: Add one mana of any color" and lose all other abilities. Ability ability = new EntersBattlefieldTriggeredAbility(new BecomesCreatureTargetEffect( diff --git a/Mage.Sets/src/mage/cards/z/ZodiacDragon.java b/Mage.Sets/src/mage/cards/z/ZodiacDragon.java index e3fb82a4dcf..456eea10b6b 100644 --- a/Mage.Sets/src/mage/cards/z/ZodiacDragon.java +++ b/Mage.Sets/src/mage/cards/z/ZodiacDragon.java @@ -22,7 +22,8 @@ public final class ZodiacDragon extends CardImpl { this.toughness = new MageInt(8); // When Zodiac Dragon is put into your graveyard from the battlefield, you may return it to your hand. - this.addAbility(new PutIntoGraveFromBattlefieldSourceTriggeredAbility(new ReturnToHandSourceEffect(), true, true)); + this.addAbility(new PutIntoGraveFromBattlefieldSourceTriggeredAbility(new ReturnToHandSourceEffect() + .setText("return it to your hand"), true, true)); } private ZodiacDragon(final ZodiacDragon card) { diff --git a/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java b/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java index c3bc1099caa..921920d0437 100644 --- a/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java +++ b/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java @@ -2028,7 +2028,7 @@ public class VerifyCardDataTest { Map hints = new HashMap<>(); hints.put(FightTargetsEffect.class, "Each deals damage equal to its power to the other"); hints.put(MenaceAbility.class, "can't be blocked except by two or more"); - hints.put(ScryEffect.class, "Look at the top card of your library. You may put that card on the bottom of your library"); + hints.put(ScryEffect.class, "Look at the top card of your library. You may put that card on the bottom"); hints.put(EquipAbility.class, "Equip only as a sorcery."); hints.put(WardAbility.class, "becomes the target of a spell or ability an opponent controls"); hints.put(ProliferateEffect.class, "Choose any number of permanents and/or players, then give each another counter of each kind already there."); diff --git a/Mage/src/main/java/mage/abilities/effects/keyword/ScryEffect.java b/Mage/src/main/java/mage/abilities/effects/keyword/ScryEffect.java index 07e69d1bbbd..d4bdf682bae 100644 --- a/Mage/src/main/java/mage/abilities/effects/keyword/ScryEffect.java +++ b/Mage/src/main/java/mage/abilities/effects/keyword/ScryEffect.java @@ -53,11 +53,11 @@ public class ScryEffect extends OneShotEffect { return; } if (scryNumber == 1) { - sb.append(". (Look at the top card of your library. You may put that card on the bottom of your library.)"); + sb.append(". (Look at the top card of your library. You may put that card on the bottom.)"); } else { sb.append(". (Look at the top "); sb.append(CardUtil.numberToText(scryNumber)); - sb.append(" cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)"); + sb.append(" cards of your library, then put any number of them on the bottom and the rest on top in any order.)"); } staticText = sb.toString(); }