mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Added the Gateway 2006 (PGTW) promotional set.
This commit is contained in:
parent
be87c306c4
commit
7fa1e9023d
3 changed files with 29 additions and 0 deletions
|
@ -1583,6 +1583,7 @@ public class DragCardGrid extends JPanel implements DragCardSource, DragCardTarg
|
|||
pimpedSets.put("PREL", 1); // Release Events
|
||||
pimpedSets.put("PJSE", 1); // Junior Series Europe
|
||||
pimpedSets.put("P2HG", 1); // Two-Headed Giant Tournament
|
||||
pimpedSets.put("PGTW", 1); // Gateway 2006
|
||||
|
||||
pimpedSets.put("MGDC", 1);
|
||||
pimpedSets.put("EXP", 1);
|
||||
|
|
|
@ -106,6 +106,7 @@ public class ScryfallImageSupportCards {
|
|||
add("PREL"); // Release Events
|
||||
add("PJSE"); // Junior Series Europe
|
||||
add("P2HG"); // Two-Headed Giant Tournament
|
||||
add("PGTW"); // Gateway 2006
|
||||
|
||||
add("MGB");
|
||||
add("ULG");
|
||||
|
|
27
Mage.Sets/src/mage/sets/Gateway2006.java
Normal file
27
Mage.Sets/src/mage/sets/Gateway2006.java
Normal file
|
@ -0,0 +1,27 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* https://scryfall.com/sets/pgtw
|
||||
*/
|
||||
public class Gateway2006 extends ExpansionSet {
|
||||
|
||||
private static final Gateway2006 instance = new Gateway2006();
|
||||
|
||||
public static Gateway2006 getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private Gateway2006() {
|
||||
super("Gateway 2006", "PGTW", ExpansionSet.buildDate(2006, 1, 1), SetType.PROMOTIONAL);
|
||||
this.hasBoosters = false;
|
||||
this.hasBasicLands = false;
|
||||
|
||||
cards.add(new SetCardInfo("Fiery Temper", 3, Rarity.RARE, mage.cards.f.FieryTemper.class));
|
||||
cards.add(new SetCardInfo("Icatian Javelineers", 2, Rarity.RARE, mage.cards.i.IcatianJavelineers.class));
|
||||
cards.add(new SetCardInfo("Wood Elves", 1, Rarity.RARE, mage.cards.w.WoodElves.class));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue