foul-magics/Mage.Sets/src/mage/sets/Tempest.java

25 lines
723 B
Java

package mage.sets;
import mage.cards.ExpansionSet;
import mage.constants.SetType;
import java.util.GregorianCalendar;
public class Tempest extends ExpansionSet {
private static final Tempest fINSTANCE = new Tempest();
public static Tempest getInstance() {
return fINSTANCE;
}
private Tempest() {
super("Tempest", "TMP", "mage.sets.tempest", new GregorianCalendar(1997, 9, 1).getTime(), SetType.EXPANSION);
this.blockName = "Tempest";
this.hasBoosters = true;
this.numBoosterLands = 1;
this.numBoosterCommon = 10;
this.numBoosterUncommon = 3;
this.numBoosterRare = 1;
this.ratioBoosterMythic = 0;
}
}