forked from External/mage
Fix Ovika, Enigma Goliath ward cost
This commit is contained in:
parent
8a38e25550
commit
ae081ee5af
1 changed files with 1 additions and 3 deletions
|
|
@ -9,14 +9,12 @@ import mage.abilities.costs.CompositeCost;
|
|||
import mage.abilities.costs.common.PayLifeCost;
|
||||
import mage.abilities.costs.mana.GenericManaCost;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.abilities.effects.common.continuous.GainAbilityTargetEffect;
|
||||
import mage.abilities.keyword.HasteAbility;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.keyword.WardAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
|
|
@ -47,7 +45,7 @@ public final class OvikaEnigmaGoliath extends CardImpl {
|
|||
|
||||
// Ward--{3}, Pay 3 life.
|
||||
this.addAbility(new WardAbility(new CompositeCost(
|
||||
new GenericManaCost(2), new PayLifeCost(3), "{3}, Pay 3 life"
|
||||
new GenericManaCost(3), new PayLifeCost(3), "{3}, Pay 3 life"
|
||||
), false));
|
||||
|
||||
// Whenever you cast a noncreature spell, create X 1/1 red Phyrexian Goblin creature tokens, where X is the mana value of that spell. They gain haste until end of turn.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue