Examples of EndTurnEffect


Examples of mage.abilities.effects.common.EndTurnEffect

        this.expansionSetCode = "10E";

        this.color.setBlue(true);

        // End the turn.
        this.getSpellAbility().addEffect(new EndTurnEffect());
    }
View Full Code Here

Examples of mage.abilities.effects.common.EndTurnEffect

    public SundialOfTheInfinite(UUID ownerId) {
        super(ownerId, 218, "Sundial of the Infinite", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{2}");
        this.expansionSetCode = "M12";

        // {1}, {tap}: End the turn. Activate this ability only during your turn.
        Ability ability = new ActivateIfConditionActivatedAbility(Zone.BATTLEFIELD, new EndTurnEffect(), new GenericManaCost(1), MyTurnCondition.getInstance());
        ability.addCost(new TapSourceCost());
        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.