* Added new set: Signature Spellbook: Jace (SS1);

This commit is contained in:
Oleg Agafonov 2019-08-05 12:02:45 +04:00
parent dedaa74da3
commit f576e4e9ce
3 changed files with 34 additions and 1 deletions

View file

@ -249,6 +249,7 @@ public class ScryfallImageSupportCards {
add("G18");
add("PM20");
add("PS19");
add("SS1");
add("SS2");
}
};

View file

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

View file

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