Examples of moveCardToHandWithInfo()


Examples of mage.players.Player.moveCardToHandWithInfo()

                if (player != null) {
                    Target target = new TargetCardInYourGraveyard(0, 3, new FilterCard());
                    if (target.choose(Outcome.ReturnToHand, player.getId(), source.getSourceId(), game)) {
                        for (UUID targetId : target.getTargets()) {
                            Card card = game.getCard(targetId);
                            player.moveCardToHandWithInfo(card, source.getSourceId(), game, Zone.GRAVEYARD);
                        }
                    }
                }
            }
            return true;
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.