[LTR] fixed card number of The One Ring (0 number for tokens only);

This commit is contained in:
Oleg Agafonov 2024-01-20 15:33:15 +04:00
parent 258a98bddd
commit a81cb306d4
2 changed files with 4 additions and 1 deletions

View file

@ -1022,6 +1022,9 @@ public class ScryfallImageSupportCards {
// CALC - custom alchemy version of cards. // CALC - custom alchemy version of cards.
put("CALC/C-Pillar of the Paruns", "https://api.scryfall.com/cards/dis/176/"); put("CALC/C-Pillar of the Paruns", "https://api.scryfall.com/cards/dis/176/");
// LTR - 0 number for tokens only
put("LTR/The One Ring/001", "https://api.scryfall.com/cards/ltr/0/");
// REX - double faced lands (xmage uses two diff lands for it) // REX - double faced lands (xmage uses two diff lands for it)
put("REX/Command Tower/26", "https://api.scryfall.com/cards/rex/26/en?format=image"); put("REX/Command Tower/26", "https://api.scryfall.com/cards/rex/26/en?format=image");
put("REX/Command Tower/26b", "https://api.scryfall.com/cards/rex/26/en?format=image&face=back"); put("REX/Command Tower/26b", "https://api.scryfall.com/cards/rex/26/en?format=image&face=back");

View file

@ -788,7 +788,7 @@ public final class TheLordOfTheRingsTalesOfMiddleEarth extends ExpansionSet {
cards.add(new SetCardInfo("The Grey Havens", 706, Rarity.UNCOMMON, mage.cards.t.TheGreyHavens.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("The Grey Havens", 706, Rarity.UNCOMMON, mage.cards.t.TheGreyHavens.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("The Mouth of Sauron", 216, Rarity.UNCOMMON, mage.cards.t.TheMouthOfSauron.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("The Mouth of Sauron", 216, Rarity.UNCOMMON, mage.cards.t.TheMouthOfSauron.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("The Mouth of Sauron", 667, Rarity.UNCOMMON, mage.cards.t.TheMouthOfSauron.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("The Mouth of Sauron", 667, Rarity.UNCOMMON, mage.cards.t.TheMouthOfSauron.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("The One Ring", 0, Rarity.MYTHIC, mage.cards.t.TheOneRing.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("The One Ring", "001", Rarity.MYTHIC, mage.cards.t.TheOneRing.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("The One Ring", 246, Rarity.MYTHIC, mage.cards.t.TheOneRing.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("The One Ring", 246, Rarity.MYTHIC, mage.cards.t.TheOneRing.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("The One Ring", 380, Rarity.MYTHIC, mage.cards.t.TheOneRing.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("The One Ring", 380, Rarity.MYTHIC, mage.cards.t.TheOneRing.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("The One Ring", 451, Rarity.MYTHIC, mage.cards.t.TheOneRing.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("The One Ring", 451, Rarity.MYTHIC, mage.cards.t.TheOneRing.class, NON_FULL_USE_VARIOUS));