Package mage.abilities.effects.common

Examples of mage.abilities.effects.common.ReturnToBattlefieldUnderOwnerControlSourceEffect


        this.color.setBlack(true);
        this.power = new MageInt(1);
        this.toughness = new MageInt(1);

        // When Tenacious Dead dies, you may pay {1}{B}. If you do, return it to the battlefield tapped under its owner's control.
        Effect effect = new DoIfCostPaid(new ReturnToBattlefieldUnderOwnerControlSourceEffect(true), new ManaCostsImpl("{1}{B}"));
        this.addAbility(new DiesTriggeredAbility(effect, false));

    }
View Full Code Here

TOP

Related Classes of mage.abilities.effects.common.ReturnToBattlefieldUnderOwnerControlSourceEffect

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.