* Added new set: Signature Spellbook: Gideon (SS2);

This commit is contained in:
Oleg Agafonov 2019-08-05 12:00:22 +04:00
parent f98f4237b1
commit dedaa74da3
2 changed files with 33 additions and 0 deletions

View file

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

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 SignatureSpellbookGideon extends ExpansionSet {
private static final SignatureSpellbookGideon instance = new SignatureSpellbookGideon();
public static SignatureSpellbookGideon getInstance() {
return instance;
}
private SignatureSpellbookGideon() {
super("Signature Spellbook: Gideon", "SS2", ExpansionSet.buildDate(2019, 6, 28), SetType.PROMOTIONAL);
this.hasBoosters = false;
this.hasBasicLands = false;
cards.add(new SetCardInfo("Blackblade Reforged", 8, Rarity.RARE, mage.cards.b.BlackbladeReforged.class));
cards.add(new SetCardInfo("Gideon Jura", 1, Rarity.MYTHIC, mage.cards.g.GideonJura.class));
cards.add(new SetCardInfo("Martyr's Bond", 2, Rarity.RARE, mage.cards.m.MartyrsBond.class));
cards.add(new SetCardInfo("Path to Exile", 3, Rarity.RARE, mage.cards.p.PathToExile.class));
cards.add(new SetCardInfo("Rest in Peace", 4, Rarity.RARE, mage.cards.r.RestInPeace.class));
cards.add(new SetCardInfo("Shielded by Faith", 5, Rarity.RARE, mage.cards.s.ShieldedByFaith.class));
cards.add(new SetCardInfo("True Conviction", 6, Rarity.RARE, mage.cards.t.TrueConviction.class));
cards.add(new SetCardInfo("Worship", 7, Rarity.RARE, mage.cards.w.Worship.class));
}
}