mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
Add the Judge Gift Cards 2000 (G00) set.
This commit is contained in:
parent
b56882091e
commit
2a1c98e58c
2 changed files with 27 additions and 1 deletions
|
@ -65,7 +65,7 @@ public class ScryfallImageSupportCards {
|
|||
add("G99");
|
||||
add("G00");
|
||||
add("G01");
|
||||
|
||||
|
||||
// Other promo sets
|
||||
add("PWOR");
|
||||
add("PWOS");
|
||||
|
|
26
Mage.Sets/src/mage/sets/JudgeGiftCards2000.java
Normal file
26
Mage.Sets/src/mage/sets/JudgeGiftCards2000.java
Normal 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));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue