final cleanup for updated set names

This commit is contained in:
xenohedron 2023-09-12 00:56:41 -04:00
parent bdbbcca937
commit e87bf3724c
5 changed files with 4 additions and 61 deletions

View file

@ -57,7 +57,6 @@ public class ScryfallImageSupportCards {
add("VIS"); // Visions
add("5ED"); // Fifth Edition
//add("PVAN"); // Vanguard Series
add("PPOD"); // Portal Demo Game
add("POR"); // Portal
add("WTH"); // Weatherlight
add("WC97"); // World Championship Decks 1997
@ -164,7 +163,6 @@ public class ScryfallImageSupportCards {
add("FUT"); // Future Sight
add("10E"); // Tenth Edition
add("P10E"); // Tenth Edition Promos
add("PSUM"); // Summer of Magic
add("ME1"); // Masters Edition
add("LRW"); // Lorwyn
add("DD1"); // Duel Decks: Elves vs. Goblins

View file

@ -5,7 +5,7 @@ import mage.constants.Rarity;
import mage.constants.SetType;
/**
* https://scryfall.com/sets/htr16
* https://scryfall.com/sets/phtr
* @author TheElk801
*/
public final class HeroesOfTheRealm2016 extends ExpansionSet {
@ -17,7 +17,7 @@ public final class HeroesOfTheRealm2016 extends ExpansionSet {
}
private HeroesOfTheRealm2016() {
super("Heroes of the Realm 2016", "PTHR", ExpansionSet.buildDate(2017, 9, 20), SetType.JOKESET);
super("Heroes of the Realm 2016", "PHTR", ExpansionSet.buildDate(2017, 9, 20), SetType.JOKESET);
this.hasBasicLands = false;
cards.add(new SetCardInfo("Chandra, Gremlin Wrangler", 1, Rarity.MYTHIC, mage.cards.c.ChandraGremlinWrangler.class));

View file

@ -1,30 +0,0 @@
package mage.sets;
import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;
/**
* https://scryfall.com/sets/ppod
*/
public class PortalDemoGame extends ExpansionSet {
private static final PortalDemoGame instance = new PortalDemoGame();
public static PortalDemoGame getInstance() {
return instance;
}
private PortalDemoGame() {
super("Portal Demo Game", "PPOD", ExpansionSet.buildDate(1997, 5, 1), SetType.SUPPLEMENTAL);
this.hasBoosters = false;
this.hasBasicLands = false;
cards.add(new SetCardInfo("Armored Pegasus", 1, Rarity.COMMON, mage.cards.a.ArmoredPegasus.class));
cards.add(new SetCardInfo("Bull Hippo", 2, Rarity.UNCOMMON, mage.cards.b.BullHippo.class));
cards.add(new SetCardInfo("Cloud Pirates", 3, Rarity.COMMON, mage.cards.c.CloudPirates.class));
cards.add(new SetCardInfo("Feral Shadow", 4, Rarity.COMMON, mage.cards.f.FeralShadow.class));
cards.add(new SetCardInfo("Snapping Drake", 5, Rarity.COMMON, mage.cards.s.SnappingDrake.class));
cards.add(new SetCardInfo("Storm Crow", 6, Rarity.COMMON, mage.cards.s.StormCrow.class));
}
}

View file

@ -1,27 +0,0 @@
package mage.sets;
import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;
/**
* https://scryfall.com/sets/psum
* This is not the "Summer Magic" Revised printing.
*/
public class SummerOfMagic extends ExpansionSet {
private static final SummerOfMagic instance = new SummerOfMagic();
public static SummerOfMagic getInstance() {
return instance;
}
private SummerOfMagic() {
super("Summer of Magic", "PSUM", ExpansionSet.buildDate(2007, 7, 21), SetType.PROMOTIONAL);
this.hasBoosters = false;
this.hasBasicLands = false;
cards.add(new SetCardInfo("Faerie Conclave", 1, Rarity.RARE, mage.cards.f.FaerieConclave.class));
cards.add(new SetCardInfo("Treetop Village", 2, Rarity.RARE, mage.cards.t.TreetopVillage.class));
}
}

View file

@ -20,6 +20,8 @@ public class TenthEditionPromos extends ExpansionSet {
this.hasBoosters = false;
this.hasBasicLands = false;
cards.add(new SetCardInfo("Faerie Conclave", 1, Rarity.RARE, mage.cards.f.FaerieConclave.class));
cards.add(new SetCardInfo("Treetop Village", 2, Rarity.RARE, mage.cards.t.TreetopVillage.class));
cards.add(new SetCardInfo("Reya Dawnbringer", 35, Rarity.RARE, mage.cards.r.ReyaDawnbringer.class));
}
}