mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
Start PZA set
This commit is contained in:
parent
58abc99d68
commit
b7d75fd674
2 changed files with 28 additions and 1 deletions
|
|
@ -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");
|
||||
|
||||
|
|
|
|||
|
|
@ -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));
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue