forked from External/mage
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
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…
Add table
Add a link
Reference in a new issue