Examples of announceXCost()


Examples of mage.players.Player.announceXCost()

    @Override
    public int announceXValue(Ability source, Game game) {
        int xValue = 0;
        Player controller = game.getPlayer(source.getControllerId());
        if (controller != null) {
            xValue = controller.announceXCost(0, getMaxValue(source, game),
                    new StringBuilder("Announce the number of ").append(actionText).toString(),
                    game, source, this);
        }
        return xValue;
    }
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.