- Fixed Nacatl War-Pride

This commit is contained in:
Jeff 2017-03-10 15:59:06 -06:00
parent 609fbc7f7b
commit 8c62038d7e

View file

@ -42,6 +42,7 @@ import mage.abilities.effects.common.combat.MustBeBlockedByAtLeastOneSourceEffec
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.Duration;
import mage.constants.Outcome;
import mage.constants.Zone;
import mage.filter.common.FilterControlledCreaturePermanent;
@ -66,7 +67,7 @@ public class NacatlWarPride extends CardImpl {
// 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()));
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new MustBeBlockedByAtLeastOneSourceEffect(Duration.WhileOnBattlefield)));
// 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.
this.addAbility(new AttacksTriggeredAbility(new NacatlWarPrideEffect(), false));