From 83c1e4395a1c8f1472fab8afe883cdb3d1d62341 Mon Sep 17 00:00:00 2001 From: xenohedron Date: Thu, 22 Jun 2023 00:22:49 -0400 Subject: [PATCH] Adjust Nacatl War-Pride --- Mage.Sets/src/mage/cards/n/NacatlWarPride.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/cards/n/NacatlWarPride.java b/Mage.Sets/src/mage/cards/n/NacatlWarPride.java index 1248fb27cb9..b5de1126924 100644 --- a/Mage.Sets/src/mage/cards/n/NacatlWarPride.java +++ b/Mage.Sets/src/mage/cards/n/NacatlWarPride.java @@ -19,7 +19,6 @@ import mage.constants.CardType; import mage.constants.SubType; import mage.constants.Duration; import mage.constants.Outcome; -import mage.constants.Zone; import mage.filter.common.FilterControlledCreaturePermanent; import mage.game.Game; import mage.game.permanent.Permanent; @@ -43,8 +42,9 @@ public final class NacatlWarPride extends CardImpl { this.toughness = new MageInt(3); // Nacatl War-Pride must be blocked by exactly one creature if able. - this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByMoreThanOneSourceEffect())); - this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new MustBeBlockedByAtLeastOneSourceEffect(Duration.WhileOnBattlefield))); + Ability blockAbility = new SimpleStaticAbility(new MustBeBlockedByAtLeastOneSourceEffect(Duration.WhileOnBattlefield).setText("{this} must be blocked")); + blockAbility.addEffect(new CantBeBlockedByMoreThanOneSourceEffect().setText(" by exactly one creature if able")); + this.addAbility(blockAbility); // Whenever Nacatl War-Pride attacks, create X tokens that are copies of Nacatl War-Pride tapped and attacking, where X is the number of creatures defending player controls. Exile the tokens at the beginning of the next end step. Ability ability = new AttacksTriggeredAbility(new NacatlWarPrideEffect(), false);