mirror of
https://github.com/correl/mage.git
synced 2024-11-16 03:00:12 +00:00
2c3790b70e
TODO: Planar Chaos with its "planeshifted" card slots
25 lines
731 B
Java
25 lines
731 B
Java
package mage.sets;
|
|
|
|
import mage.cards.ExpansionSet;
|
|
import mage.constants.SetType;
|
|
|
|
import java.util.GregorianCalendar;
|
|
|
|
public class Mirrodin extends ExpansionSet {
|
|
private static final Mirrodin fINSTANCE = new Mirrodin();
|
|
|
|
public static Mirrodin getInstance() {
|
|
return fINSTANCE;
|
|
}
|
|
|
|
private Mirrodin() {
|
|
super("Mirrodin", "MRD", "mage.sets.mirrodin", new GregorianCalendar(2003, 9, 2).getTime(), SetType.EXPANSION);
|
|
this.blockName = "Mirrodin";
|
|
this.hasBoosters = true;
|
|
this.numBoosterLands = 0;
|
|
this.numBoosterCommon = 11;
|
|
this.numBoosterUncommon = 3;
|
|
this.numBoosterRare = 1;
|
|
this.ratioBoosterMythic = 0;
|
|
}
|
|
}
|