From e01a03fa79068fbc56b7ff6bf84c909b0c0e50aa Mon Sep 17 00:00:00 2001 From: Thomas Winwood Date: Wed, 26 Aug 2020 16:02:30 +0100 Subject: [PATCH] Add Signature Spellbook: Chandra (#7004) * Add Signature Spellbook: Chandra * Update ScryfallImageSupportCards.java * dangit * Update SignatureSpellbookChandra.java --- .../dl/sources/ScryfallImageSupportCards.java | 2 +- .../mage/sets/SignatureSpellbookChandra.java | 32 +++++++++++++++++++ 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 Mage.Sets/src/mage/sets/SignatureSpellbookChandra.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 dd2d409ee1..f35c9727cd 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 @@ -476,7 +476,7 @@ public class ScryfallImageSupportCards { add("SLD"); // Secret Lair Drop add("PMEI"); // Magazine Inserts add("SLU"); // Secret Lair: Ultimate Edition - //add("SS3"); // Signature Spellbook: Chandra + add("SS3"); // Signature Spellbook: Chandra add("HA3"); // Historic Anthology 3 // add("TD0"); // Commander Theme Decks diff --git a/Mage.Sets/src/mage/sets/SignatureSpellbookChandra.java b/Mage.Sets/src/mage/sets/SignatureSpellbookChandra.java new file mode 100644 index 0000000000..566d229342 --- /dev/null +++ b/Mage.Sets/src/mage/sets/SignatureSpellbookChandra.java @@ -0,0 +1,32 @@ +package mage.sets; + +import mage.cards.ExpansionSet; +import mage.constants.Rarity; +import mage.constants.SetType; + +/** + * @author Ketsuban + */ +public final class SignatureSpellbookChandra extends ExpansionSet { + + private static final SignatureSpellbookChandra instance = new SignatureSpellbookChandra(); + + public static SignatureSpellbookChandra getInstance() { + return instance; + } + + private SignatureSpellbookChandra() { + super("Signature Spellbook: Chandra", "SS3", ExpansionSet.buildDate(2020, 6, 26), SetType.SUPPLEMENTAL); + this.hasBoosters = false; + this.hasBasicLands = false; + + cards.add(new SetCardInfo("Chandra, Torch of Defiance", 1, Rarity.MYTHIC, mage.cards.c.ChandraTorchOfDefiance.class)); + cards.add(new SetCardInfo("Cathartic Reunion", 2, Rarity.RARE, mage.cards.c.CatharticReunion.class)); + cards.add(new SetCardInfo("Fiery Confluence", 3, Rarity.RARE, mage.cards.f.FieryConfluence.class)); + cards.add(new SetCardInfo("Past in Flames", 4, Rarity.MYTHIC, mage.cards.p.PastInFlames.class)); + cards.add(new SetCardInfo("Pyroblast", 5, Rarity.RARE, mage.cards.p.Pyroblast.class)); + cards.add(new SetCardInfo("Pyromancer Ascension", 6, Rarity.RARE, mage.cards.p.PyromancerAscension.class)); + cards.add(new SetCardInfo("Rite of Flame", 7, Rarity.RARE, mage.cards.r.RiteOfFlame.class)); + cards.add(new SetCardInfo("Young Pyromancer", 8, Rarity.RARE, mage.cards.y.YoungPyromancer.class)); + } +}