mirror of
https://github.com/correl/mage.git
synced 2025-01-03 19:17:30 +00:00
Added the Unstable Promos (PUST) set.
This commit is contained in:
parent
da98ac82ed
commit
17da620d8a
1 changed files with 25 additions and 0 deletions
25
Mage.Sets/src/mage/sets/UnstablePromos.java
Normal file
25
Mage.Sets/src/mage/sets/UnstablePromos.java
Normal 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));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue