Add the Judge Gift Cards 2000 (G00) set.

This commit is contained in:
Thomas Hess 2020-01-16 19:35:52 +01:00
parent b56882091e
commit 2a1c98e58c
No known key found for this signature in database
GPG key ID: 98602F47D161B13C
2 changed files with 27 additions and 1 deletions

View file

@ -65,7 +65,7 @@ public class ScryfallImageSupportCards {
add("G99");
add("G00");
add("G01");
// Other promo sets
add("PWOR");
add("PWOS");

View file

@ -0,0 +1,26 @@
package mage.sets;
import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;
/**
* https://scryfall.com/sets/g00
*/
public class JudgeGiftCards2000 extends ExpansionSet {
private static final JudgeGiftCards2000 instance = new JudgeGiftCards2000();
public static JudgeGiftCards2000 getInstance() {
return instance;
}
private JudgeGiftCards2000() {
super("Judge Gift Cards 2000", "G00", ExpansionSet.buildDate(2000, 1, 1), SetType.PROMOTIONAL);
this.hasBoosters = false;
this.hasBasicLands = false;
cards.add(new SetCardInfo("Counterspell", 1, Rarity.RARE, mage.cards.c.Counterspell.class));
cards.add(new SetCardInfo("Vampiric Tutor", 2, Rarity.RARE, mage.cards.v.VampiricTutor.class));
}
}