foul-magics/Mage.Sets/src/mage/sets/Magic2011Promos.java
Thomas Hess 3d3c298ad5
Added the Core set M10-M15 promo sets:
- Magic 2010 Promos (PM10)
- Magic 2011 Promos (PM11)
- Magic 2012 Promos (PM12)
- Magic 2013 Promos (PM13)
- Magic 2014 Promos (PM14)
- Magic 2015 Promos (PM15)
2020-03-24 17:31:58 +01:00

29 lines
1.1 KiB
Java

package mage.sets;
import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;
/**
* https://scryfall.com/sets/pm11
*/
public class Magic2011Promos extends ExpansionSet {
private static final Magic2011Promos instance = new Magic2011Promos();
public static Magic2011Promos getInstance() {
return instance;
}
private Magic2011Promos() {
super("Magic 2011 Promos", "PM11", ExpansionSet.buildDate(2010, 7, 15), SetType.PROMOTIONAL);
this.hasBoosters = false;
this.hasBasicLands = false;
cards.add(new SetCardInfo("Ancient Hellkite", 122, Rarity.RARE, mage.cards.a.AncientHellkite.class));
cards.add(new SetCardInfo("Birds of Paradise", "*165", Rarity.RARE, mage.cards.b.BirdsOfParadise.class));
cards.add(new SetCardInfo("Liliana's Specter", 104, Rarity.COMMON, mage.cards.l.LilianasSpecter.class));
cards.add(new SetCardInfo("Mitotic Slime", 53, Rarity.RARE, mage.cards.m.MitoticSlime.class));
cards.add(new SetCardInfo("Sun Titan", 35, Rarity.MYTHIC, mage.cards.s.SunTitan.class));
}
}