mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 04:42:07 -08:00
Morphling fix
This commit is contained in:
parent
4d1641538e
commit
e7a2277252
1 changed files with 2 additions and 3 deletions
|
|
@ -28,8 +28,6 @@
|
|||
package mage.sets.urzassaga;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.constants.*;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.mana.ColoredManaCost;
|
||||
|
|
@ -40,6 +38,7 @@ import mage.abilities.effects.common.continuous.GainAbilitySourceEffect;
|
|||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.abilities.keyword.ShroudAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.*;
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
@ -64,7 +63,7 @@ public class Morphling extends CardImpl {
|
|||
// {1}: Morphling gets +1/-1 until end of turn.
|
||||
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(1, -1, Duration.EndOfTurn), new GenericManaCost(1)));
|
||||
// {1}: Morphling gets -1/+1 until end of turn.
|
||||
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(+1, 1, Duration.EndOfTurn), new GenericManaCost(1)));
|
||||
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(-1, 1, Duration.EndOfTurn), new GenericManaCost(1)));
|
||||
}
|
||||
|
||||
public Morphling(final Morphling card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue