forked from External/mage
tests: fixed verify test with miss booster
This commit is contained in:
parent
28409fefd4
commit
90bdec8f3d
1 changed files with 9 additions and 1 deletions
|
|
@ -8,6 +8,8 @@ import mage.constants.SetType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* https://scryfall.com/sets/sum
|
* https://scryfall.com/sets/sum
|
||||||
|
*
|
||||||
|
* https://mtg.wiki/page/Revised_Edition#%22Summer_Magic%22/%22Edgar%22
|
||||||
*/
|
*/
|
||||||
public class SummerMagicEdgar extends ExpansionSet {
|
public class SummerMagicEdgar extends ExpansionSet {
|
||||||
|
|
||||||
|
|
@ -19,9 +21,15 @@ public class SummerMagicEdgar extends ExpansionSet {
|
||||||
|
|
||||||
private SummerMagicEdgar() {
|
private SummerMagicEdgar() {
|
||||||
super("Summer Magic / Edgar", "SUM", ExpansionSet.buildDate(1994, 6, 21), SetType.CORE);
|
super("Summer Magic / Edgar", "SUM", ExpansionSet.buildDate(1994, 6, 21), SetType.CORE);
|
||||||
this.hasBoosters = false;
|
this.hasBoosters = true;
|
||||||
this.hasBasicLands = true;
|
this.hasBasicLands = true;
|
||||||
|
|
||||||
|
this.numBoosterLands = 1;
|
||||||
|
this.numBoosterCommon = 10;
|
||||||
|
this.numBoosterUncommon = 3;
|
||||||
|
this.numBoosterRare = 1;
|
||||||
|
this.ratioBoosterMythic = 0;
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Air Elemental", 47, Rarity.UNCOMMON, mage.cards.a.AirElemental.class, RETRO_ART));
|
cards.add(new SetCardInfo("Air Elemental", 47, Rarity.UNCOMMON, mage.cards.a.AirElemental.class, RETRO_ART));
|
||||||
cards.add(new SetCardInfo("Aladdin's Lamp", 231, Rarity.RARE, mage.cards.a.AladdinsLamp.class, RETRO_ART));
|
cards.add(new SetCardInfo("Aladdin's Lamp", 231, Rarity.RARE, mage.cards.a.AladdinsLamp.class, RETRO_ART));
|
||||||
cards.add(new SetCardInfo("Aladdin's Ring", 232, Rarity.RARE, mage.cards.a.AladdinsRing.class, RETRO_ART));
|
cards.add(new SetCardInfo("Aladdin's Ring", 232, Rarity.RARE, mage.cards.a.AladdinsRing.class, RETRO_ART));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue