mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 13:19:18 -08:00
- Fixed Nacatl War-Pride
This commit is contained in:
parent
609fbc7f7b
commit
8c62038d7e
1 changed files with 2 additions and 1 deletions
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue