forked from External/mage
This is an extensive renaming of sets to their correct names. "Duel Decks" and "Not Standard Legal" have been merged into a "Supplemental" set type. MTGO-only sets have been put into their own set type, just like magiccards.info. Supplemental sets now have a "block" which is the block that they have under magiccards.info, for easier organization. The deck builder on the client now relies on an autogenerated list instead of a hardcoded one.
20 lines
635 B
Java
20 lines
635 B
Java
package mage.sets;
|
|
|
|
import mage.cards.ExpansionSet;
|
|
import mage.constants.SetType;
|
|
|
|
import java.util.GregorianCalendar;
|
|
|
|
public class ElspethVsTezzeret extends ExpansionSet {
|
|
private static final ElspethVsTezzeret fINSTANCE = new ElspethVsTezzeret();
|
|
|
|
public static ElspethVsTezzeret getInstance() {
|
|
return fINSTANCE;
|
|
}
|
|
|
|
private ElspethVsTezzeret() {
|
|
super("Duel Decks: Elspeth vs. Tezzeret", "DDF", "mage.sets.elspethvstezzeret", new GregorianCalendar(2010, 8, 3).getTime(), SetType.SUPPLEMENTAL);
|
|
this.blockName = "Duel Decks";
|
|
this.hasBasicLands = false;
|
|
}
|
|
}
|