mirror of
https://github.com/correl/mage.git
synced 2024-11-16 11:09:29 +00:00
Added the 15th Anniversary Cards (P15A) promotional set.
This commit is contained in:
parent
3066e1d849
commit
7f5eb137fc
1 changed files with 26 additions and 0 deletions
26
Mage.Sets/src/mage/sets/FifteenthAnniversaryCards.java
Normal file
26
Mage.Sets/src/mage/sets/FifteenthAnniversaryCards.java
Normal 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));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue