mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
fix verify
This commit is contained in:
parent
906e30a81b
commit
94f2b53711
1 changed files with 2 additions and 3 deletions
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
package mage.cards.i;
|
||||
|
||||
import java.util.UUID;
|
||||
|
|
@ -14,7 +13,6 @@ import mage.constants.AttachmentType;
|
|||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.Zone;
|
||||
import mage.target.TargetPermanent;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
|
|
@ -37,7 +35,8 @@ public final class ImposingVisage extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
|
||||
// Enchanted creature has menace. (It can't be blocked except by two or more creatures.)
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(new MenaceAbility(), AttachmentType.AURA)));
|
||||
this.addAbility(new SimpleStaticAbility(new GainAbilityAttachedEffect(new MenaceAbility(), AttachmentType.AURA)
|
||||
.setText("enchanted creature has menace. <i>(It can’t be blocked except by two or more creatures.)</i>")));
|
||||
}
|
||||
|
||||
private ImposingVisage(final ImposingVisage card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue