From c4b736f7eb255443df94be168baf6eb5a5459770 Mon Sep 17 00:00:00 2001 From: Thomas Hess Date: Mon, 16 Mar 2020 12:51:59 +0100 Subject: [PATCH] Added the Born of the Gods Promos (PBNG) set. --- .../src/mage/sets/BornOfTheGodsPromos.java | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/BornOfTheGodsPromos.java diff --git a/Mage.Sets/src/mage/sets/BornOfTheGodsPromos.java b/Mage.Sets/src/mage/sets/BornOfTheGodsPromos.java new file mode 100644 index 0000000000..ebfb1a4bf7 --- /dev/null +++ b/Mage.Sets/src/mage/sets/BornOfTheGodsPromos.java @@ -0,0 +1,33 @@ +package mage.sets; + +import mage.cards.ExpansionSet; +import mage.constants.Rarity; +import mage.constants.SetType; + +/** + * https://scryfall.com/sets/pbng + */ +public class BornOfTheGodsPromos extends ExpansionSet { + + private static final BornOfTheGodsPromos instance = new BornOfTheGodsPromos(); + + public static BornOfTheGodsPromos getInstance() { + return instance; + } + + private BornOfTheGodsPromos() { + super("Born of the Gods Promos", "PBNG", ExpansionSet.buildDate(2014, 2, 1), SetType.PROMOTIONAL); + this.hasBoosters = false; + this.hasBasicLands = false; + + cards.add(new SetCardInfo("Arbiter of the Ideal", 31, Rarity.RARE, mage.cards.a.ArbiterOfTheIdeal.class)); + cards.add(new SetCardInfo("Eater of Hope", 66, Rarity.RARE, mage.cards.e.EaterOfHope.class)); + cards.add(new SetCardInfo("Fated Conflagration", "*94", Rarity.RARE, mage.cards.f.FatedConflagration.class)); + cards.add(new SetCardInfo("Forgestoker Dragon", 98, Rarity.RARE, mage.cards.f.ForgestokerDragon.class)); + cards.add(new SetCardInfo("Kiora's Follower", 150, Rarity.UNCOMMON, mage.cards.k.KiorasFollower.class)); + cards.add(new SetCardInfo("Nessian Wilds Ravager", 129, Rarity.RARE, mage.cards.n.NessianWildsRavager.class)); + cards.add(new SetCardInfo("Pain Seer", 80, Rarity.RARE, mage.cards.p.PainSeer.class)); + cards.add(new SetCardInfo("Silent Sentinel", 26, Rarity.RARE, mage.cards.s.SilentSentinel.class)); + cards.add(new SetCardInfo("Tromokratis", 55, Rarity.RARE, mage.cards.t.Tromokratis.class)); + } +}