mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Added the Two-Headed Giant Tournament (P2HG) promotional set.
This commit is contained in:
parent
db74a91b3c
commit
be87c306c4
3 changed files with 30 additions and 3 deletions
|
@ -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);
|
||||||
|
|
|
@ -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");
|
||||||
|
|
25
Mage.Sets/src/mage/sets/TwoHeadedGiantTournament.java
Normal file
25
Mage.Sets/src/mage/sets/TwoHeadedGiantTournament.java
Normal 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));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue