Package mage.abilities.common

Examples of mage.abilities.common.TurnedFaceUpAllTriggeredAbility


        // Morph {4}{G}
        this.addAbility(new MorphAbility(this, new ManaCostsImpl("{4}{G}")));
        // Whenever Pine Walker or another creature you control is turned face up, untap that creature.
        Effect effect = new UntapTargetEffect();
        effect.setText("untap that creature");
        this.addAbility(new TurnedFaceUpAllTriggeredAbility(effect, new FilterControlledCreaturePermanent("{this} or another creature you control"), true));

    }
View Full Code Here

TOP

Related Classes of mage.abilities.common.TurnedFaceUpAllTriggeredAbility

Copyright © 2018 www.massapicom. 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.