Added the Zendikar Promos (PZEN) promotional set.

This commit is contained in:
Thomas Hess 2020-03-15 17:42:49 +01:00
parent dfc9e00a99
commit 10616eedd8
No known key found for this signature in database
GPG key ID: 98602F47D161B13C

View file

@ -0,0 +1,29 @@
package mage.sets;
import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;
/**
* https://scryfall.com/sets/pzen
*/
public class ZendikarPromos extends ExpansionSet {
private static final ZendikarPromos instance = new ZendikarPromos();
public static ZendikarPromos getInstance() {
return instance;
}
private ZendikarPromos() {
super("Zendikar Promos", "PZEN", ExpansionSet.buildDate(2009, 10, 2), SetType.PROMOTIONAL);
this.hasBoosters = false;
this.hasBasicLands = false;
cards.add(new SetCardInfo("Day of Judgment", "*9", Rarity.RARE, mage.cards.d.DayOfJudgment.class));
cards.add(new SetCardInfo("Emeria Angel", 35, Rarity.RARE, mage.cards.e.EmeriaAngel.class));
cards.add(new SetCardInfo("Nissa's Chosen", 34, Rarity.RARE, mage.cards.n.NissasChosen.class));
cards.add(new SetCardInfo("Rampaging Baloths", "*178", Rarity.MYTHIC, mage.cards.r.RampagingBaloths.class));
cards.add(new SetCardInfo("Valakut, the Molten Pinnacle", "*228", Rarity.RARE, mage.cards.v.ValakutTheMoltenPinnacle.class));
}
}