[SLC] rename set

This commit is contained in:
theelk801 2025-10-02 13:40:43 -04:00
parent df7187f09a
commit 28409fefd4
2 changed files with 6 additions and 6 deletions

View file

@ -535,7 +535,7 @@ public class ScryfallImageSupportCards {
add("SCD"); // Starter Commander Decks
add("PW23"); // Wizards Play Network 2023
add("P23"); // Judge Gift Cards 2023
add("SLC"); // Secret Lair 30th Anniversary Countdown Kit
add("SLC"); // Secret Lair Countdown
add("DMR"); // Dominaria Remastered
add("ONE"); // Phyrexia: All Will Be One
add("ONC"); // Phyrexia: All Will Be One Commander

View file

@ -7,16 +7,16 @@ import mage.constants.SetType;
/**
* https://scryfall.com/sets/slc
*/
public class SecretLair30thAnniversaryCountdownKit extends ExpansionSet {
public class SecretLairCountdown extends ExpansionSet {
private static final SecretLair30thAnniversaryCountdownKit instance = new SecretLair30thAnniversaryCountdownKit();
private static final SecretLairCountdown instance = new SecretLairCountdown();
public static SecretLair30thAnniversaryCountdownKit getInstance() {
public static SecretLairCountdown getInstance() {
return instance;
}
private SecretLair30thAnniversaryCountdownKit() {
super("Secret Lair 30th Anniversary Countdown Kit", "SLC", ExpansionSet.buildDate(2022, 11, 1), SetType.PROMOTIONAL);
private SecretLairCountdown() {
super("Secret Lair Countdown", "SLC", ExpansionSet.buildDate(2022, 11, 1), SetType.PROMOTIONAL);
this.hasBasicLands = false;
cards.add(new SetCardInfo("Arclight Phoenix", 2018, Rarity.MYTHIC, mage.cards.a.ArclightPhoenix.class));