From dfc9e00a99c153cc1ab82ad41405e9024a34bcf0 Mon Sep 17 00:00:00 2001 From: Thomas Hess Date: Sun, 15 Mar 2020 17:36:27 +0100 Subject: [PATCH] Added the Rise of the Eldrazi Promos (PROE) promotional set. --- .../src/mage/sets/RiseOfTheEldraziPromos.java | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/RiseOfTheEldraziPromos.java diff --git a/Mage.Sets/src/mage/sets/RiseOfTheEldraziPromos.java b/Mage.Sets/src/mage/sets/RiseOfTheEldraziPromos.java new file mode 100644 index 00000000000..ef0f3a7adc8 --- /dev/null +++ b/Mage.Sets/src/mage/sets/RiseOfTheEldraziPromos.java @@ -0,0 +1,31 @@ +package mage.sets; + +import mage.cards.ExpansionSet; +import mage.constants.Rarity; +import mage.constants.SetType; + +/** + * https://scryfall.com/sets/proe + */ +public class RiseOfTheEldraziPromos extends ExpansionSet { + + private static final RiseOfTheEldraziPromos instance = new RiseOfTheEldraziPromos(); + + public static RiseOfTheEldraziPromos getInstance() { + return instance; + } + + private RiseOfTheEldraziPromos() { + super("Rise of the Eldrazi Promos", "PROE", ExpansionSet.buildDate(2010, 7, 30), SetType.PROMOTIONAL); + this.hasBoosters = false; + this.hasBasicLands = false; + + cards.add(new SetCardInfo("Deathless Angel", 49, Rarity.RARE, mage.cards.d.DeathlessAngel.class)); + cards.add(new SetCardInfo("Emrakul, the Aeons Torn", 4, Rarity.RARE, mage.cards.e.EmrakulTheAeonsTorn.class)); + cards.add(new SetCardInfo("Guul Draz Assassin", 112, Rarity.RARE, mage.cards.g.GuulDrazAssassin.class)); + cards.add(new SetCardInfo("Lord of Shatterskull Pass", 156, Rarity.RARE, mage.cards.l.LordOfShatterskullPass.class)); + // Japanese-only printing + //cards.add(new SetCardInfo("Pestilence Demon", 124, Rarity.RARE, mage.cards.p.PestilenceDemon.class)); + cards.add(new SetCardInfo("Staggershock", 48, Rarity.RARE, mage.cards.s.Staggershock.class)); + } +}