mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 03:22:00 -08:00
Refactor: fixed wrong set's class names (48 files)
This commit is contained in:
parent
6ee1602bfc
commit
c36a7560ff
50 changed files with 229 additions and 235 deletions
|
|
@ -10,15 +10,15 @@ import mage.constants.SetType;
|
||||||
*
|
*
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
public final class Commander2013 extends ExpansionSet {
|
public final class Commander2013Edition extends ExpansionSet {
|
||||||
|
|
||||||
private static final Commander2013 instance = new Commander2013();
|
private static final Commander2013Edition instance = new Commander2013Edition();
|
||||||
|
|
||||||
public static Commander2013 getInstance() {
|
public static Commander2013Edition getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Commander2013() {
|
private Commander2013Edition() {
|
||||||
super("Commander 2013 Edition", "C13", ExpansionSet.buildDate(2013, 11, 01), SetType.SUPPLEMENTAL);
|
super("Commander 2013 Edition", "C13", ExpansionSet.buildDate(2013, 11, 01), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Command Zone";
|
this.blockName = "Command Zone";
|
||||||
cards.add(new SetCardInfo("Acidic Slime", 134, Rarity.UNCOMMON, mage.cards.a.AcidicSlime.class));
|
cards.add(new SetCardInfo("Acidic Slime", 134, Rarity.UNCOMMON, mage.cards.a.AcidicSlime.class));
|
||||||
|
|
@ -9,15 +9,15 @@ import mage.constants.SetType;
|
||||||
*
|
*
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
public final class Commander2014 extends ExpansionSet {
|
public final class Commander2014Edition extends ExpansionSet {
|
||||||
|
|
||||||
private static final Commander2014 instance = new Commander2014();
|
private static final Commander2014Edition instance = new Commander2014Edition();
|
||||||
|
|
||||||
public static Commander2014 getInstance() {
|
public static Commander2014Edition getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Commander2014() {
|
private Commander2014Edition() {
|
||||||
super("Commander 2014 Edition", "C14", ExpansionSet.buildDate(2014, 11, 07), SetType.SUPPLEMENTAL);
|
super("Commander 2014 Edition", "C14", ExpansionSet.buildDate(2014, 11, 07), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Command Zone";
|
this.blockName = "Command Zone";
|
||||||
cards.add(new SetCardInfo("Abyssal Persecutor", 132, Rarity.MYTHIC, mage.cards.a.AbyssalPersecutor.class));
|
cards.add(new SetCardInfo("Abyssal Persecutor", 132, Rarity.MYTHIC, mage.cards.a.AbyssalPersecutor.class));
|
||||||
|
|
@ -9,15 +9,15 @@ import mage.constants.SetType;
|
||||||
*
|
*
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class Commander2015 extends ExpansionSet {
|
public final class Commander2015Edition extends ExpansionSet {
|
||||||
|
|
||||||
private static final Commander2015 instance = new Commander2015();
|
private static final Commander2015Edition instance = new Commander2015Edition();
|
||||||
|
|
||||||
public static Commander2015 getInstance() {
|
public static Commander2015Edition getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Commander2015() {
|
private Commander2015Edition() {
|
||||||
super("Commander 2015 Edition", "C15", ExpansionSet.buildDate(2015, 11, 13), SetType.SUPPLEMENTAL);
|
super("Commander 2015 Edition", "C15", ExpansionSet.buildDate(2015, 11, 13), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Command Zone";
|
this.blockName = "Command Zone";
|
||||||
cards.add(new SetCardInfo("Acidic Slime", 173, Rarity.UNCOMMON, mage.cards.a.AcidicSlime.class));
|
cards.add(new SetCardInfo("Acidic Slime", 173, Rarity.UNCOMMON, mage.cards.a.AcidicSlime.class));
|
||||||
|
|
@ -9,15 +9,15 @@ import mage.constants.SetType;
|
||||||
*
|
*
|
||||||
* @author fireshoeS
|
* @author fireshoeS
|
||||||
*/
|
*/
|
||||||
public final class Commander2016 extends ExpansionSet {
|
public final class Commander2016Edition extends ExpansionSet {
|
||||||
|
|
||||||
private static final Commander2016 instance = new Commander2016();
|
private static final Commander2016Edition instance = new Commander2016Edition();
|
||||||
|
|
||||||
public static Commander2016 getInstance() {
|
public static Commander2016Edition getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Commander2016() {
|
private Commander2016Edition() {
|
||||||
super("Commander 2016 Edition", "C16", ExpansionSet.buildDate(2016, 11, 11), SetType.SUPPLEMENTAL);
|
super("Commander 2016 Edition", "C16", ExpansionSet.buildDate(2016, 11, 11), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Command Zone";
|
this.blockName = "Command Zone";
|
||||||
cards.add(new SetCardInfo("Abzan Charm", 177, Rarity.UNCOMMON, mage.cards.a.AbzanCharm.class));
|
cards.add(new SetCardInfo("Abzan Charm", 177, Rarity.UNCOMMON, mage.cards.a.AbzanCharm.class));
|
||||||
|
|
@ -5,18 +5,17 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class Commander2017 extends ExpansionSet {
|
public final class Commander2017Edition extends ExpansionSet {
|
||||||
|
|
||||||
private static final Commander2017 instance = new Commander2017();
|
private static final Commander2017Edition instance = new Commander2017Edition();
|
||||||
|
|
||||||
public static Commander2017 getInstance() {
|
public static Commander2017Edition getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Commander2017() {
|
private Commander2017Edition() {
|
||||||
super("Commander 2017 Edition", "C17", ExpansionSet.buildDate(2017, 8, 25), SetType.SUPPLEMENTAL);
|
super("Commander 2017 Edition", "C17", ExpansionSet.buildDate(2017, 8, 25), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Command Zone";
|
this.blockName = "Command Zone";
|
||||||
|
|
||||||
|
|
@ -5,18 +5,17 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author TheElk801
|
* @author TheElk801
|
||||||
*/
|
*/
|
||||||
public final class Commander2018 extends ExpansionSet {
|
public final class Commander2018Edition extends ExpansionSet {
|
||||||
|
|
||||||
private static final Commander2018 instance = new Commander2018();
|
private static final Commander2018Edition instance = new Commander2018Edition();
|
||||||
|
|
||||||
public static Commander2018 getInstance() {
|
public static Commander2018Edition getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Commander2018() {
|
private Commander2018Edition() {
|
||||||
super("Commander 2018 Edition", "C18", ExpansionSet.buildDate(2018, 8, 10), SetType.SUPPLEMENTAL);
|
super("Commander 2018 Edition", "C18", ExpansionSet.buildDate(2018, 8, 10), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Command Zone";
|
this.blockName = "Command Zone";
|
||||||
|
|
||||||
|
|
@ -5,7 +5,6 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class CommanderAnthology extends ExpansionSet {
|
public final class CommanderAnthology extends ExpansionSet {
|
||||||
|
|
@ -18,8 +17,9 @@ public final class CommanderAnthology extends ExpansionSet {
|
||||||
|
|
||||||
private CommanderAnthology() {
|
private CommanderAnthology() {
|
||||||
super("Commander Anthology", "CMA", ExpansionSet.buildDate(2017, 6, 9), SetType.SUPPLEMENTAL);
|
super("Commander Anthology", "CMA", ExpansionSet.buildDate(2017, 6, 9), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Commander Anthology";
|
this.blockName = "Command Zone";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Acidic Slime", 90, Rarity.UNCOMMON, mage.cards.a.AcidicSlime.class));
|
cards.add(new SetCardInfo("Acidic Slime", 90, Rarity.UNCOMMON, mage.cards.a.AcidicSlime.class));
|
||||||
cards.add(new SetCardInfo("Aerie Mystics", 1, Rarity.UNCOMMON, mage.cards.a.AerieMystics.class));
|
cards.add(new SetCardInfo("Aerie Mystics", 1, Rarity.UNCOMMON, mage.cards.a.AerieMystics.class));
|
||||||
cards.add(new SetCardInfo("Aethermage's Touch", 172, Rarity.RARE, mage.cards.a.AethermagesTouch.class));
|
cards.add(new SetCardInfo("Aethermage's Touch", 172, Rarity.RARE, mage.cards.a.AethermagesTouch.class));
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,6 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author rystan
|
* @author rystan
|
||||||
*/
|
*/
|
||||||
public class CommanderAnthologyVolumeII extends ExpansionSet {
|
public class CommanderAnthologyVolumeII extends ExpansionSet {
|
||||||
|
|
@ -17,8 +16,8 @@ public class CommanderAnthologyVolumeII extends ExpansionSet {
|
||||||
}
|
}
|
||||||
|
|
||||||
private CommanderAnthologyVolumeII() {
|
private CommanderAnthologyVolumeII() {
|
||||||
super("Commander Anthology 2018", "CM2", ExpansionSet.buildDate(2018, 6, 8), SetType.SUPPLEMENTAL);
|
super("Commander Anthology Volume II", "CM2", ExpansionSet.buildDate(2018, 6, 8), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Commander Anthology 2018";
|
this.blockName = "Command Zone";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Abzan Falconer", 15, Rarity.UNCOMMON, mage.cards.a.AbzanFalconer.class));
|
cards.add(new SetCardInfo("Abzan Falconer", 15, Rarity.UNCOMMON, mage.cards.a.AbzanFalconer.class));
|
||||||
|
|
|
||||||
|
|
@ -9,15 +9,15 @@ import mage.constants.SetType;
|
||||||
*
|
*
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
public final class AjaniVsNicolBolas extends ExpansionSet {
|
public final class DuelDecksAjaniVsNicolBolas extends ExpansionSet {
|
||||||
|
|
||||||
private static final AjaniVsNicolBolas instance = new AjaniVsNicolBolas();
|
private static final DuelDecksAjaniVsNicolBolas instance = new DuelDecksAjaniVsNicolBolas();
|
||||||
|
|
||||||
public static AjaniVsNicolBolas getInstance() {
|
public static DuelDecksAjaniVsNicolBolas getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private AjaniVsNicolBolas() {
|
private DuelDecksAjaniVsNicolBolas() {
|
||||||
super("Duel Decks: Ajani vs. Nicol Bolas", "DDH", ExpansionSet.buildDate(2011, 9, 2), SetType.SUPPLEMENTAL);
|
super("Duel Decks: Ajani vs. Nicol Bolas", "DDH", ExpansionSet.buildDate(2011, 9, 2), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
package mage.sets;
|
package mage.sets;
|
||||||
|
|
||||||
import mage.cards.ExpansionSet;
|
import mage.cards.ExpansionSet;
|
||||||
|
|
@ -6,22 +5,22 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class AnthologyDivineVsDemonic extends ExpansionSet {
|
public final class DuelDecksAnthologyDivineVsDemonic extends ExpansionSet {
|
||||||
|
|
||||||
private static final AnthologyDivineVsDemonic instance = new AnthologyDivineVsDemonic();
|
private static final DuelDecksAnthologyDivineVsDemonic instance = new DuelDecksAnthologyDivineVsDemonic();
|
||||||
|
|
||||||
public static AnthologyDivineVsDemonic getInstance() {
|
public static DuelDecksAnthologyDivineVsDemonic getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private AnthologyDivineVsDemonic() {
|
private DuelDecksAnthologyDivineVsDemonic() {
|
||||||
super("Duel Decks: Anthology, Divine vs. Demonic", "DD3DVD", ExpansionSet.buildDate(2014, 12, 5),
|
super("Duel Decks: Anthology, Divine vs. Demonic", "DD3DVD", ExpansionSet.buildDate(2014, 12, 5),
|
||||||
SetType.SUPPLEMENTAL);
|
SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks: Anthology";
|
this.blockName = "Duel Decks: Anthology";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Abyssal Gatekeeper", 31, Rarity.COMMON, mage.cards.a.AbyssalGatekeeper.class));
|
cards.add(new SetCardInfo("Abyssal Gatekeeper", 31, Rarity.COMMON, mage.cards.a.AbyssalGatekeeper.class));
|
||||||
cards.add(new SetCardInfo("Abyssal Specter", 40, Rarity.UNCOMMON, mage.cards.a.AbyssalSpecter.class));
|
cards.add(new SetCardInfo("Abyssal Specter", 40, Rarity.UNCOMMON, mage.cards.a.AbyssalSpecter.class));
|
||||||
cards.add(new SetCardInfo("Akroma, Angel of Wrath", 1, Rarity.MYTHIC, mage.cards.a.AkromaAngelOfWrath.class));
|
cards.add(new SetCardInfo("Akroma, Angel of Wrath", 1, Rarity.MYTHIC, mage.cards.a.AkromaAngelOfWrath.class));
|
||||||
|
|
@ -9,15 +9,15 @@ import mage.constants.SetType;
|
||||||
*
|
*
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class AnthologyElvesVsGoblins extends ExpansionSet {
|
public final class DuelDecksAnthologyElvesVsGoblins extends ExpansionSet {
|
||||||
|
|
||||||
private static final AnthologyElvesVsGoblins instance = new AnthologyElvesVsGoblins();
|
private static final DuelDecksAnthologyElvesVsGoblins instance = new DuelDecksAnthologyElvesVsGoblins();
|
||||||
|
|
||||||
public static AnthologyElvesVsGoblins getInstance() {
|
public static DuelDecksAnthologyElvesVsGoblins getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private AnthologyElvesVsGoblins() {
|
private DuelDecksAnthologyElvesVsGoblins() {
|
||||||
super("Duel Decks: Anthology, Elves vs. Goblins", "DD3EVG", ExpansionSet.buildDate(2014, 12, 5),
|
super("Duel Decks: Anthology, Elves vs. Goblins", "DD3EVG", ExpansionSet.buildDate(2014, 12, 5),
|
||||||
SetType.SUPPLEMENTAL);
|
SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks: Anthology";
|
this.blockName = "Duel Decks: Anthology";
|
||||||
|
|
@ -9,15 +9,15 @@ import mage.constants.SetType;
|
||||||
*
|
*
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class AnthologyGarrukVsLiliana extends ExpansionSet {
|
public final class DuelDecksAnthologyGarrukVsLiliana extends ExpansionSet {
|
||||||
|
|
||||||
private static final AnthologyGarrukVsLiliana instance = new AnthologyGarrukVsLiliana();
|
private static final DuelDecksAnthologyGarrukVsLiliana instance = new DuelDecksAnthologyGarrukVsLiliana();
|
||||||
|
|
||||||
public static AnthologyGarrukVsLiliana getInstance() {
|
public static DuelDecksAnthologyGarrukVsLiliana getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private AnthologyGarrukVsLiliana() {
|
private DuelDecksAnthologyGarrukVsLiliana() {
|
||||||
super("Duel Decks: Anthology, Garruk vs. Liliana", "DD3GVL", ExpansionSet.buildDate(2014, 12, 5),
|
super("Duel Decks: Anthology, Garruk vs. Liliana", "DD3GVL", ExpansionSet.buildDate(2014, 12, 5),
|
||||||
SetType.SUPPLEMENTAL);
|
SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks: Anthology";
|
this.blockName = "Duel Decks: Anthology";
|
||||||
|
|
@ -6,22 +6,22 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class AnthologyJaceVsChandra extends ExpansionSet {
|
public final class DuelDecksAnthologyJaceVsChandra extends ExpansionSet {
|
||||||
|
|
||||||
private static final AnthologyJaceVsChandra instance = new AnthologyJaceVsChandra();
|
private static final DuelDecksAnthologyJaceVsChandra instance = new DuelDecksAnthologyJaceVsChandra();
|
||||||
|
|
||||||
public static AnthologyJaceVsChandra getInstance() {
|
public static DuelDecksAnthologyJaceVsChandra getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private AnthologyJaceVsChandra() {
|
private DuelDecksAnthologyJaceVsChandra() {
|
||||||
super("Duel Decks: Anthology, Jace vs. Chandra", "DD3JVC", ExpansionSet.buildDate(2014, 12, 5),
|
super("Duel Decks: Anthology, Jace vs. Chandra", "DD3JVC", ExpansionSet.buildDate(2014, 12, 5),
|
||||||
SetType.SUPPLEMENTAL);
|
SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks: Anthology";
|
this.blockName = "Duel Decks: Anthology";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Aethersnipe", 17, Rarity.COMMON, mage.cards.a.Aethersnipe.class));
|
cards.add(new SetCardInfo("Aethersnipe", 17, Rarity.COMMON, mage.cards.a.Aethersnipe.class));
|
||||||
cards.add(new SetCardInfo("Air Elemental", 13, Rarity.UNCOMMON, mage.cards.a.AirElemental.class));
|
cards.add(new SetCardInfo("Air Elemental", 13, Rarity.UNCOMMON, mage.cards.a.AirElemental.class));
|
||||||
cards.add(new SetCardInfo("Ancestral Vision", 21, Rarity.RARE, mage.cards.a.AncestralVision.class));
|
cards.add(new SetCardInfo("Ancestral Vision", 21, Rarity.RARE, mage.cards.a.AncestralVision.class));
|
||||||
|
|
@ -9,15 +9,15 @@ import mage.constants.SetType;
|
||||||
*
|
*
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class BlessedVsCursed extends ExpansionSet {
|
public final class DuelDecksBlessedVsCursed extends ExpansionSet {
|
||||||
|
|
||||||
private static final BlessedVsCursed instance = new BlessedVsCursed();
|
private static final DuelDecksBlessedVsCursed instance = new DuelDecksBlessedVsCursed();
|
||||||
|
|
||||||
public static BlessedVsCursed getInstance() {
|
public static DuelDecksBlessedVsCursed getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private BlessedVsCursed() {
|
private DuelDecksBlessedVsCursed() {
|
||||||
super("Duel Decks: Blessed vs. Cursed", "DDQ", ExpansionSet.buildDate(2016, 2, 26), SetType.SUPPLEMENTAL);
|
super("Duel Decks: Blessed vs. Cursed", "DDQ", ExpansionSet.buildDate(2016, 2, 26), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
package mage.sets;
|
package mage.sets;
|
||||||
|
|
||||||
import mage.cards.ExpansionSet;
|
import mage.cards.ExpansionSet;
|
||||||
|
|
@ -6,21 +5,21 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
public final class DivineVsDemonic extends ExpansionSet {
|
public final class DuelDecksDivineVsDemonic extends ExpansionSet {
|
||||||
|
|
||||||
private static final DivineVsDemonic instance = new DivineVsDemonic();
|
private static final DuelDecksDivineVsDemonic instance = new DuelDecksDivineVsDemonic();
|
||||||
|
|
||||||
public static DivineVsDemonic getInstance() {
|
public static DuelDecksDivineVsDemonic getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private DivineVsDemonic() {
|
private DuelDecksDivineVsDemonic() {
|
||||||
super("Duel Decks: Divine vs. Demonic", "DDC", ExpansionSet.buildDate(2009, 04, 10), SetType.SUPPLEMENTAL);
|
super("Duel Decks: Divine vs. Demonic", "DDC", ExpansionSet.buildDate(2009, 04, 10), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Abyssal Gatekeeper", 31, Rarity.COMMON, mage.cards.a.AbyssalGatekeeper.class));
|
cards.add(new SetCardInfo("Abyssal Gatekeeper", 31, Rarity.COMMON, mage.cards.a.AbyssalGatekeeper.class));
|
||||||
cards.add(new SetCardInfo("Abyssal Specter", 40, Rarity.UNCOMMON, mage.cards.a.AbyssalSpecter.class));
|
cards.add(new SetCardInfo("Abyssal Specter", 40, Rarity.UNCOMMON, mage.cards.a.AbyssalSpecter.class));
|
||||||
cards.add(new SetCardInfo("Akroma, Angel of Wrath", 1, Rarity.MYTHIC, mage.cards.a.AkromaAngelOfWrath.class));
|
cards.add(new SetCardInfo("Akroma, Angel of Wrath", 1, Rarity.MYTHIC, mage.cards.a.AkromaAngelOfWrath.class));
|
||||||
|
|
@ -7,21 +7,21 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class ElspethVsKiora extends ExpansionSet {
|
public final class DuelDecksElspethVsKiora extends ExpansionSet {
|
||||||
|
|
||||||
private static final ElspethVsKiora instance = new ElspethVsKiora();
|
private static final DuelDecksElspethVsKiora instance = new DuelDecksElspethVsKiora();
|
||||||
|
|
||||||
public static ElspethVsKiora getInstance() {
|
public static DuelDecksElspethVsKiora getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private ElspethVsKiora() {
|
private DuelDecksElspethVsKiora() {
|
||||||
super("Duel Decks: Elspeth vs. Kiora", "DDO", ExpansionSet.buildDate(2015, 2, 27), SetType.SUPPLEMENTAL);
|
super("Duel Decks: Elspeth vs. Kiora", "DDO", ExpansionSet.buildDate(2015, 2, 27), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Accumulated Knowledge", 35, Rarity.COMMON, mage.cards.a.AccumulatedKnowledge.class));
|
cards.add(new SetCardInfo("Accumulated Knowledge", 35, Rarity.COMMON, mage.cards.a.AccumulatedKnowledge.class));
|
||||||
cards.add(new SetCardInfo("Aetherize", 36, Rarity.UNCOMMON, mage.cards.a.Aetherize.class));
|
cards.add(new SetCardInfo("Aetherize", 36, Rarity.UNCOMMON, mage.cards.a.Aetherize.class));
|
||||||
cards.add(new SetCardInfo("Banisher Priest", 2, Rarity.UNCOMMON, mage.cards.b.BanisherPriest.class));
|
cards.add(new SetCardInfo("Banisher Priest", 2, Rarity.UNCOMMON, mage.cards.b.BanisherPriest.class));
|
||||||
|
|
@ -4,18 +4,19 @@ import mage.cards.ExpansionSet;
|
||||||
import mage.constants.Rarity;
|
import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
public final class ElspethVsTezzeret extends ExpansionSet {
|
public final class DuelDecksElspethVsTezzeret extends ExpansionSet {
|
||||||
|
|
||||||
private static final ElspethVsTezzeret instance = new ElspethVsTezzeret();
|
private static final DuelDecksElspethVsTezzeret instance = new DuelDecksElspethVsTezzeret();
|
||||||
|
|
||||||
public static ElspethVsTezzeret getInstance() {
|
public static DuelDecksElspethVsTezzeret getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private ElspethVsTezzeret() {
|
private DuelDecksElspethVsTezzeret() {
|
||||||
super("Duel Decks: Elspeth vs. Tezzeret", "DDF", ExpansionSet.buildDate(2010, 8, 3), SetType.SUPPLEMENTAL);
|
super("Duel Decks: Elspeth vs. Tezzeret", "DDF", ExpansionSet.buildDate(2010, 8, 3), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Abolish", 29, Rarity.UNCOMMON, mage.cards.a.Abolish.class));
|
cards.add(new SetCardInfo("Abolish", 29, Rarity.UNCOMMON, mage.cards.a.Abolish.class));
|
||||||
cards.add(new SetCardInfo("Aether Spellbomb", 61, Rarity.COMMON, mage.cards.a.AetherSpellbomb.class));
|
cards.add(new SetCardInfo("Aether Spellbomb", 61, Rarity.COMMON, mage.cards.a.AetherSpellbomb.class));
|
||||||
cards.add(new SetCardInfo("Angel of Salvation", 20, Rarity.RARE, mage.cards.a.AngelOfSalvation.class));
|
cards.add(new SetCardInfo("Angel of Salvation", 20, Rarity.RARE, mage.cards.a.AngelOfSalvation.class));
|
||||||
|
|
@ -5,21 +5,21 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
public final class ElvesVsGoblins extends ExpansionSet {
|
public final class DuelDecksElvesVsGoblins extends ExpansionSet {
|
||||||
|
|
||||||
private static final ElvesVsGoblins instance = new ElvesVsGoblins();
|
private static final DuelDecksElvesVsGoblins instance = new DuelDecksElvesVsGoblins();
|
||||||
|
|
||||||
public static ElvesVsGoblins getInstance() {
|
public static DuelDecksElvesVsGoblins getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private ElvesVsGoblins() {
|
private DuelDecksElvesVsGoblins() {
|
||||||
super("Duel Decks: Elves vs. Goblins", "EVG", ExpansionSet.buildDate(2007, 11, 16), SetType.SUPPLEMENTAL);
|
super("Duel Decks: Elves vs. Goblins", "EVG", ExpansionSet.buildDate(2007, 11, 16), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Akki Coalflinger", 33, Rarity.UNCOMMON, mage.cards.a.AkkiCoalflinger.class));
|
cards.add(new SetCardInfo("Akki Coalflinger", 33, Rarity.UNCOMMON, mage.cards.a.AkkiCoalflinger.class));
|
||||||
cards.add(new SetCardInfo("Allosaurus Rider", 2, Rarity.RARE, mage.cards.a.AllosaurusRider.class));
|
cards.add(new SetCardInfo("Allosaurus Rider", 2, Rarity.RARE, mage.cards.a.AllosaurusRider.class));
|
||||||
cards.add(new SetCardInfo("Ambush Commander", 1, Rarity.RARE, mage.cards.a.AmbushCommander.class));
|
cards.add(new SetCardInfo("Ambush Commander", 1, Rarity.RARE, mage.cards.a.AmbushCommander.class));
|
||||||
|
|
@ -6,20 +6,20 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author TheElk801
|
* @author TheElk801
|
||||||
*/
|
*/
|
||||||
public final class ElvesVsInventors extends ExpansionSet {
|
public final class DuelDecksElvesVsInventors extends ExpansionSet {
|
||||||
|
|
||||||
private static final ElvesVsInventors instance = new ElvesVsInventors();
|
private static final DuelDecksElvesVsInventors instance = new DuelDecksElvesVsInventors();
|
||||||
|
|
||||||
public static ElvesVsInventors getInstance() {
|
public static DuelDecksElvesVsInventors getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private ElvesVsInventors() {
|
private DuelDecksElvesVsInventors() {
|
||||||
super("Duel Decks: Elves vs. Inventors", "DDU", ExpansionSet.buildDate(2018, 4, 6), SetType.SUPPLEMENTAL);
|
super("Duel Decks: Elves vs. Inventors", "DDU", ExpansionSet.buildDate(2018, 4, 6), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Artificer's Epiphany", 36, Rarity.COMMON, mage.cards.a.ArtificersEpiphany.class));
|
cards.add(new SetCardInfo("Artificer's Epiphany", 36, Rarity.COMMON, mage.cards.a.ArtificersEpiphany.class));
|
||||||
cards.add(new SetCardInfo("Barrage Ogre", 44, Rarity.UNCOMMON, mage.cards.b.BarrageOgre.class));
|
cards.add(new SetCardInfo("Barrage Ogre", 44, Rarity.UNCOMMON, mage.cards.b.BarrageOgre.class));
|
||||||
cards.add(new SetCardInfo("Darksteel Citadel", 65, Rarity.UNCOMMON, mage.cards.d.DarksteelCitadel.class));
|
cards.add(new SetCardInfo("Darksteel Citadel", 65, Rarity.UNCOMMON, mage.cards.d.DarksteelCitadel.class));
|
||||||
|
|
@ -10,21 +10,21 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
public final class GarrukVsLiliana extends ExpansionSet {
|
public final class DuelDecksGarrukVsLiliana extends ExpansionSet {
|
||||||
|
|
||||||
private static final GarrukVsLiliana instance = new GarrukVsLiliana();
|
private static final DuelDecksGarrukVsLiliana instance = new DuelDecksGarrukVsLiliana();
|
||||||
|
|
||||||
public static GarrukVsLiliana getInstance() {
|
public static DuelDecksGarrukVsLiliana getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private GarrukVsLiliana() {
|
private DuelDecksGarrukVsLiliana() {
|
||||||
super("Duel Decks: Garruk vs. Liliana", "DDD", ExpansionSet.buildDate(2009, 10, 30), SetType.SUPPLEMENTAL);
|
super("Duel Decks: Garruk vs. Liliana", "DDD", ExpansionSet.buildDate(2009, 10, 30), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Albino Troll", 3, Rarity.UNCOMMON, mage.cards.a.AlbinoTroll.class));
|
cards.add(new SetCardInfo("Albino Troll", 3, Rarity.UNCOMMON, mage.cards.a.AlbinoTroll.class));
|
||||||
cards.add(new SetCardInfo("Bad Moon", 48, Rarity.RARE, mage.cards.b.BadMoon.class));
|
cards.add(new SetCardInfo("Bad Moon", 48, Rarity.RARE, mage.cards.b.BadMoon.class));
|
||||||
cards.add(new SetCardInfo("Basking Rootwalla", 2, Rarity.COMMON, mage.cards.b.BaskingRootwalla.class));
|
cards.add(new SetCardInfo("Basking Rootwalla", 2, Rarity.COMMON, mage.cards.b.BaskingRootwalla.class));
|
||||||
|
|
@ -6,21 +6,21 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
public final class HeroesVsMonsters extends ExpansionSet {
|
public final class DuelDecksHeroesVsMonsters extends ExpansionSet {
|
||||||
|
|
||||||
private static final HeroesVsMonsters instance = new HeroesVsMonsters();
|
private static final DuelDecksHeroesVsMonsters instance = new DuelDecksHeroesVsMonsters();
|
||||||
|
|
||||||
public static HeroesVsMonsters getInstance() {
|
public static DuelDecksHeroesVsMonsters getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private HeroesVsMonsters() {
|
private DuelDecksHeroesVsMonsters() {
|
||||||
super("Duel Decks: Heroes vs. Monsters", "DDL", ExpansionSet.buildDate(2013, 9, 6), SetType.SUPPLEMENTAL);
|
super("Duel Decks: Heroes vs. Monsters", "DDL", ExpansionSet.buildDate(2013, 9, 6), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Anax and Cymede", 11, Rarity.RARE, mage.cards.a.AnaxAndCymede.class));
|
cards.add(new SetCardInfo("Anax and Cymede", 11, Rarity.RARE, mage.cards.a.AnaxAndCymede.class));
|
||||||
cards.add(new SetCardInfo("Armory Guard", 12, Rarity.COMMON, mage.cards.a.ArmoryGuard.class));
|
cards.add(new SetCardInfo("Armory Guard", 12, Rarity.COMMON, mage.cards.a.ArmoryGuard.class));
|
||||||
cards.add(new SetCardInfo("Auramancer", 9, Rarity.COMMON, mage.cards.a.Auramancer.class));
|
cards.add(new SetCardInfo("Auramancer", 9, Rarity.COMMON, mage.cards.a.Auramancer.class));
|
||||||
|
|
@ -6,21 +6,21 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
public final class IzzetVsGolgari extends ExpansionSet {
|
public final class DuelDecksIzzetVsGolgari extends ExpansionSet {
|
||||||
|
|
||||||
private static final IzzetVsGolgari instance = new IzzetVsGolgari();
|
private static final DuelDecksIzzetVsGolgari instance = new DuelDecksIzzetVsGolgari();
|
||||||
|
|
||||||
public static IzzetVsGolgari getInstance() {
|
public static DuelDecksIzzetVsGolgari getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private IzzetVsGolgari() {
|
private DuelDecksIzzetVsGolgari() {
|
||||||
super("Duel Decks: Izzet vs. Golgari", "DDJ", ExpansionSet.buildDate(2012, 9, 7), SetType.SUPPLEMENTAL);
|
super("Duel Decks: Izzet vs. Golgari", "DDJ", ExpansionSet.buildDate(2012, 9, 7), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Barren Moor", 78, Rarity.COMMON, mage.cards.b.BarrenMoor.class));
|
cards.add(new SetCardInfo("Barren Moor", 78, Rarity.COMMON, mage.cards.b.BarrenMoor.class));
|
||||||
cards.add(new SetCardInfo("Boneyard Wurm", 51, Rarity.UNCOMMON, mage.cards.b.BoneyardWurm.class));
|
cards.add(new SetCardInfo("Boneyard Wurm", 51, Rarity.UNCOMMON, mage.cards.b.BoneyardWurm.class));
|
||||||
cards.add(new SetCardInfo("Brainstorm", 13, Rarity.COMMON, mage.cards.b.Brainstorm.class));
|
cards.add(new SetCardInfo("Brainstorm", 13, Rarity.COMMON, mage.cards.b.Brainstorm.class));
|
||||||
|
|
@ -10,21 +10,21 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
public final class JaceVsChandra extends ExpansionSet {
|
public final class DuelDecksJaceVsChandra extends ExpansionSet {
|
||||||
|
|
||||||
private static final JaceVsChandra instance = new JaceVsChandra();
|
private static final DuelDecksJaceVsChandra instance = new DuelDecksJaceVsChandra();
|
||||||
|
|
||||||
public static JaceVsChandra getInstance() {
|
public static DuelDecksJaceVsChandra getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private JaceVsChandra() {
|
private DuelDecksJaceVsChandra() {
|
||||||
super("Duel Decks: Jace vs. Chandra", "DD2", ExpansionSet.buildDate(2008, 11, 07), SetType.SUPPLEMENTAL);
|
super("Duel Decks: Jace vs. Chandra", "DD2", ExpansionSet.buildDate(2008, 11, 07), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Aethersnipe", 17, Rarity.COMMON, mage.cards.a.Aethersnipe.class));
|
cards.add(new SetCardInfo("Aethersnipe", 17, Rarity.COMMON, mage.cards.a.Aethersnipe.class));
|
||||||
cards.add(new SetCardInfo("Air Elemental", 13, Rarity.UNCOMMON, mage.cards.a.AirElemental.class));
|
cards.add(new SetCardInfo("Air Elemental", 13, Rarity.UNCOMMON, mage.cards.a.AirElemental.class));
|
||||||
cards.add(new SetCardInfo("Ancestral Vision", 21, Rarity.RARE, mage.cards.a.AncestralVision.class));
|
cards.add(new SetCardInfo("Ancestral Vision", 21, Rarity.RARE, mage.cards.a.AncestralVision.class));
|
||||||
|
|
@ -6,21 +6,21 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
public final class JaceVsVraska extends ExpansionSet {
|
public final class DuelDecksJaceVsVraska extends ExpansionSet {
|
||||||
|
|
||||||
private static final JaceVsVraska instance = new JaceVsVraska();
|
private static final DuelDecksJaceVsVraska instance = new DuelDecksJaceVsVraska();
|
||||||
|
|
||||||
public static JaceVsVraska getInstance() {
|
public static DuelDecksJaceVsVraska getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private JaceVsVraska() {
|
private DuelDecksJaceVsVraska() {
|
||||||
super("Duel Decks: Jace vs. Vraska", "DDM", ExpansionSet.buildDate(2014, 3, 14), SetType.SUPPLEMENTAL);
|
super("Duel Decks: Jace vs. Vraska", "DDM", ExpansionSet.buildDate(2014, 3, 14), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Acidic Slime", 64, Rarity.UNCOMMON, mage.cards.a.AcidicSlime.class));
|
cards.add(new SetCardInfo("Acidic Slime", 64, Rarity.UNCOMMON, mage.cards.a.AcidicSlime.class));
|
||||||
cards.add(new SetCardInfo("Aeon Chronicler", 17, Rarity.RARE, mage.cards.a.AeonChronicler.class));
|
cards.add(new SetCardInfo("Aeon Chronicler", 17, Rarity.RARE, mage.cards.a.AeonChronicler.class));
|
||||||
cards.add(new SetCardInfo("Aether Adept", 12, Rarity.COMMON, mage.cards.a.AetherAdept.class));
|
cards.add(new SetCardInfo("Aether Adept", 12, Rarity.COMMON, mage.cards.a.AetherAdept.class));
|
||||||
|
|
@ -6,21 +6,21 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
public final class KnightsVsDragons extends ExpansionSet {
|
public final class DuelDecksKnightsVsDragons extends ExpansionSet {
|
||||||
|
|
||||||
private static final KnightsVsDragons instance = new KnightsVsDragons();
|
private static final DuelDecksKnightsVsDragons instance = new DuelDecksKnightsVsDragons();
|
||||||
|
|
||||||
public static KnightsVsDragons getInstance() {
|
public static DuelDecksKnightsVsDragons getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private KnightsVsDragons() {
|
private DuelDecksKnightsVsDragons() {
|
||||||
super("Duel Decks: Knights vs. Dragons", "DDG", ExpansionSet.buildDate(2011, 4, 1), SetType.SUPPLEMENTAL);
|
super("Duel Decks: Knights vs. Dragons", "DDG", ExpansionSet.buildDate(2011, 4, 1), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Alaborn Cavalier", 18, Rarity.UNCOMMON, mage.cards.a.AlabornCavalier.class));
|
cards.add(new SetCardInfo("Alaborn Cavalier", 18, Rarity.UNCOMMON, mage.cards.a.AlabornCavalier.class));
|
||||||
cards.add(new SetCardInfo("Armillary Sphere", 62, Rarity.COMMON, mage.cards.a.ArmillarySphere.class));
|
cards.add(new SetCardInfo("Armillary Sphere", 62, Rarity.COMMON, mage.cards.a.ArmillarySphere.class));
|
||||||
cards.add(new SetCardInfo("Benalish Lancer", 12, Rarity.COMMON, mage.cards.b.BenalishLancer.class));
|
cards.add(new SetCardInfo("Benalish Lancer", 12, Rarity.COMMON, mage.cards.b.BenalishLancer.class));
|
||||||
|
|
@ -6,18 +6,17 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class MerfolkVsGoblins extends ExpansionSet {
|
public final class DuelDecksMerfolkVsGoblins extends ExpansionSet {
|
||||||
|
|
||||||
private static final MerfolkVsGoblins instance = new MerfolkVsGoblins();
|
private static final DuelDecksMerfolkVsGoblins instance = new DuelDecksMerfolkVsGoblins();
|
||||||
|
|
||||||
public static MerfolkVsGoblins getInstance() {
|
public static DuelDecksMerfolkVsGoblins getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private MerfolkVsGoblins() {
|
private DuelDecksMerfolkVsGoblins() {
|
||||||
super("Duel Decks: Merfolk vs. Goblins", "DDT", ExpansionSet.buildDate(2017, 11, 10), SetType.SUPPLEMENTAL);
|
super("Duel Decks: Merfolk vs. Goblins", "DDT", ExpansionSet.buildDate(2017, 11, 10), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
@ -8,18 +8,19 @@ import mage.constants.SetType;
|
||||||
*
|
*
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class MindVsMight extends ExpansionSet {
|
public final class DuelDecksMindVsMight extends ExpansionSet {
|
||||||
|
|
||||||
private static final MindVsMight instance = new MindVsMight();
|
private static final DuelDecksMindVsMight instance = new DuelDecksMindVsMight();
|
||||||
|
|
||||||
public static MindVsMight getInstance() {
|
public static DuelDecksMindVsMight getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private MindVsMight() {
|
private DuelDecksMindVsMight() {
|
||||||
super("Duel Decks: Mind vs. Might", "DDS", ExpansionSet.buildDate(2017, 3, 31), SetType.SUPPLEMENTAL);
|
super("Duel Decks: Mind vs. Might", "DDS", ExpansionSet.buildDate(2017, 3, 31), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Ambassador Oak", 42, Rarity.COMMON, mage.cards.a.AmbassadorOak.class));
|
cards.add(new SetCardInfo("Ambassador Oak", 42, Rarity.COMMON, mage.cards.a.AmbassadorOak.class));
|
||||||
cards.add(new SetCardInfo("Beacon of Destruction", 35, Rarity.RARE, mage.cards.b.BeaconOfDestruction.class));
|
cards.add(new SetCardInfo("Beacon of Destruction", 35, Rarity.RARE, mage.cards.b.BeaconOfDestruction.class));
|
||||||
cards.add(new SetCardInfo("Beacon of Tomorrows", 2, Rarity.RARE, mage.cards.b.BeaconOfTomorrows.class));
|
cards.add(new SetCardInfo("Beacon of Tomorrows", 2, Rarity.RARE, mage.cards.b.BeaconOfTomorrows.class));
|
||||||
|
|
@ -5,18 +5,17 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class NissaVsObNixilis extends ExpansionSet {
|
public final class DuelDecksNissaVsObNixilis extends ExpansionSet {
|
||||||
|
|
||||||
private static final NissaVsObNixilis instance = new NissaVsObNixilis();
|
private static final DuelDecksNissaVsObNixilis instance = new DuelDecksNissaVsObNixilis();
|
||||||
|
|
||||||
public static NissaVsObNixilis getInstance() {
|
public static DuelDecksNissaVsObNixilis getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private NissaVsObNixilis() {
|
private DuelDecksNissaVsObNixilis() {
|
||||||
super("Duel Decks: Nissa vs. Ob Nixilis", "DDR", ExpansionSet.buildDate(2016, 9, 2), SetType.SUPPLEMENTAL);
|
super("Duel Decks: Nissa vs. Ob Nixilis", "DDR", ExpansionSet.buildDate(2016, 9, 2), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
@ -6,22 +6,22 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
public final class PhyrexiaVsTheCoalition extends ExpansionSet {
|
public final class DuelDecksPhyrexiaVsTheCoalition extends ExpansionSet {
|
||||||
|
|
||||||
private static final PhyrexiaVsTheCoalition instance = new PhyrexiaVsTheCoalition();
|
private static final DuelDecksPhyrexiaVsTheCoalition instance = new DuelDecksPhyrexiaVsTheCoalition();
|
||||||
|
|
||||||
public static PhyrexiaVsTheCoalition getInstance() {
|
public static DuelDecksPhyrexiaVsTheCoalition getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private PhyrexiaVsTheCoalition() {
|
private DuelDecksPhyrexiaVsTheCoalition() {
|
||||||
super("Duel Decks: Phyrexia vs. the Coalition", "DDE", ExpansionSet.buildDate(2010, 3, 19),
|
super("Duel Decks: Phyrexia vs. the Coalition", "DDE", ExpansionSet.buildDate(2010, 3, 19),
|
||||||
SetType.SUPPLEMENTAL);
|
SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Allied Strategies", 63, Rarity.UNCOMMON, mage.cards.a.AlliedStrategies.class));
|
cards.add(new SetCardInfo("Allied Strategies", 63, Rarity.UNCOMMON, mage.cards.a.AlliedStrategies.class));
|
||||||
cards.add(new SetCardInfo("Armadillo Cloak", 58, Rarity.COMMON, mage.cards.a.ArmadilloCloak.class));
|
cards.add(new SetCardInfo("Armadillo Cloak", 58, Rarity.COMMON, mage.cards.a.ArmadilloCloak.class));
|
||||||
cards.add(new SetCardInfo("Bone Shredder", 5, Rarity.UNCOMMON, mage.cards.b.BoneShredder.class));
|
cards.add(new SetCardInfo("Bone Shredder", 5, Rarity.UNCOMMON, mage.cards.b.BoneShredder.class));
|
||||||
|
|
@ -6,21 +6,21 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
public final class SorinVsTibalt extends ExpansionSet {
|
public final class DuelDecksSorinVsTibalt extends ExpansionSet {
|
||||||
|
|
||||||
private static final SorinVsTibalt instance = new SorinVsTibalt();
|
private static final DuelDecksSorinVsTibalt instance = new DuelDecksSorinVsTibalt();
|
||||||
|
|
||||||
public static SorinVsTibalt getInstance() {
|
public static DuelDecksSorinVsTibalt getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private SorinVsTibalt() {
|
private DuelDecksSorinVsTibalt() {
|
||||||
super("Duel Decks: Sorin vs. Tibalt", "DDK", ExpansionSet.buildDate(2013, 3, 15), SetType.SUPPLEMENTAL);
|
super("Duel Decks: Sorin vs. Tibalt", "DDK", ExpansionSet.buildDate(2013, 3, 15), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Absorb Vis", 31, Rarity.COMMON, mage.cards.a.AbsorbVis.class));
|
cards.add(new SetCardInfo("Absorb Vis", 31, Rarity.COMMON, mage.cards.a.AbsorbVis.class));
|
||||||
cards.add(new SetCardInfo("Akoum Refuge", 73, Rarity.UNCOMMON, mage.cards.a.AkoumRefuge.class));
|
cards.add(new SetCardInfo("Akoum Refuge", 73, Rarity.UNCOMMON, mage.cards.a.AkoumRefuge.class));
|
||||||
cards.add(new SetCardInfo("Ancient Craving", 28, Rarity.RARE, mage.cards.a.AncientCraving.class));
|
cards.add(new SetCardInfo("Ancient Craving", 28, Rarity.RARE, mage.cards.a.AncientCraving.class));
|
||||||
|
|
@ -6,21 +6,21 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
public final class SpeedVsCunning extends ExpansionSet {
|
public final class DuelDecksSpeedVsCunning extends ExpansionSet {
|
||||||
|
|
||||||
private static final SpeedVsCunning instance = new SpeedVsCunning();
|
private static final DuelDecksSpeedVsCunning instance = new DuelDecksSpeedVsCunning();
|
||||||
|
|
||||||
public static SpeedVsCunning getInstance() {
|
public static DuelDecksSpeedVsCunning getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private SpeedVsCunning() {
|
private DuelDecksSpeedVsCunning() {
|
||||||
super("Duel Decks: Speed vs. Cunning", "DDN", ExpansionSet.buildDate(2014, 9, 5), SetType.SUPPLEMENTAL);
|
super("Duel Decks: Speed vs. Cunning", "DDN", ExpansionSet.buildDate(2014, 9, 5), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Act of Treason", 26, Rarity.COMMON, mage.cards.a.ActOfTreason.class));
|
cards.add(new SetCardInfo("Act of Treason", 26, Rarity.COMMON, mage.cards.a.ActOfTreason.class));
|
||||||
cards.add(new SetCardInfo("Aquamorph Entity", 54, Rarity.COMMON, mage.cards.a.AquamorphEntity.class));
|
cards.add(new SetCardInfo("Aquamorph Entity", 54, Rarity.COMMON, mage.cards.a.AquamorphEntity.class));
|
||||||
cards.add(new SetCardInfo("Arcanis the Omnipotent", 42, Rarity.MYTHIC, mage.cards.a.ArcanisTheOmnipotent.class));
|
cards.add(new SetCardInfo("Arcanis the Omnipotent", 42, Rarity.MYTHIC, mage.cards.a.ArcanisTheOmnipotent.class));
|
||||||
|
|
@ -5,21 +5,21 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
public final class VenserVsKoth extends ExpansionSet {
|
public final class DuelDecksVenserVsKoth extends ExpansionSet {
|
||||||
|
|
||||||
private static final VenserVsKoth instance = new VenserVsKoth();
|
private static final DuelDecksVenserVsKoth instance = new DuelDecksVenserVsKoth();
|
||||||
|
|
||||||
public static VenserVsKoth getInstance() {
|
public static DuelDecksVenserVsKoth getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private VenserVsKoth() {
|
private DuelDecksVenserVsKoth() {
|
||||||
super("Duel Decks: Venser vs. Koth", "DDI", ExpansionSet.buildDate(2012, 3, 30), SetType.SUPPLEMENTAL);
|
super("Duel Decks: Venser vs. Koth", "DDI", ExpansionSet.buildDate(2012, 3, 30), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Aether Membrane", 48, Rarity.UNCOMMON, mage.cards.a.AetherMembrane.class));
|
cards.add(new SetCardInfo("Aether Membrane", 48, Rarity.UNCOMMON, mage.cards.a.AetherMembrane.class));
|
||||||
cards.add(new SetCardInfo("Angelic Shield", 27, Rarity.UNCOMMON, mage.cards.a.AngelicShield.class));
|
cards.add(new SetCardInfo("Angelic Shield", 27, Rarity.UNCOMMON, mage.cards.a.AngelicShield.class));
|
||||||
cards.add(new SetCardInfo("Anger", 51, Rarity.UNCOMMON, mage.cards.a.Anger.class));
|
cards.add(new SetCardInfo("Anger", 51, Rarity.UNCOMMON, mage.cards.a.Anger.class));
|
||||||
|
|
@ -5,21 +5,21 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class ZendikarVsEldrazi extends ExpansionSet {
|
public final class DuelDecksZendikarVsEldrazi extends ExpansionSet {
|
||||||
|
|
||||||
private static final ZendikarVsEldrazi instance = new ZendikarVsEldrazi();
|
private static final DuelDecksZendikarVsEldrazi instance = new DuelDecksZendikarVsEldrazi();
|
||||||
|
|
||||||
public static ZendikarVsEldrazi getInstance() {
|
public static DuelDecksZendikarVsEldrazi getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private ZendikarVsEldrazi() {
|
private DuelDecksZendikarVsEldrazi() {
|
||||||
super("Duel Decks: Zendikar vs. Eldrazi", "DDP", ExpansionSet.buildDate(2015, 8, 28), SetType.SUPPLEMENTAL);
|
super("Duel Decks: Zendikar vs. Eldrazi", "DDP", ExpansionSet.buildDate(2015, 8, 28), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Duel Decks";
|
this.blockName = "Duel Decks";
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Affa Guard Hound", 2, Rarity.UNCOMMON, mage.cards.a.AffaGuardHound.class));
|
cards.add(new SetCardInfo("Affa Guard Hound", 2, Rarity.UNCOMMON, mage.cards.a.AffaGuardHound.class));
|
||||||
cards.add(new SetCardInfo("Akoum Refuge", 67, Rarity.UNCOMMON, mage.cards.a.AkoumRefuge.class));
|
cards.add(new SetCardInfo("Akoum Refuge", 67, Rarity.UNCOMMON, mage.cards.a.AkoumRefuge.class));
|
||||||
cards.add(new SetCardInfo("Artisan of Kozilek", 42, Rarity.UNCOMMON, mage.cards.a.ArtisanOfKozilek.class));
|
cards.add(new SetCardInfo("Artisan of Kozilek", 42, Rarity.UNCOMMON, mage.cards.a.ArtisanOfKozilek.class));
|
||||||
|
|
@ -6,20 +6,20 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class FTVAngels extends ExpansionSet {
|
public final class FromTheVaultAngels extends ExpansionSet {
|
||||||
|
|
||||||
private static final FTVAngels instance = new FTVAngels();
|
private static final FromTheVaultAngels instance = new FromTheVaultAngels();
|
||||||
|
|
||||||
public static FTVAngels getInstance() {
|
public static FromTheVaultAngels getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private FTVAngels() {
|
private FromTheVaultAngels() {
|
||||||
super("From the Vault: Angels", "V15", ExpansionSet.buildDate(2015, 8, 21), SetType.SUPPLEMENTAL);
|
super("From the Vault: Angels", "V15", ExpansionSet.buildDate(2015, 8, 21), SetType.SUPPLEMENTAL);
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Akroma, Angel of Fury", 1, Rarity.MYTHIC, mage.cards.a.AkromaAngelOfFury.class));
|
cards.add(new SetCardInfo("Akroma, Angel of Fury", 1, Rarity.MYTHIC, mage.cards.a.AkromaAngelOfFury.class));
|
||||||
cards.add(new SetCardInfo("Akroma, Angel of Wrath", 2, Rarity.MYTHIC, mage.cards.a.AkromaAngelOfWrath.class));
|
cards.add(new SetCardInfo("Akroma, Angel of Wrath", 2, Rarity.MYTHIC, mage.cards.a.AkromaAngelOfWrath.class));
|
||||||
cards.add(new SetCardInfo("Archangel of Strife", 3, Rarity.MYTHIC, mage.cards.a.ArchangelOfStrife.class));
|
cards.add(new SetCardInfo("Archangel of Strife", 3, Rarity.MYTHIC, mage.cards.a.ArchangelOfStrife.class));
|
||||||
|
|
@ -6,20 +6,20 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class FTVAnnihilation extends ExpansionSet {
|
public final class FromTheVaultAnnihilation extends ExpansionSet {
|
||||||
|
|
||||||
private static final FTVAnnihilation instance = new FTVAnnihilation();
|
private static final FromTheVaultAnnihilation instance = new FromTheVaultAnnihilation();
|
||||||
|
|
||||||
public static FTVAnnihilation getInstance() {
|
public static FromTheVaultAnnihilation getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private FTVAnnihilation() {
|
private FromTheVaultAnnihilation() {
|
||||||
super("From the Vault: Annihilation", "V14", ExpansionSet.buildDate(2014, 8, 22), SetType.SUPPLEMENTAL);
|
super("From the Vault: Annihilation", "V14", ExpansionSet.buildDate(2014, 8, 22), SetType.SUPPLEMENTAL);
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Armageddon", 1, Rarity.MYTHIC, mage.cards.a.Armageddon.class));
|
cards.add(new SetCardInfo("Armageddon", 1, Rarity.MYTHIC, mage.cards.a.Armageddon.class));
|
||||||
cards.add(new SetCardInfo("Burning of Xinye", 2, Rarity.MYTHIC, mage.cards.b.BurningOfXinye.class));
|
cards.add(new SetCardInfo("Burning of Xinye", 2, Rarity.MYTHIC, mage.cards.b.BurningOfXinye.class));
|
||||||
cards.add(new SetCardInfo("Cataclysm", 3, Rarity.MYTHIC, mage.cards.c.Cataclysm.class));
|
cards.add(new SetCardInfo("Cataclysm", 3, Rarity.MYTHIC, mage.cards.c.Cataclysm.class));
|
||||||
|
|
@ -9,15 +9,15 @@ import mage.constants.SetType;
|
||||||
*
|
*
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class FTVDragons extends ExpansionSet {
|
public final class FromTheVaultDragons extends ExpansionSet {
|
||||||
|
|
||||||
private static final FTVDragons instance = new FTVDragons();
|
private static final FromTheVaultDragons instance = new FromTheVaultDragons();
|
||||||
|
|
||||||
public static FTVDragons getInstance() {
|
public static FromTheVaultDragons getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private FTVDragons() {
|
private FromTheVaultDragons() {
|
||||||
super("From the Vault: Dragons", "DRB", ExpansionSet.buildDate(2008, 8, 29), SetType.SUPPLEMENTAL);
|
super("From the Vault: Dragons", "DRB", ExpansionSet.buildDate(2008, 8, 29), SetType.SUPPLEMENTAL);
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
cards.add(new SetCardInfo("Bladewing the Risen", 1, Rarity.RARE, mage.cards.b.BladewingTheRisen.class));
|
cards.add(new SetCardInfo("Bladewing the Risen", 1, Rarity.RARE, mage.cards.b.BladewingTheRisen.class));
|
||||||
|
|
@ -6,20 +6,20 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class FTVExiled extends ExpansionSet {
|
public final class FromTheVaultExiled extends ExpansionSet {
|
||||||
|
|
||||||
private static final FTVExiled instance = new FTVExiled();
|
private static final FromTheVaultExiled instance = new FromTheVaultExiled();
|
||||||
|
|
||||||
public static FTVExiled getInstance() {
|
public static FromTheVaultExiled getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private FTVExiled() {
|
private FromTheVaultExiled() {
|
||||||
super("From the Vault: Exiled", "V09", ExpansionSet.buildDate(2009, 8, 28), SetType.SUPPLEMENTAL);
|
super("From the Vault: Exiled", "V09", ExpansionSet.buildDate(2009, 8, 28), SetType.SUPPLEMENTAL);
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Balance", 1, Rarity.MYTHIC, mage.cards.b.Balance.class));
|
cards.add(new SetCardInfo("Balance", 1, Rarity.MYTHIC, mage.cards.b.Balance.class));
|
||||||
cards.add(new SetCardInfo("Berserk", 2, Rarity.MYTHIC, mage.cards.b.Berserk.class));
|
cards.add(new SetCardInfo("Berserk", 2, Rarity.MYTHIC, mage.cards.b.Berserk.class));
|
||||||
cards.add(new SetCardInfo("Channel", 3, Rarity.MYTHIC, mage.cards.c.Channel.class));
|
cards.add(new SetCardInfo("Channel", 3, Rarity.MYTHIC, mage.cards.c.Channel.class));
|
||||||
|
|
@ -6,20 +6,20 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class FTVLegends extends ExpansionSet {
|
public final class FromTheVaultLegends extends ExpansionSet {
|
||||||
|
|
||||||
private static final FTVLegends instance = new FTVLegends();
|
private static final FromTheVaultLegends instance = new FromTheVaultLegends();
|
||||||
|
|
||||||
public static FTVLegends getInstance() {
|
public static FromTheVaultLegends getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private FTVLegends() {
|
private FromTheVaultLegends() {
|
||||||
super("From the Vault: Legends", "V11", ExpansionSet.buildDate(2011, 8, 26), SetType.SUPPLEMENTAL);
|
super("From the Vault: Legends", "V11", ExpansionSet.buildDate(2011, 8, 26), SetType.SUPPLEMENTAL);
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Cao Cao, Lord of Wei", 1, Rarity.MYTHIC, mage.cards.c.CaoCaoLordOfWei.class));
|
cards.add(new SetCardInfo("Cao Cao, Lord of Wei", 1, Rarity.MYTHIC, mage.cards.c.CaoCaoLordOfWei.class));
|
||||||
cards.add(new SetCardInfo("Captain Sisay", 2, Rarity.MYTHIC, mage.cards.c.CaptainSisay.class));
|
cards.add(new SetCardInfo("Captain Sisay", 2, Rarity.MYTHIC, mage.cards.c.CaptainSisay.class));
|
||||||
cards.add(new SetCardInfo("Doran, the Siege Tower", 3, Rarity.MYTHIC, mage.cards.d.DoranTheSiegeTower.class));
|
cards.add(new SetCardInfo("Doran, the Siege Tower", 3, Rarity.MYTHIC, mage.cards.d.DoranTheSiegeTower.class));
|
||||||
|
|
@ -6,20 +6,20 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class FTVLore extends ExpansionSet {
|
public final class FromTheVaultLore extends ExpansionSet {
|
||||||
|
|
||||||
private static final FTVLore instance = new FTVLore();
|
private static final FromTheVaultLore instance = new FromTheVaultLore();
|
||||||
|
|
||||||
public static FTVLore getInstance() {
|
public static FromTheVaultLore getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private FTVLore() {
|
private FromTheVaultLore() {
|
||||||
super("From the Vault: Lore", "V16", ExpansionSet.buildDate(2016, 8, 19), SetType.SUPPLEMENTAL);
|
super("From the Vault: Lore", "V16", ExpansionSet.buildDate(2016, 8, 19), SetType.SUPPLEMENTAL);
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Beseech the Queen", 1, Rarity.MYTHIC, mage.cards.b.BeseechTheQueen.class));
|
cards.add(new SetCardInfo("Beseech the Queen", 1, Rarity.MYTHIC, mage.cards.b.BeseechTheQueen.class));
|
||||||
cards.add(new SetCardInfo("Cabal Ritual", 2, Rarity.MYTHIC, mage.cards.c.CabalRitual.class));
|
cards.add(new SetCardInfo("Cabal Ritual", 2, Rarity.MYTHIC, mage.cards.c.CabalRitual.class));
|
||||||
cards.add(new SetCardInfo("Conflux", 3, Rarity.MYTHIC, mage.cards.c.Conflux.class));
|
cards.add(new SetCardInfo("Conflux", 3, Rarity.MYTHIC, mage.cards.c.Conflux.class));
|
||||||
|
|
@ -6,20 +6,20 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class FTVRealms extends ExpansionSet {
|
public final class FromTheVaultRealms extends ExpansionSet {
|
||||||
|
|
||||||
private static final FTVRealms instance = new FTVRealms();
|
private static final FromTheVaultRealms instance = new FromTheVaultRealms();
|
||||||
|
|
||||||
public static FTVRealms getInstance() {
|
public static FromTheVaultRealms getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private FTVRealms() {
|
private FromTheVaultRealms() {
|
||||||
super("From the Vault: Realms", "V12", ExpansionSet.buildDate(2012, 8, 31), SetType.SUPPLEMENTAL);
|
super("From the Vault: Realms", "V12", ExpansionSet.buildDate(2012, 8, 31), SetType.SUPPLEMENTAL);
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Ancient Tomb", 1, Rarity.MYTHIC, mage.cards.a.AncientTomb.class));
|
cards.add(new SetCardInfo("Ancient Tomb", 1, Rarity.MYTHIC, mage.cards.a.AncientTomb.class));
|
||||||
cards.add(new SetCardInfo("Boseiju, Who Shelters All", 2, Rarity.MYTHIC, mage.cards.b.BoseijuWhoSheltersAll.class));
|
cards.add(new SetCardInfo("Boseiju, Who Shelters All", 2, Rarity.MYTHIC, mage.cards.b.BoseijuWhoSheltersAll.class));
|
||||||
cards.add(new SetCardInfo("Cephalid Coliseum", 3, Rarity.MYTHIC, mage.cards.c.CephalidColiseum.class));
|
cards.add(new SetCardInfo("Cephalid Coliseum", 3, Rarity.MYTHIC, mage.cards.c.CephalidColiseum.class));
|
||||||
|
|
@ -6,20 +6,20 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class FTVRelics extends ExpansionSet {
|
public final class FromTheVaultRelics extends ExpansionSet {
|
||||||
|
|
||||||
private static final FTVRelics instance = new FTVRelics();
|
private static final FromTheVaultRelics instance = new FromTheVaultRelics();
|
||||||
|
|
||||||
public static FTVRelics getInstance() {
|
public static FromTheVaultRelics getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private FTVRelics() {
|
private FromTheVaultRelics() {
|
||||||
super("From the Vault: Relics", "V10", ExpansionSet.buildDate(2010, 8, 27), SetType.SUPPLEMENTAL);
|
super("From the Vault: Relics", "V10", ExpansionSet.buildDate(2010, 8, 27), SetType.SUPPLEMENTAL);
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Aether Vial", 1, Rarity.MYTHIC, mage.cards.a.AetherVial.class));
|
cards.add(new SetCardInfo("Aether Vial", 1, Rarity.MYTHIC, mage.cards.a.AetherVial.class));
|
||||||
cards.add(new SetCardInfo("Black Vise", 2, Rarity.MYTHIC, mage.cards.b.BlackVise.class));
|
cards.add(new SetCardInfo("Black Vise", 2, Rarity.MYTHIC, mage.cards.b.BlackVise.class));
|
||||||
cards.add(new SetCardInfo("Isochron Scepter", 3, Rarity.MYTHIC, mage.cards.i.IsochronScepter.class));
|
cards.add(new SetCardInfo("Isochron Scepter", 3, Rarity.MYTHIC, mage.cards.i.IsochronScepter.class));
|
||||||
|
|
@ -6,20 +6,20 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class FTVTransform extends ExpansionSet {
|
public final class FromTheVaultTransform extends ExpansionSet {
|
||||||
|
|
||||||
private static final FTVTransform instance = new FTVTransform();
|
private static final FromTheVaultTransform instance = new FromTheVaultTransform();
|
||||||
|
|
||||||
public static FTVTransform getInstance() {
|
public static FromTheVaultTransform getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private FTVTransform() {
|
private FromTheVaultTransform() {
|
||||||
super("From the Vault: Transform", "V17", ExpansionSet.buildDate(2017, 11, 24), SetType.SUPPLEMENTAL);
|
super("From the Vault: Transform", "V17", ExpansionSet.buildDate(2017, 11, 24), SetType.SUPPLEMENTAL);
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Archangel Avacyn", 1, Rarity.MYTHIC, mage.cards.a.ArchangelAvacyn.class));
|
cards.add(new SetCardInfo("Archangel Avacyn", 1, Rarity.MYTHIC, mage.cards.a.ArchangelAvacyn.class));
|
||||||
cards.add(new SetCardInfo("Avacyn, the Purifier", 1001, Rarity.MYTHIC, mage.cards.a.AvacynThePurifier.class));
|
cards.add(new SetCardInfo("Avacyn, the Purifier", 1001, Rarity.MYTHIC, mage.cards.a.AvacynThePurifier.class));
|
||||||
cards.add(new SetCardInfo("Arguel's Blood Fast", 2, Rarity.MYTHIC, mage.cards.a.ArguelsBloodFast.class));
|
cards.add(new SetCardInfo("Arguel's Blood Fast", 2, Rarity.MYTHIC, mage.cards.a.ArguelsBloodFast.class));
|
||||||
|
|
@ -5,20 +5,20 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class FTVTwenty extends ExpansionSet {
|
public final class FromTheVaultTwenty extends ExpansionSet {
|
||||||
|
|
||||||
private static final FTVTwenty instance = new FTVTwenty();
|
private static final FromTheVaultTwenty instance = new FromTheVaultTwenty();
|
||||||
|
|
||||||
public static FTVTwenty getInstance() {
|
public static FromTheVaultTwenty getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private FTVTwenty() {
|
private FromTheVaultTwenty() {
|
||||||
super("From the Vault: Twenty", "V13", ExpansionSet.buildDate(2013, 8, 23), SetType.SUPPLEMENTAL);
|
super("From the Vault: Twenty", "V13", ExpansionSet.buildDate(2013, 8, 23), SetType.SUPPLEMENTAL);
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Akroma's Vengeance", 11, Rarity.MYTHIC, mage.cards.a.AkromasVengeance.class));
|
cards.add(new SetCardInfo("Akroma's Vengeance", 11, Rarity.MYTHIC, mage.cards.a.AkromasVengeance.class));
|
||||||
cards.add(new SetCardInfo("Chainer's Edict", 10, Rarity.MYTHIC, mage.cards.c.ChainersEdict.class));
|
cards.add(new SetCardInfo("Chainer's Edict", 10, Rarity.MYTHIC, mage.cards.c.ChainersEdict.class));
|
||||||
cards.add(new SetCardInfo("Chameleon Colossus", 16, Rarity.MYTHIC, mage.cards.c.ChameleonColossus.class));
|
cards.add(new SetCardInfo("Chameleon Colossus", 16, Rarity.MYTHIC, mage.cards.c.ChameleonColossus.class));
|
||||||
|
|
@ -5,21 +5,21 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author TheElk801
|
* @author TheElk801
|
||||||
*/
|
*/
|
||||||
public final class JiangYangguMuYanling extends ExpansionSet {
|
public final class GlobalSeriesJiangYangguAndMuYanling extends ExpansionSet {
|
||||||
|
|
||||||
private static final JiangYangguMuYanling instance = new JiangYangguMuYanling();
|
private static final GlobalSeriesJiangYangguAndMuYanling instance = new GlobalSeriesJiangYangguAndMuYanling();
|
||||||
|
|
||||||
public static JiangYangguMuYanling getInstance() {
|
public static GlobalSeriesJiangYangguAndMuYanling getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private JiangYangguMuYanling() {
|
private GlobalSeriesJiangYangguAndMuYanling() {
|
||||||
super("Global Series: Jiang Yanggu & Mu Yanling", "GS1", ExpansionSet.buildDate(2018, 6, 22), SetType.SUPPLEMENTAL_STANDARD_LEGAL);
|
super("Global Series: Jiang Yanggu & Mu Yanling", "GS1", ExpansionSet.buildDate(2018, 6, 22), SetType.SUPPLEMENTAL_STANDARD_LEGAL);
|
||||||
this.blockName = "Global Series";
|
this.blockName = "Global Series";
|
||||||
this.hasBasicLands = true;
|
this.hasBasicLands = true;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Aggressive Instinct", 34, Rarity.COMMON, mage.cards.a.AggressiveInstinct.class));
|
cards.add(new SetCardInfo("Aggressive Instinct", 34, Rarity.COMMON, mage.cards.a.AggressiveInstinct.class));
|
||||||
cards.add(new SetCardInfo("Ancestor Dragon", 12, Rarity.RARE, mage.cards.a.AncestorDragon.class));
|
cards.add(new SetCardInfo("Ancestor Dragon", 12, Rarity.RARE, mage.cards.a.AncestorDragon.class));
|
||||||
cards.add(new SetCardInfo("Armored Whirl Turtle", 7, Rarity.COMMON, mage.cards.a.ArmoredWhirlTurtle.class));
|
cards.add(new SetCardInfo("Armored Whirl Turtle", 7, Rarity.COMMON, mage.cards.a.ArmoredWhirlTurtle.class));
|
||||||
|
|
@ -6,18 +6,17 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class GrandPrix extends ExpansionSet {
|
public final class GrandPrixPromos extends ExpansionSet {
|
||||||
|
|
||||||
private static final GrandPrix instance = new GrandPrix();
|
private static final GrandPrixPromos instance = new GrandPrixPromos();
|
||||||
|
|
||||||
public static GrandPrix getInstance() {
|
public static GrandPrixPromos getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private GrandPrix() {
|
private GrandPrixPromos() {
|
||||||
super("Grand Prix Promos", "GPX", ExpansionSet.buildDate(2011, 6, 17), SetType.PROMOTIONAL);
|
super("Grand Prix Promos", "GPX", ExpansionSet.buildDate(2011, 6, 17), SetType.PROMOTIONAL);
|
||||||
this.hasBoosters = false;
|
this.hasBoosters = false;
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
@ -9,15 +9,15 @@ import mage.constants.SetType;
|
||||||
*
|
*
|
||||||
* @author Saga
|
* @author Saga
|
||||||
*/
|
*/
|
||||||
public final class HasconPromo2017 extends ExpansionSet {
|
public final class HASCONPromo2017 extends ExpansionSet {
|
||||||
|
|
||||||
private static final HasconPromo2017 instance = new HasconPromo2017();
|
private static final HASCONPromo2017 instance = new HASCONPromo2017();
|
||||||
|
|
||||||
public static HasconPromo2017 getInstance() {
|
public static HASCONPromo2017 getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private HasconPromo2017() {
|
private HASCONPromo2017() {
|
||||||
super("HASCON Promo 2017", "H17", ExpansionSet.buildDate(2017, 9, 8), SetType.JOKESET);
|
super("HASCON Promo 2017", "H17", ExpansionSet.buildDate(2017, 9, 8), SetType.JOKESET);
|
||||||
cards.add(new ExpansionSet.SetCardInfo("Grimlock, Dinobot Leader", "1a", Rarity.MYTHIC, mage.cards.g.GrimlockDinobotLeader.class));
|
cards.add(new ExpansionSet.SetCardInfo("Grimlock, Dinobot Leader", "1a", Rarity.MYTHIC, mage.cards.g.GrimlockDinobotLeader.class));
|
||||||
cards.add(new ExpansionSet.SetCardInfo("Grimlock, Ferocious King", "1b", Rarity.MYTHIC, mage.cards.g.GrimlockFerociousKing.class));
|
cards.add(new ExpansionSet.SetCardInfo("Grimlock, Ferocious King", "1b", Rarity.MYTHIC, mage.cards.g.GrimlockFerociousKing.class));
|
||||||
|
|
|
||||||
|
|
@ -5,20 +5,20 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
public final class Planechase2012 extends ExpansionSet {
|
public final class Planechase2012Edition extends ExpansionSet {
|
||||||
|
|
||||||
private static final Planechase2012 instance = new Planechase2012();
|
private static final Planechase2012Edition instance = new Planechase2012Edition();
|
||||||
|
|
||||||
public static Planechase2012 getInstance() {
|
public static Planechase2012Edition getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Planechase2012() {
|
private Planechase2012Edition() {
|
||||||
super("Planechase 2012 Edition", "PC2", ExpansionSet.buildDate(2012, 6, 1), SetType.SUPPLEMENTAL);
|
super("Planechase 2012 Edition", "PC2", ExpansionSet.buildDate(2012, 6, 1), SetType.SUPPLEMENTAL);
|
||||||
this.blockName = "Command Zone";
|
this.blockName = "Command Zone";
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Arc Trail", 39, Rarity.UNCOMMON, mage.cards.a.ArcTrail.class));
|
cards.add(new SetCardInfo("Arc Trail", 39, Rarity.UNCOMMON, mage.cards.a.ArcTrail.class));
|
||||||
cards.add(new SetCardInfo("Armillary Sphere", 108, Rarity.COMMON, mage.cards.a.ArmillarySphere.class));
|
cards.add(new SetCardInfo("Armillary Sphere", 108, Rarity.COMMON, mage.cards.a.ArmillarySphere.class));
|
||||||
cards.add(new SetCardInfo("Armored Griffin", 1, Rarity.UNCOMMON, mage.cards.a.ArmoredGriffin.class));
|
cards.add(new SetCardInfo("Armored Griffin", 1, Rarity.UNCOMMON, mage.cards.a.ArmoredGriffin.class));
|
||||||
|
|
@ -6,21 +6,21 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class PDSFireAndLightning extends ExpansionSet {
|
public final class PremiumDeckSeriesFireAndLightning extends ExpansionSet {
|
||||||
|
|
||||||
private static final PDSFireAndLightning instance = new PDSFireAndLightning();
|
private static final PremiumDeckSeriesFireAndLightning instance = new PremiumDeckSeriesFireAndLightning();
|
||||||
|
|
||||||
public static PDSFireAndLightning getInstance() {
|
public static PremiumDeckSeriesFireAndLightning getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private PDSFireAndLightning() {
|
private PremiumDeckSeriesFireAndLightning() {
|
||||||
super("Premium Deck Series: Fire and Lightning", "PD2", ExpansionSet.buildDate(2010, 11, 1),
|
super("Premium Deck Series: Fire and Lightning", "PD2", ExpansionSet.buildDate(2010, 11, 1),
|
||||||
SetType.SUPPLEMENTAL);
|
SetType.SUPPLEMENTAL);
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Ball Lightning", 12, Rarity.RARE, mage.cards.b.BallLightning.class));
|
cards.add(new SetCardInfo("Ball Lightning", 12, Rarity.RARE, mage.cards.b.BallLightning.class));
|
||||||
cards.add(new SetCardInfo("Barbarian Ring", 28, Rarity.UNCOMMON, mage.cards.b.BarbarianRing.class));
|
cards.add(new SetCardInfo("Barbarian Ring", 28, Rarity.UNCOMMON, mage.cards.b.BarbarianRing.class));
|
||||||
cards.add(new SetCardInfo("Boggart Ram-Gang", 13, Rarity.UNCOMMON, mage.cards.b.BoggartRamGang.class));
|
cards.add(new SetCardInfo("Boggart Ram-Gang", 13, Rarity.UNCOMMON, mage.cards.b.BoggartRamGang.class));
|
||||||
|
|
@ -6,20 +6,20 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class PDSGraveborn extends ExpansionSet {
|
public final class PremiumDeckSeriesGraveborn extends ExpansionSet {
|
||||||
|
|
||||||
private static final PDSGraveborn instance = new PDSGraveborn();
|
private static final PremiumDeckSeriesGraveborn instance = new PremiumDeckSeriesGraveborn();
|
||||||
|
|
||||||
public static PDSGraveborn getInstance() {
|
public static PremiumDeckSeriesGraveborn getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private PDSGraveborn() {
|
private PremiumDeckSeriesGraveborn() {
|
||||||
super("Premium Deck Series: Graveborn", "PD3", ExpansionSet.buildDate(2011, 11, 1), SetType.SUPPLEMENTAL);
|
super("Premium Deck Series: Graveborn", "PD3", ExpansionSet.buildDate(2011, 11, 1), SetType.SUPPLEMENTAL);
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Animate Dead", 16, Rarity.UNCOMMON, mage.cards.a.AnimateDead.class));
|
cards.add(new SetCardInfo("Animate Dead", 16, Rarity.UNCOMMON, mage.cards.a.AnimateDead.class));
|
||||||
cards.add(new SetCardInfo("Avatar of Woe", 6, Rarity.RARE, mage.cards.a.AvatarOfWoe.class));
|
cards.add(new SetCardInfo("Avatar of Woe", 6, Rarity.RARE, mage.cards.a.AvatarOfWoe.class));
|
||||||
cards.add(new SetCardInfo("Blazing Archon", 11, Rarity.RARE, mage.cards.b.BlazingArchon.class));
|
cards.add(new SetCardInfo("Blazing Archon", 11, Rarity.RARE, mage.cards.b.BlazingArchon.class));
|
||||||
|
|
@ -6,20 +6,20 @@ import mage.constants.Rarity;
|
||||||
import mage.constants.SetType;
|
import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author fireshoes
|
* @author fireshoes
|
||||||
*/
|
*/
|
||||||
public final class PDSSlivers extends ExpansionSet {
|
public final class PremiumDeckSeriesSlivers extends ExpansionSet {
|
||||||
|
|
||||||
private static final PDSSlivers instance = new PDSSlivers();
|
private static final PremiumDeckSeriesSlivers instance = new PremiumDeckSeriesSlivers();
|
||||||
|
|
||||||
public static PDSSlivers getInstance() {
|
public static PremiumDeckSeriesSlivers getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private PDSSlivers() {
|
private PremiumDeckSeriesSlivers() {
|
||||||
super("Premium Deck Series: Slivers", "H09", ExpansionSet.buildDate(2009, 11, 1), SetType.SUPPLEMENTAL);
|
super("Premium Deck Series: Slivers", "H09", ExpansionSet.buildDate(2009, 11, 1), SetType.SUPPLEMENTAL);
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Acidic Sliver", 13, Rarity.UNCOMMON, mage.cards.a.AcidicSliver.class));
|
cards.add(new SetCardInfo("Acidic Sliver", 13, Rarity.UNCOMMON, mage.cards.a.AcidicSliver.class));
|
||||||
cards.add(new SetCardInfo("Amoeboid Changeling", 3, Rarity.COMMON, mage.cards.a.AmoeboidChangeling.class));
|
cards.add(new SetCardInfo("Amoeboid Changeling", 3, Rarity.COMMON, mage.cards.a.AmoeboidChangeling.class));
|
||||||
cards.add(new SetCardInfo("Ancient Ziggurat", 31, Rarity.UNCOMMON, mage.cards.a.AncientZiggurat.class));
|
cards.add(new SetCardInfo("Ancient Ziggurat", 31, Rarity.UNCOMMON, mage.cards.a.AncientZiggurat.class));
|
||||||
Loading…
Add table
Add a link
Reference in a new issue