diff --git a/Mage.Client/src/main/java/org/mage/plugins/card/dl/sources/ScryfallImageSupportTokens.java b/Mage.Client/src/main/java/org/mage/plugins/card/dl/sources/ScryfallImageSupportTokens.java index 5aeb1d0e19e..44624ca2ddf 100644 --- a/Mage.Client/src/main/java/org/mage/plugins/card/dl/sources/ScryfallImageSupportTokens.java +++ b/Mage.Client/src/main/java/org/mage/plugins/card/dl/sources/ScryfallImageSupportTokens.java @@ -2013,6 +2013,20 @@ public class ScryfallImageSupportTokens { put("MUL/Elemental", "https://api.scryfall.com/cards/tmul/2/en?format=image"); put("MUL/Phyrexian Myr", "https://api.scryfall.com/cards/tmul/1/en?format=image"); + // LTR + put("LTR/Ballistic Boulder", "https://api.scryfall.com/cards/tltr/8/en?format=image"); + put("LTR/Food/1", "https://api.scryfall.com/cards/tltr/9/en?format=image"); + put("LTR/Food/2", "https://api.scryfall.com/cards/tltr/10/en?format=image"); + put("LTR/Food/3", "https://api.scryfall.com/cards/tltr/11/en?format=image"); + put("LTR/Human Soldier/1", "https://api.scryfall.com/cards/tltr/1/en?format=image"); + put("LTR/Human Soldier/2", "https://api.scryfall.com/cards/tltr/2/en?format=image"); + put("LTR/Orc Army/1", "https://api.scryfall.com/cards/tltr/5/en?format=image"); + put("LTR/Orc Army/2", "https://api.scryfall.com/cards/tltr/6/en?format=image"); + put("LTR/Smaug", "https://api.scryfall.com/cards/tltr/7/en?format=image"); + put("LTR/Spirit", "https://api.scryfall.com/cards/tltr/3/en?format=image"); + put("LTR/Tentacle", "https://api.scryfall.com/cards/tltr/4/en?format=image"); + put("LTR/Treasure", "https://api.scryfall.com/cards/tltr/12/en?format=image"); + // generate supported sets supportedSets.clear(); for (String cardName : this.keySet()) { diff --git a/Mage/src/main/resources/tokens-database.txt b/Mage/src/main/resources/tokens-database.txt index ce17db46a69..cba9511bb18 100644 --- a/Mage/src/main/resources/tokens-database.txt +++ b/Mage/src/main/resources/tokens-database.txt @@ -2023,4 +2023,18 @@ # MUL |Generate|TOK:MUL|Elemental|||Elemental31TrampleHasteToken| -|Generate|TOK:MUL|Phyrexian Myr|||BrudicladTelchorMyrToken| \ No newline at end of file +|Generate|TOK:MUL|Phyrexian Myr|||BrudicladTelchorMyrToken| + +# LTR +|Generate|TOK:LTR|Ballistic Boulder|||BallisticBoulder| +|Generate|TOK:LTR|Food|1||FoodToken| +|Generate|TOK:LTR|Food|2||FoodToken| +|Generate|TOK:LTR|Food|3||FoodToken| +|Generate|TOK:LTR|Human Soldier|1||HumanSoldierToken| +|Generate|TOK:LTR|Human Soldier|2||HumanSoldierToken| +|Generate|TOK:LTR|Orc Army|1||OrcArmyToken| +|Generate|TOK:LTR|Orc Army|2||OrcArmyToken| +|Generate|TOK:LTR|Smaug|||SmaugToken| +|Generate|TOK:LTR|Spirit|||SpiritWhiteToken| +|Generate|TOK:LTR|Tentacle|||TentacleToken| +|Generate|TOK:LTR|Treasure|||TreasureToken| \ No newline at end of file