This commit is contained in:
Muz 2026-01-26 14:03:57 -06:00 committed by GitHub
commit 60cefaf5e3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 28 additions and 1 deletions

View file

@ -619,6 +619,7 @@ public class ScryfallImageSupportCards {
add("ECC"); // Lorwyn Eclipsed Commander
add("TMT"); // Teenage Mutant Ninja Turtles
add("TMC"); // Teenage Mutant Ninja Turtles Eternal
add("PZA"); // Teenage Mutant Ninja Turtles Source Material
add("MSH"); // Marvel Super Heroes
add("MSC"); // Marvel Super Heroes Commander
@ -744,7 +745,7 @@ public class ScryfallImageSupportCards {
// LTR - 0 number for tokens only
// Scryfall has a bug, for some reason this link doesn't work with ?format=image even though it works with ?format=json
// and ?format=text. Base url fails because language is qya and not en and alternate url fails because of this bug
// TODO: This should be reverted when Scryfall fixes the bug
// TODO: This should be reverted when Scryfall fixes the bug
// put("LTR/The One Ring/001", "https://api.scryfall.com/cards/ltr/0/");
put("LTR/The One Ring/001", "https://api.scryfall.com/cards/ltr/0/qya?format=image");

View file

@ -0,0 +1,26 @@
package mage.sets;
import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;
/**
* @author muz
*/
public final class TeenageMutantNinjaTurtlesSourceMaterial extends ExpansionSet {
private static final TeenageMutantNinjaTurtlesSourceMaterial instance = new TeenageMutantNinjaTurtlesSourceMaterial();
public static TeenageMutantNinjaTurtlesSourceMaterial getInstance() {
return instance;
}
private TeenageMutantNinjaTurtlesSourceMaterial() {
super("Teenage Mutant Ninja Turtles Source Material", "PZA", ExpansionSet.buildDate(2026, 3, 6), SetType.SUPPLEMENTAL);
this.hasBoosters = false;
this.hasBasicLands = false;
this.maxCardNumberInBooster = 64; // TODO: Update once more info is available
cards.add(new SetCardInfo("Doubling Season", 11, Rarity.MYTHIC, mage.cards.d.DoublingSeason.class));
}
}