Updated formats to include subtype enum and made a first batch attempt to set the value

Now sorting formats by type, subtype then name
Added new "additional" property to gameformats to allow additional non printed but legal cards to be included e.g. dual lands in extended 1999
This commit is contained in:
austinio7116
2018-04-10 07:28:28 +01:00
committed by maustin
parent 3e1f5c7632
commit a5d964a334
427 changed files with 473 additions and 114 deletions

View File

@@ -45,6 +45,7 @@ public class DialogChooseFormats {
break;
case Custom:
case Casual:
case Digital:
default:
casual.add(box);
break;
@@ -61,7 +62,7 @@ public class DialogChooseFormats {
String constraints = "aligny top";
panel.add(makeCheckBoxList(sanctioned, "Sanctioned", true), constraints);
panel.add(makeCheckBoxList(casual, "Casual", false), constraints);
panel.add(makeCheckBoxList(casual, "Other", false), constraints);
panel.add(makeCheckBoxList(historic, "Historic", false), constraints);
final JPanel overlay = FOverlay.SINGLETON_INSTANCE.getPanel();