Add the Judge Gift Cards 1999 (G99) set.

This commit is contained in:
Thomas Hess 2020-01-16 18:46:22 +01:00
parent 4d3e41fa35
commit 2458c6479a
No known key found for this signature in database
GPG key ID: 98602F47D161B13C

View file

@ -0,0 +1,25 @@
package mage.sets;
import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;
/**
* https://scryfall.com/sets/g99
*/
public class JudgeGiftCards1999 extends ExpansionSet {
private static final JudgeGiftCards1999 instance = new JudgeGiftCards1999();
public static JudgeGiftCards1999 getInstance() {
return instance;
}
private JudgeGiftCards1999() {
super("Judge Gift Cards 1999", "G99", ExpansionSet.buildDate(1999, 1, 1), SetType.PROMOTIONAL);
this.hasBoosters = false;
this.hasBasicLands = false;
cards.add(new SetCardInfo("Memory Lapse", 1, Rarity.RARE, mage.cards.m.MemoryLapse.class));
}
}