From e0017752b6594abba2031bd70e66977e80aec10e Mon Sep 17 00:00:00 2001 From: Thomas Hess Date: Sun, 15 Mar 2020 17:22:14 +0100 Subject: [PATCH] Added the Wizards Play Network 2008 (PWPN) promotional set. --- .../src/mage/sets/WizardsPlayNetwork2008.java | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/WizardsPlayNetwork2008.java diff --git a/Mage.Sets/src/mage/sets/WizardsPlayNetwork2008.java b/Mage.Sets/src/mage/sets/WizardsPlayNetwork2008.java new file mode 100644 index 0000000000..f192ec8322 --- /dev/null +++ b/Mage.Sets/src/mage/sets/WizardsPlayNetwork2008.java @@ -0,0 +1,26 @@ +package mage.sets; + +import mage.cards.ExpansionSet; +import mage.constants.Rarity; +import mage.constants.SetType; + +/** + * https://scryfall.com/sets/pwpn + */ +public class WizardsPlayNetwork2008 extends ExpansionSet { + + private static final WizardsPlayNetwork2008 instance = new WizardsPlayNetwork2008(); + + public static WizardsPlayNetwork2008 getInstance() { + return instance; + } + + private WizardsPlayNetwork2008() { + super("Wizards Play Network 2008", "PWPN", ExpansionSet.buildDate(2008, 10, 1), SetType.PROMOTIONAL); + this.hasBoosters = false; + this.hasBasicLands = false; + + cards.add(new SetCardInfo("Sprouting Thrinax", 21, Rarity.RARE, mage.cards.s.SproutingThrinax.class)); + cards.add(new SetCardInfo("Woolly Thoctar", 22, Rarity.RARE, mage.cards.w.WoollyThoctar.class)); + } +}