Add Signature Spellbook: Chandra (#7004)

* Add Signature Spellbook: Chandra

* Update ScryfallImageSupportCards.java

* dangit

* Update SignatureSpellbookChandra.java
This commit is contained in:
Thomas Winwood 2020-08-26 16:02:30 +01:00 committed by GitHub
parent 6787688610
commit e01a03fa79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 1 deletions

View file

@ -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

View file

@ -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));
}
}