Package mage.abilities.common

Examples of mage.abilities.common.CastCommanderAbility


    private final Abilities<Ability> abilites = new AbilitiesImpl<>();

   
    public Commander(Card card){
        this.card = card;
        abilites.add(new CastCommanderAbility(card));
        for (Ability ability : card.getAbilities()) {
            if (!(ability instanceof SpellAbility)) {
                Ability newAbility = ability.copy();
                abilites.add(newAbility);
            }
View Full Code Here

TOP

Related Classes of mage.abilities.common.CastCommanderAbility

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.