Examples of ReturnToHandTargetEffect


Examples of mage.abilities.effects.common.ReturnToHandTargetEffect

        this.toughness = new MageInt(2);

        this.addAbility(FlyingAbility.getInstance());

        // When Mist Raven enters the battlefield, return target creature to its owner's hand.
        Ability ability = new EntersBattlefieldTriggeredAbility(new ReturnToHandTargetEffect());
        ability.addTarget(new TargetCreaturePermanent());
        this.addAbility(ability);
    }
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.