Package mage.actions

Examples of mage.actions.MageDrawAction


        return false;
    }

    @Override
    public int drawCards(int num, Game game) {
        return game.doAction(new MageDrawAction(this, num, null));
    }
View Full Code Here


        return game.doAction(new MageDrawAction(this, num, null));
    }

    @Override
    public int drawCards(int num, Game game, ArrayList<UUID> appliedEffects) {
        return game.doAction(new MageDrawAction(this, num, appliedEffects));
    }
View Full Code Here

TOP

Related Classes of mage.actions.MageDrawAction

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.