foul-magics/Mage.Sets/src/mage/sets/Magic2010Promos.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/pm10
*/
public class Magic2010Promos extends ExpansionSet {
private static final Magic2010Promos instance = new Magic2010Promos();
public static Magic2010Promos getInstance() {
return instance;
}
private Magic2010Promos() {
super("Magic 2010 Promos", "PM10", ExpansionSet.buildDate(2009, 7, 16), SetType.PROMOTIONAL);
this.hasBoosters = false;
this.hasBasicLands = false;
cards.add(new SetCardInfo("Ant Queen", 166, Rarity.RARE, mage.cards.a.AntQueen.class));
cards.add(new SetCardInfo("Honor of the Pure", "*16", Rarity.RARE, mage.cards.h.HonorOfThePure.class));
cards.add(new SetCardInfo("Mycoid Shepherd", 28, Rarity.RARE, mage.cards.m.MycoidShepherd.class));
cards.add(new SetCardInfo("Naya Sojourners", 29, Rarity.RARE, mage.cards.n.NayaSojourners.class));
cards.add(new SetCardInfo("Vampire Nocturnus", 118, Rarity.MYTHIC, mage.cards.v.VampireNocturnus.class));
}
}