Added possibility to use Morph with a land. Minor changes to some cards.

This commit is contained in:
LevelX2 2014-12-03 20:20:23 +01:00
parent 40febbe086
commit 4b66cd8367
15 changed files with 323 additions and 111 deletions

View file

@ -47,6 +47,7 @@ import mage.constants.EffectType;
import mage.constants.Zone;
import mage.game.Controllable;
import mage.game.Game;
import mage.players.Player;
import mage.target.Target;
import mage.target.Targets;
@ -473,4 +474,7 @@ public interface Ability extends Controllable, Serializable {
* @param active execute no cost modification
*/
void setCostModificationActive(boolean active);
boolean activateAlternateOrAdditionalCosts(MageObject sourceObject, boolean noMana, Player controller, Game game);
}