Examples of WurmToken


Examples of mage.game.permanent.token.WurmToken

       
        // -3: Draw cards equal to the greatest power among creatures you control.
        this.addAbility(new LoyaltyAbility(new GarrukPrimalHunterEffect(), -3));

        // -6: Put a 6/6 green Wurm creature token onto the battlefield for each land you control.
        this.addAbility(new LoyaltyAbility(new CreateTokenEffect(new WurmToken(), new PermanentsOnBattlefieldCount(filter)), -6));
    }
View Full Code Here

Examples of mage.game.permanent.token.WurmToken

        this.expansionSetCode = "ODY";

        this.color.setGreen(true);

        // Put a 6/6 green Wurm creature token onto the battlefield.
        this.getSpellAbility().addEffect(new CreateTokenEffect(new WurmToken()));

        // Flashback {3}{G}
        this.addAbility(new FlashbackAbility(new ManaCostsImpl("{3}{G}"), TimingRule.SORCERY));
    }
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.