Package mage.abilities.effects.common.turn

Examples of mage.abilities.effects.common.turn.ControlTargetPlayerNextTurnEffect


        LoyaltyAbility ability2 = new LoyaltyAbility(new SorinMarkovEffect(), -3);
        ability2.addTarget(new TargetOpponent());
        this.addAbility(ability2);

        // -7: You control target player during that player's next turn.
        LoyaltyAbility ability3 = new LoyaltyAbility(new ControlTargetPlayerNextTurnEffect(), -7);
        ability3.addTarget(new TargetPlayer());
        this.addAbility(ability3);
    }
View Full Code Here


        this.expansionSetCode = "JOU";

        this.color.setBlack(true);

        // You control target player during that player's next turn. Exile Worst Fears. (You see all cards that player could see and make all decisions for that player.)
        this.getSpellAbility().addEffect(new ControlTargetPlayerNextTurnEffect());
        this.getSpellAbility().addTarget(new TargetPlayer());
        this.getSpellAbility().addEffect(ExileSpellEffect.getInstance());
    }
View Full Code Here

        super(ownerId, 176, "Mindslaver", Rarity.MYTHIC, new CardType[]{CardType.ARTIFACT}, "{6}");
        this.expansionSetCode = "SOM";
        this.supertype.add("Legendary");

        // {4}, {tap}, Sacrifice Mindslaver: You control target player during that player's next turn.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new ControlTargetPlayerNextTurnEffect(), new GenericManaCost(4));
        ability.addCost(new TapSourceCost());
        ability.addCost(new SacrificeSourceCost());
        ability.addTarget(new TargetPlayer());
        this.addAbility(ability);
    }
View Full Code Here

TOP

Related Classes of mage.abilities.effects.common.turn.ControlTargetPlayerNextTurnEffect

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.