mirror of
https://github.com/correl/mage.git
synced 2024-11-16 19:19:30 +00:00
Add the Judge Gift Cards 1999 (G99) set.
This commit is contained in:
parent
4d3e41fa35
commit
2458c6479a
1 changed files with 25 additions and 0 deletions
25
Mage.Sets/src/mage/sets/JudgeGiftCards1999.java
Normal file
25
Mage.Sets/src/mage/sets/JudgeGiftCards1999.java
Normal 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));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue