Package mage.abilities.keyword

Examples of mage.abilities.keyword.ForestcyclingAbility


        this.toughness = new MageInt(3);

        // Mountaincycling {2}
        this.addAbility(new MountaincyclingAbility(new ManaCostsImpl("{2}")));
        // Forestcycling {2}
        this.addAbility(new ForestcyclingAbility(new ManaCostsImpl("{2}")));
    }
View Full Code Here


        this.color.setGreen(true);
        this.power = new MageInt(6);
        this.toughness = new MageInt(6);

        // Forestcycling {2}
        this.addAbility(new ForestcyclingAbility(new ManaCostsImpl("{2}")));
    }
View Full Code Here

        this.toughness = new MageInt(5);

        // {tap}: Add {G}{G}{G} to your mana pool.
        this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, Mana.GreenMana(3), new TapSourceCost()));
        // Forestcycling {2}
        this.addAbility(new ForestcyclingAbility(new ManaCostsImpl("{2}")));
    }
View Full Code Here

        this.toughness = new MageInt(5);

        // Reach
        this.addAbility(ReachAbility.getInstance());
        // Forestcycling {2}
        this.addAbility(new ForestcyclingAbility(new ManaCostsImpl("{2}")));
        // plainscycling {2}
        this.addAbility(new PlainscyclingAbility(new ManaCostsImpl("{2}")));
    }
View Full Code Here

TOP

Related Classes of mage.abilities.keyword.ForestcyclingAbility

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.