mirror of
https://github.com/correl/mage.git
synced 2025-01-03 19:17:30 +00:00
Added the Wizards Play Network 2011 (PWP11) and Wizards Play Network 2012 (PWP12) sets.
This commit is contained in:
parent
e248a6a7e8
commit
834c9b8dae
2 changed files with 65 additions and 0 deletions
38
Mage.Sets/src/mage/sets/WizardsPlayNetwork2011.java
Normal file
38
Mage.Sets/src/mage/sets/WizardsPlayNetwork2011.java
Normal file
|
@ -0,0 +1,38 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* https://scryfall.com/sets/pwp11
|
||||
*/
|
||||
public class WizardsPlayNetwork2011 extends ExpansionSet {
|
||||
|
||||
private static final WizardsPlayNetwork2011 instance = new WizardsPlayNetwork2011();
|
||||
|
||||
public static WizardsPlayNetwork2011 getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private WizardsPlayNetwork2011() {
|
||||
super("Wizards Play Network 2011", "PWP11", ExpansionSet.buildDate(2011, 1, 1), SetType.PROMOTIONAL);
|
||||
this.hasBoosters = false;
|
||||
this.hasBasicLands = false;
|
||||
|
||||
cards.add(new SetCardInfo("Auramancer", 77, Rarity.RARE, mage.cards.a.Auramancer.class));
|
||||
cards.add(new SetCardInfo("Bloodcrazed Neonate", 83, Rarity.RARE, mage.cards.b.BloodcrazedNeonate.class));
|
||||
cards.add(new SetCardInfo("Boneyard Wurm", 84, Rarity.RARE, mage.cards.b.BoneyardWurm.class));
|
||||
cards.add(new SetCardInfo("Circle of Flame", 78, Rarity.RARE, mage.cards.c.CircleOfFlame.class));
|
||||
cards.add(new SetCardInfo("Curse of the Bloody Tome", 80, Rarity.RARE, mage.cards.c.CurseOfTheBloodyTome.class));
|
||||
cards.add(new SetCardInfo("Fling", 69, Rarity.RARE, mage.cards.f.Fling.class));
|
||||
cards.add(new SetCardInfo("Master's Call", 64, Rarity.RARE, mage.cards.m.MastersCall.class));
|
||||
cards.add(new SetCardInfo("Maul Splicer", 72, Rarity.RARE, mage.cards.m.MaulSplicer.class));
|
||||
cards.add(new SetCardInfo("Plague Myr", 65, Rarity.RARE, mage.cards.p.PlagueMyr.class));
|
||||
cards.add(new SetCardInfo("Shrine of Burning Rage", 73, Rarity.RARE, mage.cards.s.ShrineOfBurningRage.class));
|
||||
cards.add(new SetCardInfo("Signal Pest", 66, Rarity.RARE, mage.cards.s.SignalPest.class));
|
||||
cards.add(new SetCardInfo("Sylvan Ranger", 70, Rarity.RARE, mage.cards.s.SylvanRanger.class));
|
||||
cards.add(new SetCardInfo("Tormented Soul", 76, Rarity.RARE, mage.cards.t.TormentedSoul.class));
|
||||
cards.add(new SetCardInfo("Vault Skirge", 71, Rarity.RARE, mage.cards.v.VaultSkirge.class));
|
||||
}
|
||||
}
|
27
Mage.Sets/src/mage/sets/WizardsPlayNetwork2012.java
Normal file
27
Mage.Sets/src/mage/sets/WizardsPlayNetwork2012.java
Normal file
|
@ -0,0 +1,27 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* https://scryfall.com/sets/pwp12
|
||||
*/
|
||||
public class WizardsPlayNetwork2012 extends ExpansionSet {
|
||||
|
||||
private static final WizardsPlayNetwork2012 instance = new WizardsPlayNetwork2012();
|
||||
|
||||
public static WizardsPlayNetwork2012 getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private WizardsPlayNetwork2012() {
|
||||
super("Wizards Play Network 2012", "PWP12", ExpansionSet.buildDate(2012, 1, 1), SetType.PROMOTIONAL);
|
||||
this.hasBoosters = false;
|
||||
this.hasBasicLands = false;
|
||||
|
||||
cards.add(new SetCardInfo("Curse of Thirst", 81, Rarity.RARE, mage.cards.c.CurseOfThirst.class));
|
||||
cards.add(new SetCardInfo("Gather the Townsfolk", 79, Rarity.RARE, mage.cards.g.GatherTheTownsfolk.class));
|
||||
cards.add(new SetCardInfo("Nearheath Stalker", 82, Rarity.RARE, mage.cards.n.NearheathStalker.class));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue