mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
* Added new set: M20 Promo Packs (PPP1);
This commit is contained in:
parent
f576e4e9ce
commit
745fa002bc
2 changed files with 30 additions and 0 deletions
|
@ -251,6 +251,7 @@ public class ScryfallImageSupportCards {
|
|||
add("PS19");
|
||||
add("SS1");
|
||||
add("SS2");
|
||||
add("PPP1");
|
||||
}
|
||||
};
|
||||
|
||||
|
|
29
Mage.Sets/src/mage/sets/M20PromoPacks.java
Normal file
29
Mage.Sets/src/mage/sets/M20PromoPacks.java
Normal file
|
@ -0,0 +1,29 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* @author JayDi85
|
||||
*/
|
||||
public final class M20PromoPacks extends ExpansionSet {
|
||||
|
||||
private static final M20PromoPacks instance = new M20PromoPacks();
|
||||
|
||||
public static M20PromoPacks getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private M20PromoPacks() {
|
||||
super("M20 Promo Packs", "PPP1", ExpansionSet.buildDate(2019, 7, 12), 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