mirror of
https://github.com/correl/mage.git
synced 2024-11-16 11:09:29 +00:00
Added the Modern Horizons Promos (PMH1) set.
This commit is contained in:
parent
151ea6d61f
commit
3f7513f2d4
1 changed files with 25 additions and 0 deletions
25
Mage.Sets/src/mage/sets/ModernHorizonsPromos.java
Normal file
25
Mage.Sets/src/mage/sets/ModernHorizonsPromos.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/pmh1
|
||||
*/
|
||||
public class ModernHorizonsPromos extends ExpansionSet {
|
||||
|
||||
private static final ModernHorizonsPromos instance = new ModernHorizonsPromos();
|
||||
|
||||
public static ModernHorizonsPromos getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private ModernHorizonsPromos() {
|
||||
super("Modern Horizons Promos", "PMH1", ExpansionSet.buildDate(2019, 6, 14), SetType.PROMOTIONAL);
|
||||
this.hasBoosters = false;
|
||||
this.hasBasicLands = false;
|
||||
|
||||
cards.add(new SetCardInfo("Astral Drift", 3, Rarity.RARE, mage.cards.a.AstralDrift.class));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue