mirror of
https://github.com/correl/mage.git
synced 2025-01-03 19:17:30 +00:00
Added the 2017 Gift Pack (G17) set.
This commit is contained in:
parent
53309191f9
commit
126a434156
1 changed files with 29 additions and 0 deletions
29
Mage.Sets/src/mage/sets/GiftPack2017.java
Normal file
29
Mage.Sets/src/mage/sets/GiftPack2017.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/g17
|
||||
*/
|
||||
public class GiftPack2017 extends ExpansionSet {
|
||||
|
||||
private static final GiftPack2017 instance = new GiftPack2017();
|
||||
|
||||
public static GiftPack2017 getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private GiftPack2017() {
|
||||
super("Gift Pack 2017", "G17", ExpansionSet.buildDate(2017, 10, 20), 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