Package mage.abilities.keyword

Examples of mage.abilities.keyword.PlainscyclingAbility


        this.toughness = new MageInt(6);

        // Defender
        this.addAbility(DefenderAbility.getInstance());
        // Plainscycling {2}, islandcycling {2}
        this.addAbility(new PlainscyclingAbility(new ManaCostsImpl("{2}")));
        this.addAbility(new IslandcyclingAbility(new ManaCostsImpl("{2}")));
    }
View Full Code Here


                new IsStepCondition(PhaseStep.UPKEEP),
                null
        );         
        this.addAbility(ability);
        // PlainscyclingAbility {2}
        this.addAbility(new PlainscyclingAbility(new ManaCostsImpl("{2}")));
    }
View Full Code Here

        this.toughness = new MageInt(6);

        // Vigilance
        this.addAbility(VigilanceAbility.getInstance());
        // Plainscycling {2}
        this.addAbility(new PlainscyclingAbility(new ManaCostsImpl("{2}")));
    }
View Full Code Here

        // 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.PlainscyclingAbility

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.