mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
Added the Junior APAC Series (PJAS) promotional set.
This commit is contained in:
parent
7fa1e9023d
commit
c74f42be81
3 changed files with 34 additions and 1 deletions
|
@ -1584,6 +1584,7 @@ public class DragCardGrid extends JPanel implements DragCardSource, DragCardTarg
|
|||
pimpedSets.put("PJSE", 1); // Junior Series Europe
|
||||
pimpedSets.put("P2HG", 1); // Two-Headed Giant Tournament
|
||||
pimpedSets.put("PGTW", 1); // Gateway 2006
|
||||
pimpedSets.put("PJAS", 1); // Junior APAC Series
|
||||
|
||||
pimpedSets.put("MGDC", 1);
|
||||
pimpedSets.put("EXP", 1);
|
||||
|
|
|
@ -107,7 +107,9 @@ public class ScryfallImageSupportCards {
|
|||
add("PJSE"); // Junior Series Europe
|
||||
add("P2HG"); // Two-Headed Giant Tournament
|
||||
add("PGTW"); // Gateway 2006
|
||||
|
||||
add("PJAS"); // Junior APAC Series
|
||||
|
||||
|
||||
add("MGB");
|
||||
add("ULG");
|
||||
add("6ED");
|
||||
|
|
30
Mage.Sets/src/mage/sets/JuniorAPACSeries.java
Normal file
30
Mage.Sets/src/mage/sets/JuniorAPACSeries.java
Normal file
|
@ -0,0 +1,30 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* https://scryfall.com/sets/pjas
|
||||
*/
|
||||
public class JuniorAPACSeries extends ExpansionSet {
|
||||
|
||||
private static final JuniorAPACSeries instance = new JuniorAPACSeries();
|
||||
|
||||
public static JuniorAPACSeries getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private JuniorAPACSeries() {
|
||||
super("Junior APAC Series", "PJAS", ExpansionSet.buildDate(2008, 1, 1), SetType.PROMOTIONAL);
|
||||
this.hasBoosters = false;
|
||||
this.hasBasicLands = false;
|
||||
|
||||
cards.add(new SetCardInfo("Elvish Champion", "2U08", Rarity.RARE, mage.cards.e.ElvishChampion.class));
|
||||
cards.add(new SetCardInfo("Glorious Anthem", "1U08", Rarity.RARE, mage.cards.g.GloriousAnthem.class));
|
||||
cards.add(new SetCardInfo("Sakura-Tribe Elder", "1U06", Rarity.RARE, mage.cards.s.SakuraTribeElder.class));
|
||||
cards.add(new SetCardInfo("Shard Phoenix", "2U06", Rarity.RARE, mage.cards.s.ShardPhoenix.class));
|
||||
cards.add(new SetCardInfo("Soltari Priest", "1U07", Rarity.RARE, mage.cards.s.SoltariPriest.class));
|
||||
cards.add(new SetCardInfo("Whirling Dervish", "2U07", Rarity.RARE, mage.cards.w.WhirlingDervish.class));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue