Added the Gateway 2006 (PGTW) promotional set.

This commit is contained in:
Thomas Hess 2020-02-04 14:04:24 +01:00
parent be87c306c4
commit 7fa1e9023d
No known key found for this signature in database
GPG key ID: 98602F47D161B13C
3 changed files with 29 additions and 0 deletions

View file

@ -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);

View file

@ -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");

View 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));
}
}