forked from External/mage
25 lines
717 B
Java
25 lines
717 B
Java
package mage.sets;
|
|
|
|
import mage.Constants;
|
|
import mage.cards.ExpansionSet;
|
|
|
|
import java.util.GregorianCalendar;
|
|
|
|
public class NewPhyrexia extends ExpansionSet {
|
|
private static final NewPhyrexia fINSTANCE = new NewPhyrexia();
|
|
|
|
public static NewPhyrexia getInstance() {
|
|
return fINSTANCE;
|
|
}
|
|
|
|
private NewPhyrexia() {
|
|
super("New Phyrexia", "NPH", "", "mage.sets.newphyrexia", new GregorianCalendar(2011, 4, 4).getTime(), Constants.SetType.EXPANSION);
|
|
this.blockName = "Mirrodin Besieged";
|
|
this.hasBoosters = true;
|
|
this.numBoosterLands = 1;
|
|
this.numBoosterCommon = 10;
|
|
this.numBoosterUncommon = 3;
|
|
this.numBoosterRare = 1;
|
|
this.ratioBoosterMythic = 8;
|
|
}
|
|
}
|