mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
* Nissa, Steward of Elements - Fixed ultimate cost from +6 to -6.
This commit is contained in:
parent
36a0dc7d4e
commit
0d5f056fd5
1 changed files with 3 additions and 4 deletions
|
@ -27,11 +27,13 @@
|
|||
*/
|
||||
package mage.cards.n;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.LoyaltyAbility;
|
||||
import mage.abilities.common.EntersBattlefieldAbility;
|
||||
import mage.abilities.dynamicvalue.common.CountersSourceCount;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.EntersBattlefieldWithXCountersEffect;
|
||||
import mage.abilities.effects.common.UntapTargetEffect;
|
||||
|
@ -52,9 +54,6 @@ import mage.game.permanent.token.Token;
|
|||
import mage.players.Player;
|
||||
import mage.target.TargetPermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.effects.Effect;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author fireshoes
|
||||
|
@ -80,7 +79,7 @@ public class NissaStewardOfElements extends CardImpl {
|
|||
// -6: Untap up to two target lands you control. They become 5/5 Elemental creatures with flying and haste until end of turn. They're still lands.
|
||||
Effect effect = new UntapTargetEffect();
|
||||
effect.setText("Untap up to two target lands you control");
|
||||
LoyaltyAbility ability = new LoyaltyAbility(effect, 6);
|
||||
LoyaltyAbility ability = new LoyaltyAbility(effect, -6);
|
||||
effect = new BecomesCreatureTargetEffect(new NissaStewardOfElementsToken(), false, true, Duration.EndOfTurn);
|
||||
effect.setText("They become 5/5 Elemental creatures with flying and haste until end of turn. They're still lands");
|
||||
ability.addEffect(effect);
|
||||
|
|
Loading…
Reference in a new issue