mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
* Added new set M19 Gift Pack (G18) with 5 new cards (#5779);
This commit is contained in:
parent
495aad8542
commit
7844291632
2 changed files with 30 additions and 0 deletions
|
@ -245,6 +245,7 @@ public class ScryfallImageSupportCards {
|
|||
add("ATH");
|
||||
add("GRC");
|
||||
add("ANA");
|
||||
add("G18");
|
||||
}
|
||||
};
|
||||
|
||||
|
|
29
Mage.Sets/src/mage/sets/M19GiftPack.java
Normal file
29
Mage.Sets/src/mage/sets/M19GiftPack.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 M19GiftPack extends ExpansionSet {
|
||||
|
||||
private static final M19GiftPack instance = new M19GiftPack();
|
||||
|
||||
public static M19GiftPack getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private M19GiftPack() {
|
||||
super("M19 Gift Pack", "G18", ExpansionSet.buildDate(2018, 11, 16), SetType.SUPPLEMENTAL_STANDARD_LEGAL);
|
||||
this.hasBasicLands = false;
|
||||
this.hasBoosters = false;
|
||||
|
||||
cards.add(new SetCardInfo("Angelic Guardian", "GP1", Rarity.RARE, mage.cards.a.AngelicGuardian.class));
|
||||
cards.add(new SetCardInfo("Angler Turtle", "GP2", Rarity.RARE, mage.cards.a.AnglerTurtle.class));
|
||||
cards.add(new SetCardInfo("Immortal Phoenix", "GP4", Rarity.RARE, mage.cards.i.ImmortalPhoenix.class));
|
||||
cards.add(new SetCardInfo("Rampaging Brontodon", "GP5", Rarity.RARE, mage.cards.r.RampagingBrontodon.class));
|
||||
cards.add(new SetCardInfo("Vengeant Vampire", "GP3", Rarity.RARE, mage.cards.v.VengeantVampire.class));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue