Examples of lookAtCards()


Examples of mage.players.Player.lookAtCards()

            if (card != null) {
                cards.add(card);
                game.setZone(card.getId(), Zone.PICK);
            }
        }
        player.lookAtCards("Call to the Kindred", cards, game);

        FilterCreatureCard filter = new FilterCreatureCard();
        StringBuilder sb = new StringBuilder("creature card with at least one subtype from: ");
        ArrayList<Predicate<MageObject>> subtypes = new ArrayList<Predicate<MageObject>>();
        for (String subtype : creature.getSubtype()) {
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.