mirror of
https://github.com/correl/mage.git
synced 2024-11-16 11:09:29 +00:00
Added the Nationals Promos (PNAT) set.
This commit is contained in:
parent
51dad5fb06
commit
73c4ea558d
1 changed files with 25 additions and 0 deletions
25
Mage.Sets/src/mage/sets/NationalsPromos.java
Normal file
25
Mage.Sets/src/mage/sets/NationalsPromos.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/pnat
|
||||
*/
|
||||
public class NationalsPromos extends ExpansionSet {
|
||||
|
||||
private static final NationalsPromos instance = new NationalsPromos();
|
||||
|
||||
public static NationalsPromos getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private NationalsPromos() {
|
||||
super("Nationals Promos", "PNAT", ExpansionSet.buildDate(2018, 1, 25), SetType.PROMOTIONAL);
|
||||
this.hasBoosters = false;
|
||||
this.hasBasicLands = false;
|
||||
|
||||
cards.add(new SetCardInfo("Flooded Strand", 2018, Rarity.RARE, mage.cards.f.FloodedStrand.class));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue