Add the Judge Gift Cards 2001 (G01) set.

This commit is contained in:
Thomas Hess 2020-01-16 19:44:56 +01:00
parent c43877e382
commit f696ffb948
No known key found for this signature in database
GPG key ID: 98602F47D161B13C

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/g01
*/
public class JudgeGiftCards2001 extends ExpansionSet {
private static final JudgeGiftCards2001 instance = new JudgeGiftCards2001();
public static JudgeGiftCards2001 getInstance() {
return instance;
}
private JudgeGiftCards2001() {
super("Judge Gift Cards 2001", "G01", ExpansionSet.buildDate(2001, 1, 1), SetType.PROMOTIONAL);
this.hasBoosters = false;
this.hasBasicLands = false;
cards.add(new SetCardInfo("Ball Lightning", 1, Rarity.RARE, mage.cards.b.BallLightning.class));
cards.add(new SetCardInfo("Oath of Druids", 2, Rarity.RARE, mage.cards.o.OathOfDruids.class));
}
}