Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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");

Expand Down
Original file line number Diff line number Diff line change
@@ -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));
}
}