mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 19:41:59 -08:00
Add the Judge Gift Cards 1998 (JGP) set.
This commit is contained in:
parent
cd9b75c0d9
commit
ee7e1651a8
1 changed files with 27 additions and 0 deletions
27
Mage.Sets/src/mage/sets/JudgeGiftCards1998.java
Normal file
27
Mage.Sets/src/mage/sets/JudgeGiftCards1998.java
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* https://scryfall.com/sets/jgp
|
||||
*/
|
||||
public class JudgeGiftCards1998 extends ExpansionSet {
|
||||
|
||||
private static final JudgeGiftCards1998 instance = new JudgeGiftCards1998();
|
||||
|
||||
public static JudgeGiftCards1998 getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private JudgeGiftCards1998() {
|
||||
super("Judge Gift Cards 1998", "JGP", ExpansionSet.buildDate(1998, 1, 1), SetType.PROMOTIONAL);
|
||||
this.hasBoosters = false;
|
||||
this.hasBasicLands = false;
|
||||
|
||||
cards.add(new SetCardInfo("Gaea's Cradle", 3, Rarity.RARE, mage.cards.g.GaeasCradle.class));
|
||||
cards.add(new SetCardInfo("Lightning Bolt", 1, Rarity.RARE, mage.cards.l.LightningBolt.class));
|
||||
cards.add(new SetCardInfo("Stroke of Genius", 2, Rarity.RARE, mage.cards.s.StrokeOfGenius.class));
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue