mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
fixed verify failure
This commit is contained in:
parent
db68e4798a
commit
5c16b2e342
1 changed files with 2 additions and 2 deletions
|
@ -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));
|
||||
|
||||
// Ward—Pay 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));
|
||||
|
|
Loading…
Reference in a new issue