fixed verify failure

This commit is contained in:
Evan Kranzler 2022-05-25 06:51:46 -04:00
parent db68e4798a
commit 5c16b2e342

View file

@ -34,10 +34,10 @@ public final class NineFingersKeene extends CardImpl {
this.toughness = new MageInt(4);
// Menace
this.addAbility(new MenaceAbility());
this.addAbility(new MenaceAbility(false));
// WardPay 9 life.
this.addAbility(new WardAbility(new PayLifeCost(9)));
this.addAbility(new WardAbility(new PayLifeCost(9), false));
// Whenever Nine-Fingers Keene deals combat damage to a player, look at the top nine cards of your library. You may put a Gate card from among them onto the battlefield. Then if you control nine or more Gates, put the rest into your hand. Otherwise put the rest on the bottom of your library in a random order.
this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(new NineFingersKeeneEffect(), false));