forked from External/mage
submissions from Melkhior
This commit is contained in:
parent
38613f0b83
commit
d353924fcd
18 changed files with 795 additions and 4 deletions
25
Mage.Sets/src/mage/sets/Onslaught.java
Normal file
25
Mage.Sets/src/mage/sets/Onslaught.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue