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 80873d64f8c..c185ba3d4e9 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("SS1"); add("SS2"); } }; diff --git a/Mage.Sets/src/mage/sets/SignatureSpellbookGideon.java b/Mage.Sets/src/mage/sets/SignatureSpellbookGideon.java index ab3bf1fb36f..281299abdb6 100644 --- a/Mage.Sets/src/mage/sets/SignatureSpellbookGideon.java +++ b/Mage.Sets/src/mage/sets/SignatureSpellbookGideon.java @@ -16,7 +16,7 @@ public final class SignatureSpellbookGideon extends ExpansionSet { } private SignatureSpellbookGideon() { - super("Signature Spellbook: Gideon", "SS2", ExpansionSet.buildDate(2019, 6, 28), SetType.PROMOTIONAL); + super("Signature Spellbook: Gideon", "SS2", ExpansionSet.buildDate(2019, 6, 28), SetType.SUPPLEMENTAL); this.hasBoosters = false; this.hasBasicLands = false; diff --git a/Mage.Sets/src/mage/sets/SignatureSpellbookJace.java b/Mage.Sets/src/mage/sets/SignatureSpellbookJace.java new file mode 100644 index 00000000000..ab094021419 --- /dev/null +++ b/Mage.Sets/src/mage/sets/SignatureSpellbookJace.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 SignatureSpellbookJace extends ExpansionSet { + + private static final SignatureSpellbookJace instance = new SignatureSpellbookJace(); + + public static SignatureSpellbookJace getInstance() { + return instance; + } + + private SignatureSpellbookJace() { + super("Signature Spellbook: Jace", "SS1", ExpansionSet.buildDate(2018, 6, 15), SetType.SUPPLEMENTAL); + this.hasBoosters = false; + this.hasBasicLands = false; + + cards.add(new SetCardInfo("Blue Elemental Blast", 2, Rarity.RARE, mage.cards.b.BlueElementalBlast.class)); + cards.add(new SetCardInfo("Brainstorm", 3, Rarity.RARE, mage.cards.b.Brainstorm.class)); + cards.add(new SetCardInfo("Counterspell", 4, Rarity.RARE, mage.cards.c.Counterspell.class)); + cards.add(new SetCardInfo("Gifts Ungiven", 5, Rarity.RARE, mage.cards.g.GiftsUngiven.class)); + cards.add(new SetCardInfo("Jace Beleren", 1, Rarity.MYTHIC, mage.cards.j.JaceBeleren.class)); + cards.add(new SetCardInfo("Mystical Tutor", 6, Rarity.RARE, mage.cards.m.MysticalTutor.class)); + cards.add(new SetCardInfo("Negate", 7, Rarity.RARE, mage.cards.n.Negate.class)); + cards.add(new SetCardInfo("Threads of Disloyalty", 8, Rarity.RARE, mage.cards.t.ThreadsOfDisloyalty.class)); + } +}