From eeaceb1008d1c1d976ab4d601581810ef7bc07f7 Mon Sep 17 00:00:00 2001 From: Thomas Hess Date: Sun, 15 Mar 2020 18:57:27 +0100 Subject: [PATCH] Added the New Phyrexia Promos (PNPH) set. --- .../src/mage/sets/NewPhyrexiaPromos.java | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/NewPhyrexiaPromos.java diff --git a/Mage.Sets/src/mage/sets/NewPhyrexiaPromos.java b/Mage.Sets/src/mage/sets/NewPhyrexiaPromos.java new file mode 100644 index 0000000000..adb3eb70bd --- /dev/null +++ b/Mage.Sets/src/mage/sets/NewPhyrexiaPromos.java @@ -0,0 +1,30 @@ +package mage.sets; + +import mage.cards.ExpansionSet; +import mage.constants.Rarity; +import mage.constants.SetType; + +/** + * https://scryfall.com/sets/pnph + */ +public class NewPhyrexiaPromos extends ExpansionSet { + + private static final NewPhyrexiaPromos instance = new NewPhyrexiaPromos(); + + public static NewPhyrexiaPromos getInstance() { + return instance; + } + + private NewPhyrexiaPromos() { + super("New Phyrexia Promos", "PNPH", ExpansionSet.buildDate(2011, 5, 12), SetType.PROMOTIONAL); + this.hasBoosters = false; + this.hasBasicLands = false; + + cards.add(new SetCardInfo("Myr Superion", 146, Rarity.RARE, mage.cards.m.MyrSuperion.class)); + cards.add(new SetCardInfo("Phyrexian Metamorph", 42, Rarity.RARE, mage.cards.p.PhyrexianMetamorph.class)); + cards.add(new SetCardInfo("Priest of Urabrask", 90, Rarity.UNCOMMON, mage.cards.p.PriestOfUrabrask.class)); + cards.add(new SetCardInfo("Pristine Talisman", 151, Rarity.COMMON, mage.cards.p.PristineTalisman.class)); + cards.add(new SetCardInfo("Sheoldred, Whispering One", 73, Rarity.MYTHIC, mage.cards.s.SheoldredWhisperingOne.class)); + cards.add(new SetCardInfo("Surgical Extraction", "*74", Rarity.RARE, mage.cards.s.SurgicalExtraction.class)); + } +}