mirror of
https://github.com/correl/mage.git
synced 2024-11-16 19:19:30 +00:00
Added the Rise of the Eldrazi Promos (PROE) promotional set.
This commit is contained in:
parent
e497ea51b1
commit
dfc9e00a99
1 changed files with 31 additions and 0 deletions
31
Mage.Sets/src/mage/sets/RiseOfTheEldraziPromos.java
Normal file
31
Mage.Sets/src/mage/sets/RiseOfTheEldraziPromos.java
Normal file
|
@ -0,0 +1,31 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* https://scryfall.com/sets/proe
|
||||
*/
|
||||
public class RiseOfTheEldraziPromos extends ExpansionSet {
|
||||
|
||||
private static final RiseOfTheEldraziPromos instance = new RiseOfTheEldraziPromos();
|
||||
|
||||
public static RiseOfTheEldraziPromos getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private RiseOfTheEldraziPromos() {
|
||||
super("Rise of the Eldrazi Promos", "PROE", ExpansionSet.buildDate(2010, 7, 30), SetType.PROMOTIONAL);
|
||||
this.hasBoosters = false;
|
||||
this.hasBasicLands = false;
|
||||
|
||||
cards.add(new SetCardInfo("Deathless Angel", 49, Rarity.RARE, mage.cards.d.DeathlessAngel.class));
|
||||
cards.add(new SetCardInfo("Emrakul, the Aeons Torn", 4, Rarity.RARE, mage.cards.e.EmrakulTheAeonsTorn.class));
|
||||
cards.add(new SetCardInfo("Guul Draz Assassin", 112, Rarity.RARE, mage.cards.g.GuulDrazAssassin.class));
|
||||
cards.add(new SetCardInfo("Lord of Shatterskull Pass", 156, Rarity.RARE, mage.cards.l.LordOfShatterskullPass.class));
|
||||
// Japanese-only printing
|
||||
//cards.add(new SetCardInfo("Pestilence Demon", 124, Rarity.RARE, mage.cards.p.PestilenceDemon.class));
|
||||
cards.add(new SetCardInfo("Staggershock", 48, Rarity.RARE, mage.cards.s.Staggershock.class));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue