Examples of adjustChoices()


Examples of mage.MageObject.adjustChoices()

        }

       
        MageObject sourceObject = game.getObject(sourceId);
        if (sourceObject != null) {
            sourceObject.adjustChoices(this, game);
        }
        for (UUID modeId :this.getModes().getSelectedModes()) {
            this.getModes().setMode(this.getModes().get(modeId));
            if (getChoices().size() > 0 && getChoices().choose(game, this) == false) {
                logger.debug("activate failed - choice");
View Full Code Here

Examples of mage.cards.Card.adjustChoices()

    @Override
    public void adjustChoices(Ability ability, Game game) {
        Card card = game.getCard(ability.getSourceId());
        if (card != null) {
            card.adjustChoices(ability, game);
        }
    }
   
    @Override
    public void adjustCosts(Ability ability, Game game) {
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.