Added the Unstable Promos (PUST) set.

This commit is contained in:
Thomas Hess 2020-03-18 17:04:35 +01:00
parent da98ac82ed
commit 17da620d8a
No known key found for this signature in database
GPG key ID: 98602F47D161B13C

View file

@ -0,0 +1,25 @@
package mage.sets;
import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;
/**
* https://scryfall.com/sets/pust
*/
public class UnstablePromos extends ExpansionSet {
private static final UnstablePromos instance = new UnstablePromos();
public static UnstablePromos getInstance() {
return instance;
}
private UnstablePromos() {
super("Unstable Promos", "PUST", ExpansionSet.buildDate(2017, 11, 13), SetType.JOKESET);
this.hasBoosters = false;
this.hasBasicLands = false;
cards.add(new SetCardInfo("Earl of Squirrel", 108, Rarity.RARE, mage.cards.e.EarlOfSquirrel.class));
}
}