Added the Junior Series Europe (PJSE) promotional set.

This commit is contained in:
Thomas Hess 2020-02-04 13:55:49 +01:00
parent f374d74dc2
commit db74a91b3c
No known key found for this signature in database
GPG key ID: 98602F47D161B13C
3 changed files with 35 additions and 0 deletions

View file

@ -1581,6 +1581,8 @@ public class DragCardGrid extends JPanel implements DragCardSource, DragCardTarg
pimpedSets.put("OVNT", 1); // Vintage Championship
pimpedSets.put("PREL", 1); // Release Events
pimpedSets.put("PJSE", 1); // Junior Series Europe
pimpedSets.put("MGDC", 1);
pimpedSets.put("EXP", 1);
pimpedSets.put("GPX", 1);

View file

@ -104,6 +104,7 @@ public class ScryfallImageSupportCards {
add("PLGM");
add("OVNT"); // Vintage Championship
add("PREL"); // Release Events
add("PJSE"); // Junior Series Europe
add("MGB");
add("ULG");

View file

@ -0,0 +1,32 @@
package mage.sets;
import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;
/**
* https://scryfall.com/sets/pjse
*/
public class JuniorSeriesEurope extends ExpansionSet {
private static final JuniorSeriesEurope instance = new JuniorSeriesEurope();
public static JuniorSeriesEurope getInstance() {
return instance;
}
private JuniorSeriesEurope() {
super("Junior Series Europe", "PJSE", ExpansionSet.buildDate(2008, 1, 1), SetType.PROMOTIONAL);
this.hasBoosters = false;
this.hasBasicLands = false;
cards.add(new SetCardInfo("Elvish Champion", "2E08", Rarity.RARE, mage.cards.e.ElvishChampion.class));
cards.add(new SetCardInfo("Glorious Anthem", "1E08", Rarity.RARE, mage.cards.g.GloriousAnthem.class));
cards.add(new SetCardInfo("Royal Assassin", "2E05", Rarity.RARE, mage.cards.r.RoyalAssassin.class));
cards.add(new SetCardInfo("Sakura-Tribe Elder", "1E06", Rarity.RARE, mage.cards.s.SakuraTribeElder.class));
cards.add(new SetCardInfo("Shard Phoenix", "2E06", Rarity.RARE, mage.cards.s.ShardPhoenix.class));
cards.add(new SetCardInfo("Slith Firewalker", "1E05", Rarity.RARE, mage.cards.s.SlithFirewalker.class));
cards.add(new SetCardInfo("Soltari Priest", "1E07", Rarity.RARE, mage.cards.s.SoltariPriest.class));
cards.add(new SetCardInfo("Whirling Dervish", "2E07", Rarity.RARE, mage.cards.w.WhirlingDervish.class));
}
}