Skip to content

Commit

Permalink
deck: deleted outdated promo sets (#13221), fixed outdated names for …
Browse files Browse the repository at this point in the history
…some old sets (part 4)
  • Loading branch information
JayDi85 committed Jan 25, 2025
1 parent 38ae449 commit 1c8986c
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 89 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public class ScryfallImageSupportCards {
add("PAL06"); // Arena League 2006
//add("PMPS06"); // Magic Premiere Shop 2006
add("PHUK"); // Hachette UK
add("PDCI"); // DCI Promos
add("DCI"); // DCI Promos
add("P06"); // Magic Player Rewards 2006
add("G06"); // Judge Gift Cards 2006
add("F06"); // Friday Night Magic 2006
Expand Down Expand Up @@ -190,7 +190,6 @@ public class ScryfallImageSupportCards {
add("P09"); // Magic Player Rewards 2009
add("G09"); // Judge Gift Cards 2009
add("F09"); // Friday Night Magic 2009
add("PBOOK"); // Miscellaneous Book Promos
add("CON"); // Conflux
add("DDC"); // Duel Decks: Divine vs. Demonic
add("ARB"); // Alara Reborn
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ public String getSourceName() {
setsAliases.put("M13", "Magic 2013");
setsAliases.put("M14", "Magic 2014");
setsAliases.put("M15", "Magic 2015");
setsAliases.put("PMEI", "Media Inserts");
setsAliases.put("PMEI", "Media and Collaboration Promos");
setsAliases.put("MBS", "Mirrodin Besieged");
setsAliases.put("ME2", "Masters Edition II");
setsAliases.put("ME3", "Masters Edition III");
Expand Down
9 changes: 7 additions & 2 deletions Mage.Sets/src/mage/sets/AvacynRestoredPromos.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package mage.sets;

import mage.cards.CardGraphicInfo;
import mage.cards.ExpansionSet;
import mage.cards.FrameStyle;
import mage.constants.Rarity;
import mage.constants.SetType;

Expand All @@ -20,8 +22,11 @@ private AvacynRestoredPromos() {
this.hasBoosters = false;
this.hasBasicLands = false;

cards.add(new SetCardInfo("Killing Wave", 111, Rarity.RARE, mage.cards.k.KillingWave.class));
cards.add(new SetCardInfo("Latch Seeker", 63, Rarity.UNCOMMON, mage.cards.l.LatchSeeker.class));
final CardGraphicInfo FULL_ART = new CardGraphicInfo(FrameStyle.MPOP_FULL_ART_BASIC, false);

cards.add(new SetCardInfo("Angel of Glory's Rise", "A9", Rarity.RARE, mage.cards.a.AngelOfGlorysRise.class));
cards.add(new SetCardInfo("Killing Wave", 111, Rarity.RARE, mage.cards.k.KillingWave.class, FULL_ART));
cards.add(new SetCardInfo("Latch Seeker", 63, Rarity.UNCOMMON, mage.cards.l.LatchSeeker.class, FULL_ART));
cards.add(new SetCardInfo("Moonsilver Spear", "217*", Rarity.RARE, mage.cards.m.MoonsilverSpear.class));
cards.add(new SetCardInfo("Restoration Angel", "32*", Rarity.RARE, mage.cards.r.RestorationAngel.class));
cards.add(new SetCardInfo("Silverblade Paladin", "36*", Rarity.RARE, mage.cards.s.SilverbladePaladin.class));
Expand Down
4 changes: 2 additions & 2 deletions Mage.Sets/src/mage/sets/DCIPromos.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import mage.constants.SetType;

/**
* https://scryfall.com/sets/pdci
* https://scryfall.com/sets/dci
*/
public class DCIPromos extends ExpansionSet {

Expand All @@ -16,7 +16,7 @@ public static DCIPromos getInstance() {
}

private DCIPromos() {
super("DCI Promos", "PDCI", ExpansionSet.buildDate(2006, 1, 1), SetType.PROMOTIONAL);
super("DCI Promos", "DCI", ExpansionSet.buildDate(2006, 1, 1), SetType.PROMOTIONAL);
this.hasBoosters = false;
this.hasBasicLands = false;

Expand Down
25 changes: 0 additions & 25 deletions Mage.Sets/src/mage/sets/MiscellaneousBookPromos.java

This file was deleted.

56 changes: 0 additions & 56 deletions Mage.Sets/src/mage/sets/ResalePromos.java

This file was deleted.

2 changes: 1 addition & 1 deletion Mage/src/test/data/importer/testdeckCommander.json
Original file line number Diff line number Diff line change
Expand Up @@ -11960,7 +11960,7 @@
"ONC",
"OTC",
"OTP",
"PDCI",
"DCI",
"PF20",
"PIP",
"PLST",
Expand Down

0 comments on commit 1c8986c

Please sign in to comment.