Added the Tenth Edition Promos (P10E) set.

This commit is contained in:
Thomas Hess 2020-03-09 12:31:52 +01:00
parent 71bdc431db
commit 763a936720
No known key found for this signature in database
GPG key ID: 98602F47D161B13C

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/p10e
*/
public class TenthEditionPromos extends ExpansionSet {
private static final TenthEditionPromos instance = new TenthEditionPromos();
public static TenthEditionPromos getInstance() {
return instance;
}
private TenthEditionPromos() {
super("Tenth Edition Promos", "P10E", ExpansionSet.buildDate(2007, 7, 13), SetType.PROMOTIONAL);
this.hasBoosters = false;
this.hasBasicLands = false;
cards.add(new SetCardInfo("Reya Dawnbringer", 35, Rarity.RARE, mage.cards.r.ReyaDawnbringer.class));
}
}