Package mage.abilities.effects.common

Examples of mage.abilities.effects.common.ReturnToBattlefieldUnderYourControlSourceEffect


class TatsumaTheDragonsFangTriggeredAbility extends DelayedTriggeredAbility {

    protected FixedTarget fixedTarget;

    public TatsumaTheDragonsFangTriggeredAbility(FixedTarget fixedTarget) {
        super(new ReturnToBattlefieldUnderYourControlSourceEffect(), Duration.OneUse);
        this.fixedTarget = fixedTarget;
    }
View Full Code Here


        // Soulbond
        this.addAbility(SoulbondAbility.getInstance());

        // As long as Deadeye Navigator is paired with another creature, each of those creatures has "{1}{U}: Exile this creature, then return it to the battlefield under your control."
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new ExileSourceEffect(Zone.BATTLEFIELD), new ManaCostsImpl("{1}{U}"));
        ability.addEffect(new ReturnToBattlefieldUnderYourControlSourceEffect());
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityPairedEffect(ability, ruleText)));
    }
View Full Code Here

TOP

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

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.