Examples of UntapSourceCost


Examples of mage.abilities.costs.common.UntapSourceCost

        ability.addTarget(new TargetCreatureOrPlayer());
        this.addAbility(ability);
       
        // {UR}{UR}, {untap}, Untap two tapped blue creatures you control: Return target creature to its owner's hand.
        Ability ability2 = new SimpleActivatedAbility(Zone.BATTLEFIELD, new ReturnToHandTargetEffect(), new ManaCostsImpl("{U/R}{U/R}"));
        ability2.addCost(new UntapSourceCost());
        ability2.addCost(new UntapTargetCost(new TargetControlledCreaturePermanent(2, 2, filter2, true)));
        ability2.addTarget(new TargetCreaturePermanent());
        this.addAbility(ability2);
       
    }
View Full Code Here

Examples of mage.abilities.costs.common.UntapSourceCost

        this.power = new MageInt(1);
        this.toughness = new MageInt(3);

        // {2}{GU}, {untap}: For each counter on target permanent, put another of those counters on that permanent.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new GilderBairnEffect(), new ManaCostsImpl("{2}{G/U}"));
        ability.addCost(new UntapSourceCost());
        ability.addTarget(new TargetPermanent());
        this.addAbility(ability);

    }
View Full Code Here

Examples of mage.abilities.costs.common.UntapSourceCost

        // Wither
        this.addAbility(WitherAbility.getInstance());
       
        // {2}{R}, {untap}: Hateflayer deals damage equal to its power to target creature or player.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(new SourcePermanentPowerCount()), new ManaCostsImpl("{2}{R}"));
        ability.addCost(new UntapSourceCost());
        ability.addTarget(new TargetCreatureOrPlayer());
        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.