mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
fix verify failure
This commit is contained in:
parent
5ca153507e
commit
16e3b25024
1 changed files with 2 additions and 0 deletions
|
|
@ -18,6 +18,7 @@ import mage.constants.CardType;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
import mage.constants.SuperType;
|
import mage.constants.SuperType;
|
||||||
import mage.game.permanent.token.WallColorlessReachToken;
|
import mage.game.permanent.token.WallColorlessReachToken;
|
||||||
|
import mage.target.common.TargetCreaturePermanent;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
|
|
@ -45,6 +46,7 @@ public final class InvisibleWoman extends CardImpl {
|
||||||
new BoostTargetEffect(CreaturesYouControlCount.SINGULAR, StaticValue.get(0)), false
|
new BoostTargetEffect(CreaturesYouControlCount.SINGULAR, StaticValue.get(0)), false
|
||||||
);
|
);
|
||||||
ability.addEffect(new CantBeBlockedTargetEffect().setText("and can't be blocked this turn"));
|
ability.addEffect(new CantBeBlockedTargetEffect().setText("and can't be blocked this turn"));
|
||||||
|
ability.addTarget(new TargetCreaturePermanent());
|
||||||
this.addAbility(new AttacksWithCreaturesTriggeredAbility(new DoWhenCostPaid(
|
this.addAbility(new AttacksWithCreaturesTriggeredAbility(new DoWhenCostPaid(
|
||||||
ability, new ManaCostsImpl<>("{R}{G}{W}{U}"), "Pay {R}{G}{W}{U}?"
|
ability, new ManaCostsImpl<>("{R}{G}{W}{U}"), "Pay {R}{G}{W}{U}?"
|
||||||
), 1));
|
), 1));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue