From b86d369aa9c1e9b2825ea1fcf9ef2838fbffff58 Mon Sep 17 00:00:00 2001 From: Thomas Hess Date: Mon, 16 Mar 2020 12:52:59 +0100 Subject: [PATCH] Added the Journey into Nyx Promos (PJOU) set. --- .../src/mage/sets/JourneyIntoNyxPromos.java | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/JourneyIntoNyxPromos.java diff --git a/Mage.Sets/src/mage/sets/JourneyIntoNyxPromos.java b/Mage.Sets/src/mage/sets/JourneyIntoNyxPromos.java new file mode 100644 index 0000000000..999876730c --- /dev/null +++ b/Mage.Sets/src/mage/sets/JourneyIntoNyxPromos.java @@ -0,0 +1,33 @@ +package mage.sets; + +import mage.cards.ExpansionSet; +import mage.constants.Rarity; +import mage.constants.SetType; + +/** + * https://scryfall.com/sets/pjou + */ +public class JourneyIntoNyxPromos extends ExpansionSet { + + private static final JourneyIntoNyxPromos instance = new JourneyIntoNyxPromos(); + + public static JourneyIntoNyxPromos getInstance() { + return instance; + } + + private JourneyIntoNyxPromos() { + super("Journey into Nyx Promos", "PJOU", ExpansionSet.buildDate(2014, 4, 26), SetType.PROMOTIONAL); + this.hasBoosters = false; + this.hasBasicLands = false; + + cards.add(new SetCardInfo("Dawnbringer Charioteers", 6, Rarity.RARE, mage.cards.d.DawnbringerCharioteers.class)); + cards.add(new SetCardInfo("Dictate of Kruphix", 37, Rarity.RARE, mage.cards.d.DictateOfKruphix.class)); + cards.add(new SetCardInfo("Dictate of the Twin Gods", 93, Rarity.RARE, mage.cards.d.DictateOfTheTwinGods.class)); + cards.add(new SetCardInfo("Doomwake Giant", 66, Rarity.RARE, mage.cards.d.DoomwakeGiant.class)); + cards.add(new SetCardInfo("Eidolon of Blossoms", "*122", Rarity.RARE, mage.cards.e.EidolonOfBlossoms.class)); + cards.add(new SetCardInfo("Heroes' Bane", 126, Rarity.RARE, mage.cards.h.HeroesBane.class)); + cards.add(new SetCardInfo("Scourge of Fleets", 51, Rarity.RARE, mage.cards.s.ScourgeOfFleets.class)); + cards.add(new SetCardInfo("Spawn of Thraxes", 112, Rarity.RARE, mage.cards.s.SpawnOfThraxes.class)); + cards.add(new SetCardInfo("Squelching Leeches", 84, Rarity.UNCOMMON, mage.cards.s.SquelchingLeeches.class)); + } +}