forked from External/mage
Reworking standard legality (#12624)
* rework standard rotation * add comment * add flag to previous sets
This commit is contained in:
parent
27e7d4432f
commit
8ed3c0c12d
29 changed files with 66 additions and 49 deletions
|
|
@ -113,6 +113,7 @@ public abstract class ExpansionSet implements Serializable {
|
|||
protected boolean hasBasicLands = true;
|
||||
|
||||
protected String blockName; // used to group sets in some GUI dialogs like choose set dialog
|
||||
protected boolean rotationSet = false; // used to determine if a set is a standard rotation
|
||||
protected boolean hasBoosters = false;
|
||||
protected int numBoosterSpecial;
|
||||
|
||||
|
|
@ -505,6 +506,10 @@ public abstract class ExpansionSet implements Serializable {
|
|||
return hasBasicLands;
|
||||
}
|
||||
|
||||
public boolean isRotationSet() {
|
||||
return rotationSet;
|
||||
}
|
||||
|
||||
/**
|
||||
* Keep only unique cards for booster generation and card ratio calculation
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue