mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
Added the Junior Series Europe (PJSE) promotional set.
This commit is contained in:
parent
f374d74dc2
commit
db74a91b3c
3 changed files with 35 additions and 0 deletions
|
@ -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);
|
||||
|
|
|
@ -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");
|
||||
|
|
32
Mage.Sets/src/mage/sets/JuniorSeriesEurope.java
Normal file
32
Mage.Sets/src/mage/sets/JuniorSeriesEurope.java
Normal 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));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue