submissions from Melkhior

This commit is contained in:
BetaSteward 2012-03-08 15:38:18 -05:00
parent 38613f0b83
commit d353924fcd
18 changed files with 795 additions and 4 deletions

View file

@ -0,0 +1,25 @@
package mage.sets;
import mage.Constants;
import mage.cards.ExpansionSet;
import java.util.GregorianCalendar;
public class Onslaught extends ExpansionSet {
private static final Onslaught fINSTANCE = new Onslaught();
public static Onslaught getInstance() {
return fINSTANCE;
}
private Onslaught() {
super("Onslaught", "ONS", "", "mage.sets.onslaught", new GregorianCalendar(2002, 10, 7).getTime(), Constants.SetType.EXPANSION);
this.blockName = "Onslaught";
this.hasBoosters = true;
this.numBoosterLands = 1;
this.numBoosterCommon = 10;
this.numBoosterUncommon = 3;
this.numBoosterRare = 1;
this.ratioBoosterMythic = 0;
}
}