forked from External/mage
Enhanced deck generator: monocolor decks, card pool 3 times bigger, bonus for multicolored cards, no duplicate cards.
This commit is contained in:
parent
1eb65e8d13
commit
935bf45c57
3 changed files with 33 additions and 19 deletions
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue