mirror of
https://github.com/correl/mage.git
synced 2024-11-16 19:19:30 +00:00
Added the Tenth Edition Promos (P10E) set.
This commit is contained in:
parent
71bdc431db
commit
763a936720
1 changed files with 25 additions and 0 deletions
25
Mage.Sets/src/mage/sets/TenthEditionPromos.java
Normal file
25
Mage.Sets/src/mage/sets/TenthEditionPromos.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/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));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue