added M20

This commit is contained in:
Evan Kranzler 2019-06-11 13:31:01 -04:00
parent 620be8fd33
commit 9d824960cf
4 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,36 @@
package mage.sets;
import mage.cards.ExpansionSet;
import mage.cards.repository.CardInfo;
import mage.constants.SetType;
import java.util.ArrayList;
import java.util.List;
/**
* @author TheElk801
*/
public final class CoreSet2020 extends ExpansionSet {
private static final CoreSet2020 instance = new CoreSet2020();
public static CoreSet2020 getInstance() {
return instance;
}
List<CardInfo> savedSpecialCommon = new ArrayList<>();
protected final List<CardInfo> savedSpecialLand = new ArrayList<>();
private CoreSet2020() {
super("Core Set 2020", "M20", ExpansionSet.buildDate(2019, 7, 12), SetType.CORE);
this.hasBoosters = true;
this.hasBasicLands = true;
this.numBoosterSpecial = 0;
this.numBoosterLands = 1;
this.numBoosterCommon = 10;
this.numBoosterUncommon = 3;
this.numBoosterRare = 1;
this.ratioBoosterMythic = 8;
this.maxCardNumberInBooster = 280;
}
}