mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
* Added new set: San Diego Comic-Con 2019 (PS19);
This commit is contained in:
parent
f19cb4076a
commit
d5b972aab2
2 changed files with 30 additions and 0 deletions
|
@ -247,6 +247,7 @@ public class ScryfallImageSupportCards {
|
||||||
add("GRC");
|
add("GRC");
|
||||||
add("ANA");
|
add("ANA");
|
||||||
add("G18");
|
add("G18");
|
||||||
|
add("PS19");
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
29
Mage.Sets/src/mage/sets/SanDiegoComicCon2019.java
Normal file
29
Mage.Sets/src/mage/sets/SanDiegoComicCon2019.java
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
package mage.sets;
|
||||||
|
|
||||||
|
import mage.cards.ExpansionSet;
|
||||||
|
import mage.constants.Rarity;
|
||||||
|
import mage.constants.SetType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author JayDi85
|
||||||
|
*/
|
||||||
|
public final class SanDiegoComicCon2019 extends ExpansionSet {
|
||||||
|
|
||||||
|
private static final SanDiegoComicCon2019 instance = new SanDiegoComicCon2019();
|
||||||
|
|
||||||
|
public static SanDiegoComicCon2019 getInstance() {
|
||||||
|
return instance;
|
||||||
|
}
|
||||||
|
|
||||||
|
private SanDiegoComicCon2019() {
|
||||||
|
super("San Diego Comic-Con 2019", "PS19", ExpansionSet.buildDate(2019, 7, 18), SetType.PROMOTIONAL);
|
||||||
|
this.hasBoosters = false;
|
||||||
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
|
cards.add(new SetCardInfo("God-Eternal Bontu", 92, Rarity.MYTHIC, mage.cards.g.GodEternalBontu.class));
|
||||||
|
cards.add(new SetCardInfo("God-Eternal Kefnet", 53, Rarity.MYTHIC, mage.cards.g.GodEternalKefnet.class));
|
||||||
|
cards.add(new SetCardInfo("God-Eternal Oketra", 16, Rarity.MYTHIC, mage.cards.g.GodEternalOketra.class));
|
||||||
|
cards.add(new SetCardInfo("God-Eternal Rhonas", 163, Rarity.MYTHIC, mage.cards.g.GodEternalRhonas.class));
|
||||||
|
cards.add(new SetCardInfo("Nicol Bolas, Dragon-God", 207, Rarity.MYTHIC, mage.cards.n.NicolBolasDragonGod.class));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue