From dedaa74da3bb4e5b940f7c766afe0d3e0e72d4fe Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Mon, 5 Aug 2019 12:00:22 +0400 Subject: [PATCH] * Added new set: Signature Spellbook: Gideon (SS2); --- .../dl/sources/ScryfallImageSupportCards.java | 1 + .../mage/sets/SignatureSpellbookGideon.java | 32 +++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/SignatureSpellbookGideon.java diff --git a/Mage.Client/src/main/java/org/mage/plugins/card/dl/sources/ScryfallImageSupportCards.java b/Mage.Client/src/main/java/org/mage/plugins/card/dl/sources/ScryfallImageSupportCards.java index 71b43f11956..80873d64f8c 100644 --- a/Mage.Client/src/main/java/org/mage/plugins/card/dl/sources/ScryfallImageSupportCards.java +++ b/Mage.Client/src/main/java/org/mage/plugins/card/dl/sources/ScryfallImageSupportCards.java @@ -249,6 +249,7 @@ public class ScryfallImageSupportCards { add("G18"); add("PM20"); add("PS19"); + add("SS2"); } }; diff --git a/Mage.Sets/src/mage/sets/SignatureSpellbookGideon.java b/Mage.Sets/src/mage/sets/SignatureSpellbookGideon.java new file mode 100644 index 00000000000..ab3bf1fb36f --- /dev/null +++ b/Mage.Sets/src/mage/sets/SignatureSpellbookGideon.java @@ -0,0 +1,32 @@ +package mage.sets; + +import mage.cards.ExpansionSet; +import mage.constants.Rarity; +import mage.constants.SetType; + +/** + * @author JayDi85 + */ +public final class SignatureSpellbookGideon extends ExpansionSet { + + private static final SignatureSpellbookGideon instance = new SignatureSpellbookGideon(); + + public static SignatureSpellbookGideon getInstance() { + return instance; + } + + private SignatureSpellbookGideon() { + super("Signature Spellbook: Gideon", "SS2", ExpansionSet.buildDate(2019, 6, 28), SetType.PROMOTIONAL); + this.hasBoosters = false; + this.hasBasicLands = false; + + cards.add(new SetCardInfo("Blackblade Reforged", 8, Rarity.RARE, mage.cards.b.BlackbladeReforged.class)); + cards.add(new SetCardInfo("Gideon Jura", 1, Rarity.MYTHIC, mage.cards.g.GideonJura.class)); + cards.add(new SetCardInfo("Martyr's Bond", 2, Rarity.RARE, mage.cards.m.MartyrsBond.class)); + cards.add(new SetCardInfo("Path to Exile", 3, Rarity.RARE, mage.cards.p.PathToExile.class)); + cards.add(new SetCardInfo("Rest in Peace", 4, Rarity.RARE, mage.cards.r.RestInPeace.class)); + cards.add(new SetCardInfo("Shielded by Faith", 5, Rarity.RARE, mage.cards.s.ShieldedByFaith.class)); + cards.add(new SetCardInfo("True Conviction", 6, Rarity.RARE, mage.cards.t.TrueConviction.class)); + cards.add(new SetCardInfo("Worship", 7, Rarity.RARE, mage.cards.w.Worship.class)); + } +}