mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
Add the Judge Gift Cards 2001 (G01) set.
This commit is contained in:
parent
c43877e382
commit
f696ffb948
1 changed files with 26 additions and 0 deletions
26
Mage.Sets/src/mage/sets/JudgeGiftCards2001.java
Normal file
26
Mage.Sets/src/mage/sets/JudgeGiftCards2001.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/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));
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue