foul-magics/Mage.Sets/src/mage/sets/JudgeGiftCards1999.java
Jmlundeen e34ebe740e
Feature: Retro Border Renderer (#13563)
* Add Retro Card Renderer

* Updated old sets with retro frames

Adds sets:
* 30th Anniversary Play Promos
* 30th Anniversary Misc Promos
* Eternal Weekend
* MagicFest 2025
* Modern Horizon 2 Timeshifts
2025-04-22 17:37:57 -05:00

25 lines
708 B
Java

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, RETRO_ART));
}
}