fix verify

This commit is contained in:
xenohedron 2023-07-16 03:54:32 -04:00
parent 906e30a81b
commit 94f2b53711

View file

@ -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 cant be blocked except by two or more creatures.)</i>")));
}
private ImposingVisage(final ImposingVisage card) {