Enhanced deck generator: monocolor decks, card pool 3 times bigger, bonus for multicolored cards, no duplicate cards.

This commit is contained in:
magenoxx 2011-05-20 16:40:16 +04:00
parent 1eb65e8d13
commit 935bf45c57
3 changed files with 33 additions and 19 deletions

View file

@ -27,6 +27,13 @@ public class ColorsChooser extends JComboBox implements ListCellRenderer {
this.setRenderer(this);
final DefaultComboBoxModel model = new DefaultComboBoxModel();
model.addElement("u");
model.addElement("r");
model.addElement("b");
model.addElement("g");
model.addElement("w");
model.addElement("bu");
model.addElement("bg");
model.addElement("br");