Examples of UntapLandsEffect


Examples of mage.abilities.effects.common.UntapLandsEffect

        this.toughness = new MageInt(3);

        // Flying
        this.addAbility(FlyingAbility.getInstance());
        // When Peregrine Drake enters the battlefield, untap up to five lands.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new UntapLandsEffect(5)));
    }
View Full Code Here

Examples of mage.abilities.effects.common.UntapLandsEffect

        this.toughness = new MageInt(1);

        // Flying
        this.addAbility(FlyingAbility.getInstance());
        // When Cloud of Faeries enters the battlefield, untap up to two lands.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new UntapLandsEffect(2)));
        // Cycling {2}
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}")));
    }
View Full Code Here

Examples of mage.abilities.effects.common.UntapLandsEffect

        this.color.setBlue(true);

        // Return target creature to its owner's hand. Untap up to two lands.
        this.getSpellAbility().addEffect(new ReturnToHandTargetEffect());
        this.getSpellAbility().addTarget(new TargetCreaturePermanent());
        this.getSpellAbility().addEffect(new UntapLandsEffect(2));
    }
View Full Code Here

Examples of mage.abilities.effects.common.UntapLandsEffect

        this.color.setBlue(true);

        // Draw two cards, then discard two cards. Untap up to three lands.
        this.getSpellAbility().addEffect(new DrawDiscardControllerEffect(2, 2));
        this.getSpellAbility().addEffect(new UntapLandsEffect(3));
    }
View Full Code Here

Examples of mage.abilities.effects.common.UntapLandsEffect

        this.toughness = new MageInt(5);

        // Flying
        this.addAbility(FlyingAbility.getInstance());
        // When Palinchron enters the battlefield, untap up to seven lands.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new UntapLandsEffect(7)));
        // {2}{U}{U}: Return Palinchron to its owner's hand.
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new ReturnToHandSourceEffect(true), new ManaCostsImpl("{2}{U}{U}")));
    }
View Full Code Here

Examples of mage.abilities.effects.common.UntapLandsEffect

        this.color.setBlue(true);

        // Exile Time Spiral. Each player shuffles his or her graveyard and hand into his or her library, then draws seven cards. You untap up to six lands.
        this.getSpellAbility().addEffect(ExileSpellEffect.getInstance());
        this.getSpellAbility().addEffect(new TimeSpiralEffect());
        this.getSpellAbility().addEffect(new UntapLandsEffect(6));
    }
View Full Code Here

Examples of mage.abilities.effects.common.UntapLandsEffect

        this.getSpellAbility().addTarget(auraTarget);
        this.getSpellAbility().addEffect(new AttachEffect(Outcome.BoostCreature));
        Ability ability = new EnchantAbility(auraTarget.getTargetName());
        this.addAbility(ability);
        // When Treachery enters the battlefield, untap up to five lands.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new UntapLandsEffect(5)));
        // You control enchanted creature.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ControlEnchantedEffect()));

    }
View Full Code Here

Examples of mage.abilities.effects.common.UntapLandsEffect

        this.color.setBlue(true);

        // Counter target spell. Untap up to four lands.
        this.getSpellAbility().addTarget(new TargetSpell());
        this.getSpellAbility().addEffect(new CounterTargetEffect());
        this.getSpellAbility().addEffect(new UntapLandsEffect(4));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.