mirror of
https://github.com/correl/mage.git
synced 2024-11-16 11:09:29 +00:00
Added the XLN Standard Showdown (PSS2) set.
This commit is contained in:
parent
126a434156
commit
fc10674fd1
1 changed files with 29 additions and 0 deletions
29
Mage.Sets/src/mage/sets/IxalanStandardShowdown.java
Normal file
29
Mage.Sets/src/mage/sets/IxalanStandardShowdown.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/pss2
|
||||
*/
|
||||
public class IxalanStandardShowdown extends ExpansionSet {
|
||||
|
||||
private static final IxalanStandardShowdown instance = new IxalanStandardShowdown();
|
||||
|
||||
public static IxalanStandardShowdown getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private IxalanStandardShowdown() {
|
||||
super("Ixalan Standard Showdown", "PSS2", ExpansionSet.buildDate(2017, 9, 29), 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