forked from External/mage
improve frame styles
This commit is contained in:
parent
d38ca6a041
commit
e7a8035e92
4 changed files with 28 additions and 29 deletions
|
|
@ -27,6 +27,7 @@ public abstract class ExpansionSet implements Serializable {
|
|||
public static final CardGraphicInfo NON_FULL_USE_VARIOUS = new CardGraphicInfo(null, true);
|
||||
public static final CardGraphicInfo FULL_ART_BFZ_VARIOUS = new CardGraphicInfo(FrameStyle.BFZ_FULL_ART_BASIC, true);
|
||||
public static final CardGraphicInfo FULL_ART_ZEN_VARIOUS = new CardGraphicInfo(FrameStyle.ZEN_FULL_ART_BASIC, true);
|
||||
public static final CardGraphicInfo FULL_ART_UST_VARIOUS = new CardGraphicInfo(FrameStyle.UST_FULL_ART_BASIC, true);
|
||||
|
||||
public static class SetCardInfo implements Serializable {
|
||||
|
||||
|
|
@ -87,7 +88,7 @@ public abstract class ExpansionSet implements Serializable {
|
|||
}
|
||||
}
|
||||
|
||||
private static enum ExpansionSetComparator implements Comparator<ExpansionSet> {
|
||||
private enum ExpansionSetComparator implements Comparator<ExpansionSet> {
|
||||
instance;
|
||||
|
||||
@Override
|
||||
|
|
@ -149,7 +150,7 @@ public abstract class ExpansionSet implements Serializable {
|
|||
protected Map<String, List<CardInfo>> savedReprints = null;
|
||||
protected final Map<String, CardInfo> inBoosterMap = new HashMap<>();
|
||||
|
||||
public ExpansionSet(String name, String code, Date releaseDate, SetType setType) {
|
||||
protected ExpansionSet(String name, String code, Date releaseDate, SetType setType) {
|
||||
this.name = name;
|
||||
this.code = code;
|
||||
this.releaseDate = releaseDate;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue