- !PrintSheets can now be referenced inside Booster contents of an edition file

- M15 Boosters no longer contain cards only found in Intro decks
- Adding a few Conspiracy type cards, along with the capability of their use (NOTE: Deck editors still need a way to add Conspiracy types)
- Added Brago's Favor, Immediate Action, Muzzio's Preparations, Secret Summoning, Secrets of Paradise
This commit is contained in:
Sol
2014-07-21 02:56:13 +00:00
parent 007ebc3e9c
commit c42f6fea9d
22 changed files with 193 additions and 8 deletions

View File

@@ -139,6 +139,9 @@ public enum CSubmenuDraft implements ICDoc {
List<RegisteredPlayer> starter = new ArrayList<RegisteredPlayer>();
starter.add(new RegisteredPlayer(humanDeck.getDeck()).setPlayer(GuiBase.getInterface().getGuiPlayer()));
starter.add(new RegisteredPlayer(aiDeck).setPlayer(GuiBase.getInterface().createAiPlayer()));
for(RegisteredPlayer pl : starter) {
pl.assignConspiracies();
}
GuiBase.getInterface().startMatch(GameType.Draft, starter);
}