mirror of
https://github.com/correl/mage.git
synced 2024-11-16 19:19:30 +00:00
Added the Dragon's Maze Promos (PDGM) set.
This commit is contained in:
parent
daae8602bd
commit
257d20f4cf
1 changed files with 30 additions and 0 deletions
30
Mage.Sets/src/mage/sets/DragonsMazePromos.java
Normal file
30
Mage.Sets/src/mage/sets/DragonsMazePromos.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/pdgm
|
||||||
|
*/
|
||||||
|
public class DragonsMazePromos extends ExpansionSet {
|
||||||
|
|
||||||
|
private static final DragonsMazePromos instance = new DragonsMazePromos();
|
||||||
|
|
||||||
|
public static DragonsMazePromos getInstance() {
|
||||||
|
return instance;
|
||||||
|
}
|
||||||
|
|
||||||
|
private DragonsMazePromos() {
|
||||||
|
super("Dragon's Maze Promos", "PDGM", ExpansionSet.buildDate(2013, 4, 27), SetType.PROMOTIONAL);
|
||||||
|
this.hasBoosters = false;
|
||||||
|
this.hasBasicLands = true;
|
||||||
|
|
||||||
|
cards.add(new SetCardInfo("Breaking // Entering", 124, Rarity.RARE, mage.cards.b.BreakingEntering.class));
|
||||||
|
cards.add(new SetCardInfo("Maze's End", 152, Rarity.MYTHIC, mage.cards.m.MazesEnd.class));
|
||||||
|
cards.add(new SetCardInfo("Melek, Izzet Paragon", 84, Rarity.RARE, mage.cards.m.MelekIzzetParagon.class));
|
||||||
|
cards.add(new SetCardInfo("Plains", 157, Rarity.LAND, mage.cards.basiclands.Plains.class));
|
||||||
|
cards.add(new SetCardInfo("Render Silent", "*96", Rarity.RARE, mage.cards.r.RenderSilent.class));
|
||||||
|
cards.add(new SetCardInfo("Trostani's Summoner", 110, Rarity.UNCOMMON, mage.cards.t.TrostanisSummoner.class));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue