Package mage.abilities.mana

Examples of mage.abilities.mana.BlueManaAbility.addCost()


        Ability addW = new WhiteManaAbility();
        addW.addCost(new FilterPermanentCost(controlIsland));
        this.addAbility(addW);
        // {tap}: Add {U} to your mana pool. Activate this ability only if you control a Plains.
        Ability addU = new BlueManaAbility();
        addU.addCost(new FilterPermanentCost(controlPlains));
        this.addAbility(addU);
    }

    public NimbusMaze(final NimbusMaze card) {
        super(card);
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.