forked from External/mage
26 lines
837 B
Java
26 lines
837 B
Java
package mage.sets;
|
|
|
|
import mage.cards.ExpansionSet;
|
|
import mage.constants.Rarity;
|
|
import mage.constants.SetType;
|
|
|
|
/**
|
|
* https://scryfall.com/sets/p15a
|
|
*/
|
|
public class FifteenthAnniversaryCards extends ExpansionSet {
|
|
|
|
private static final FifteenthAnniversaryCards instance = new FifteenthAnniversaryCards();
|
|
|
|
public static FifteenthAnniversaryCards getInstance() {
|
|
return instance;
|
|
}
|
|
|
|
private FifteenthAnniversaryCards() {
|
|
super("Fifteenth Anniversary Cards", "P15A", ExpansionSet.buildDate(2008, 4, 1), SetType.PROMOTIONAL);
|
|
this.hasBoosters = false;
|
|
this.hasBasicLands = false;
|
|
|
|
cards.add(new SetCardInfo("Char", 1, Rarity.RARE, mage.cards.c.Char.class));
|
|
cards.add(new SetCardInfo("Kamahl, Pit Fighter", 2, Rarity.RARE, mage.cards.k.KamahlPitFighter.class));
|
|
}
|
|
}
|