mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Add Signature Spellbook: Chandra (#7004)
* Add Signature Spellbook: Chandra * Update ScryfallImageSupportCards.java * dangit * Update SignatureSpellbookChandra.java
This commit is contained in:
parent
6787688610
commit
e01a03fa79
2 changed files with 33 additions and 1 deletions
|
@ -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
|
||||
|
|
32
Mage.Sets/src/mage/sets/SignatureSpellbookChandra.java
Normal file
32
Mage.Sets/src/mage/sets/SignatureSpellbookChandra.java
Normal 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));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue