Added the Wizards Play Network 2011 (PWP11) and Wizards Play Network 2012 (PWP12) sets.

This commit is contained in:
Thomas Hess 2020-03-18 17:09:03 +01:00
parent e248a6a7e8
commit 834c9b8dae
No known key found for this signature in database
GPG key ID: 98602F47D161B13C
2 changed files with 65 additions and 0 deletions

View 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));
}
}