Package mage.game.draft

Examples of mage.game.draft.Draft


                    break;
                case DUELING:
                    stateText.append(" Round: ").append(table.getTournament().getRounds().size());
                    break;
                case DRAFTING:
                    Draft draft = table.getTournament().getDraft();
                    if (draft != null) {
                        stateText.append(" ").append(draft.getBoosterNum()).append("/").append(draft.getCardNum() -1);
                    }
                default:
            }
            this.additionalInfo = infoText.toString();
            this.tableStateText = stateText.toString();
View Full Code Here

TOP

Related Classes of mage.game.draft.Draft

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.