* Added promotional, Duel Deck and Non-standard-legal sets to SetType. Changed sets and set selection accordingly.

This commit is contained in:
LevelX2 2015-02-04 00:34:18 +01:00
parent 67b3ee7872
commit 41c6c47092
36 changed files with 43 additions and 41 deletions

View file

@ -27,11 +27,10 @@
*/
package mage.sets;
import java.util.GregorianCalendar;
import mage.cards.ExpansionSet;
import mage.constants.SetType;
import java.util.GregorianCalendar;
public class MediaInserts extends ExpansionSet {
private static final MediaInserts fINSTANCE = new MediaInserts();
@ -40,7 +39,7 @@ public class MediaInserts extends ExpansionSet {
}
private MediaInserts() {
super("Media Inserts", "MBP", "mage.sets.mediainserts", new GregorianCalendar(1990, 1, 1).getTime(), SetType.EXPANSION);
super("Media Inserts", "MBP", "mage.sets.mediainserts", new GregorianCalendar(1990, 1, 1).getTime(), SetType.PROMOTIONAL);
this.hasBoosters = false;
this.hasBasicLands = false;
}