mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 04:42:07 -08:00
added M20
This commit is contained in:
parent
620be8fd33
commit
9d824960cf
4 changed files with 41 additions and 0 deletions
36
Mage.Sets/src/mage/sets/CoreSet2020.java
Normal file
36
Mage.Sets/src/mage/sets/CoreSet2020.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue