mirror of
https://github.com/correl/mage.git
synced 2024-11-16 11:09:29 +00:00
Added the M19 Standard Showdown (PSS3) set.
This commit is contained in:
parent
8e608aeeb1
commit
35d8814798
2 changed files with 30 additions and 0 deletions
|
@ -5,6 +5,7 @@ import mage.constants.Rarity;
|
|||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* https://scryfall.com/sets/g18
|
||||
* @author JayDi85
|
||||
*/
|
||||
public final class M19GiftPack extends ExpansionSet {
|
||||
|
|
29
Mage.Sets/src/mage/sets/M19StandardShowdown.java
Normal file
29
Mage.Sets/src/mage/sets/M19StandardShowdown.java
Normal file
|
@ -0,0 +1,29 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* https://scryfall.com/sets/pss3
|
||||
*/
|
||||
public class M19StandardShowdown extends ExpansionSet {
|
||||
|
||||
private static final M19StandardShowdown instance = new M19StandardShowdown();
|
||||
|
||||
public static M19StandardShowdown getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private M19StandardShowdown() {
|
||||
super("M19 Standard Showdown", "PSS3", ExpansionSet.buildDate(2018, 7, 13), SetType.PROMOTIONAL);
|
||||
this.hasBoosters = false;
|
||||
this.hasBasicLands = true;
|
||||
|
||||
cards.add(new SetCardInfo("Forest", 5, Rarity.LAND, mage.cards.basiclands.Forest.class));
|
||||
cards.add(new SetCardInfo("Island", 2, Rarity.LAND, mage.cards.basiclands.Island.class));
|
||||
cards.add(new SetCardInfo("Mountain", 4, Rarity.LAND, mage.cards.basiclands.Mountain.class));
|
||||
cards.add(new SetCardInfo("Plains", 1, Rarity.LAND, mage.cards.basiclands.Plains.class));
|
||||
cards.add(new SetCardInfo("Swamp", 3, Rarity.LAND, mage.cards.basiclands.Swamp.class));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue