Added the Two-Headed Giant Tournament (P2HG) promotional set.

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

View file

@ -1579,9 +1579,10 @@ public class DragCardGrid extends JPanel implements DragCardSource, DragCardTarg
pimpedSets.put("P10", 1); pimpedSets.put("P10", 1);
pimpedSets.put("P11", 1); pimpedSets.put("P11", 1);
pimpedSets.put("OVNT", 1); // Vintage Championship pimpedSets.put("OVNT", 1); // Vintage Championship
pimpedSets.put("PREL", 1); // Release Events pimpedSets.put("PREL", 1); // Release Events
pimpedSets.put("PJSE", 1); // Junior Series Europe pimpedSets.put("PJSE", 1); // Junior Series Europe
pimpedSets.put("P2HG", 1); // Two-Headed Giant Tournament
pimpedSets.put("MGDC", 1); pimpedSets.put("MGDC", 1);
pimpedSets.put("EXP", 1); pimpedSets.put("EXP", 1);

View file

@ -105,6 +105,7 @@ public class ScryfallImageSupportCards {
add("OVNT"); // Vintage Championship add("OVNT"); // Vintage Championship
add("PREL"); // Release Events add("PREL"); // Release Events
add("PJSE"); // Junior Series Europe add("PJSE"); // Junior Series Europe
add("P2HG"); // Two-Headed Giant Tournament
add("MGB"); add("MGB");
add("ULG"); add("ULG");

View file

@ -0,0 +1,25 @@
package mage.sets;
import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;
/**
* https://scryfall.com/sets/p2hg
*/
public class TwoHeadedGiantTournament extends ExpansionSet {
private static final TwoHeadedGiantTournament instance = new TwoHeadedGiantTournament();
public static TwoHeadedGiantTournament getInstance() {
return instance;
}
private TwoHeadedGiantTournament() {
super("Two-Headed Giant Tournament", "P2HG", ExpansionSet.buildDate(2005, 12, 9), SetType.PROMOTIONAL);
this.hasBoosters = false;
this.hasBasicLands = false;
cards.add(new SetCardInfo("Underworld Dreams", 1, Rarity.RARE, mage.cards.u.UnderworldDreams.class));
}
}