Package mage.abilities.costs

Examples of mage.abilities.costs.AlternativeCost2


    public ProwlAbility copy() {
       return new ProwlAbility(this);
    }

    public final AlternativeCost2 addProwlCost(String manaString) {
       AlternativeCost2 prowlCost = new AlternativeCost2Impl(PROWL_KEYWORD, reminderText, new ManaCostsImpl(manaString));
       prowlCosts.add(prowlCost);
       return prowlCost;
    }
View Full Code Here


    public EvokeAbility copy() {
       return new EvokeAbility(this);
    }
   
    public final AlternativeCost2 addEvokeCost(String manaString) {
       AlternativeCost2 evokeCost = new AlternativeCost2Impl(EVOKE_KEYWORD, REMINDER_TEXT, new ManaCostsImpl(manaString));
       evokeCosts.add(evokeCost);
       return evokeCost;
    }
View Full Code Here

TOP

Related Classes of mage.abilities.costs.AlternativeCost2

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.