Added the 15th Anniversary Cards (P15A) promotional set.

This commit is contained in:
Thomas Hess 2020-03-15 17:20:23 +01:00
parent 3066e1d849
commit 7f5eb137fc
No known key found for this signature in database
GPG key ID: 98602F47D161B13C

View file

@ -0,0 +1,26 @@
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));
}
}