diff --git a/Mage.Sets/src/mage/cards/g/GiftOfWrath.java b/Mage.Sets/src/mage/cards/g/GiftOfWrath.java index 707e7f2650..2576d3f871 100644 --- a/Mage.Sets/src/mage/cards/g/GiftOfWrath.java +++ b/Mage.Sets/src/mage/cards/g/GiftOfWrath.java @@ -49,7 +49,7 @@ public final class GiftOfWrath extends CardImpl { )); ability.addEffect(new ConditionalContinuousEffect(new GainAbilityAttachedEffect( new MenaceAbility(), AttachmentType.AURA - ), condition, "and has menace")); + ), condition, "and has menace. (It can't be blocked except by two or more creatures.)")); this.addAbility(ability); // When Gift of Wrath leaves the battlefield, create a 2/2 red Spirit creature token with menace. diff --git a/Mage.Sets/src/mage/cards/k/KaitosPursuit.java b/Mage.Sets/src/mage/cards/k/KaitosPursuit.java index a8cd134674..fa74b38d12 100644 --- a/Mage.Sets/src/mage/cards/k/KaitosPursuit.java +++ b/Mage.Sets/src/mage/cards/k/KaitosPursuit.java @@ -36,7 +36,8 @@ public final class KaitosPursuit extends CardImpl { this.getSpellAbility().addTarget(new TargetPlayer()); this.getSpellAbility().addEffect(new GainAbilityControlledEffect( new MenaceAbility(false), Duration.EndOfTurn, filter - )); + ).setText("Ninjas and Rogues you control gain menace until end of turn. " + + "(They can't be blocked except by two or more creatures.)")); } private KaitosPursuit(final KaitosPursuit card) { diff --git a/Mage.Sets/src/mage/cards/k/KamiOfRestlessShadows.java b/Mage.Sets/src/mage/cards/k/KamiOfRestlessShadows.java index 88cb0278e7..b75ec88bee 100644 --- a/Mage.Sets/src/mage/cards/k/KamiOfRestlessShadows.java +++ b/Mage.Sets/src/mage/cards/k/KamiOfRestlessShadows.java @@ -48,7 +48,8 @@ public final class KamiOfRestlessShadows extends CardImpl { // • Put target creature card from your graveyard on top of your library. Mode mode = new Mode(new PutOnLibraryTargetEffect(true)); mode.addTarget(new TargetCardInYourGraveyard(StaticFilters.FILTER_CARD_CREATURE_YOUR_GRAVEYARD)); - this.getSpellAbility().addMode(mode); + ability.addMode(mode); + this.addAbility(ability); } private KamiOfRestlessShadows(final KamiOfRestlessShadows card) { diff --git a/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java b/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java index 50516f70aa..9e5dad3bcf 100644 --- a/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java +++ b/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java @@ -90,7 +90,7 @@ public class VerifyCardDataTest { // power-toughness skipListCreate(SKIP_LIST_PT); - skipListAddName(SKIP_LIST_PT, "NEO", "Futurist Sentinel"); // temporary +// skipListAddName(SKIP_LIST_PT, "NEO", "Futurist Sentinel"); // temporary // color skipListCreate(SKIP_LIST_COLOR);