mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
Improvements and extensions to Card based random deck generator. Now randomly picks a second keycard to build the deck around too. Also I have now included all non-AI playable decks in the model (the AI still excludes the non-AI playables from the decks it builds). There are now 10x more decks in the model including the latest decks from pro tour AKH. The format of the .dat files has now changed - so these new dat files need to be redeployed if you are manually installing on Android.
This commit is contained in:
@@ -601,12 +601,12 @@ public class FDeckChooser extends FScreen {
|
||||
break;
|
||||
case STANDARD_CARDGEN_DECK:
|
||||
maxSelections = 1;
|
||||
pool = CardThemedDeckGenerator.getMatrixDecks(FModel.getFormats().getStandard());
|
||||
pool = CardThemedDeckGenerator.getMatrixDecks(FModel.getFormats().getStandard(), isAi);
|
||||
config = ItemManagerConfig.STRING_ONLY;
|
||||
break;
|
||||
case MODERN_CARDGEN_DECK:
|
||||
maxSelections = 1;
|
||||
pool = CardThemedDeckGenerator.getMatrixDecks(FModel.getFormats().getModern());
|
||||
pool = CardThemedDeckGenerator.getMatrixDecks(FModel.getFormats().getModern(), isAi);
|
||||
config = ItemManagerConfig.STRING_ONLY;
|
||||
break;
|
||||
case MODERN_COLOR_DECK:
|
||||
|
||||
Reference in New Issue
Block a user