Added DD1 token images

This commit is contained in:
PurpleCrowbar 2022-06-04 16:53:11 +01:00
parent a35e31ae56
commit 4ba695e741
5 changed files with 14 additions and 4 deletions

View file

@ -1211,6 +1211,11 @@ public class ScryfallImageSupportTokens {
put ("MOR/Giant Warrior", "https://api.scryfall.com/cards/tmor/1/en?format=image"); put ("MOR/Giant Warrior", "https://api.scryfall.com/cards/tmor/1/en?format=image");
put ("MOR/Treefolk Shaman", "https://api.scryfall.com/cards/tmor/3/en?format=image"); put ("MOR/Treefolk Shaman", "https://api.scryfall.com/cards/tmor/3/en?format=image");
// DD1
put ("DD1/Elemental", "https://api.scryfall.com/cards/tdd1/T1/en?format=image");
put ("DD1/Elf Warrior", "https://api.scryfall.com/cards/tdd1/T2/en?format=image");
put ("DD1/Goblin", "https://api.scryfall.com/cards/tdd1/T3/en?format=image");
// generate supported sets // generate supported sets
supportedSets.clear(); supportedSets.clear();
for (String cardName : this.keySet()) { for (String cardName : this.keySet()) {

View file

@ -1847,3 +1847,8 @@
|Generate|TOK:PCA|Saproling|||SaprolingToken| |Generate|TOK:PCA|Saproling|||SaprolingToken|
|Generate|TOK:PCA|Spider|||PenumbraSpiderToken| |Generate|TOK:PCA|Spider|||PenumbraSpiderToken|
|Generate|TOK:PCA|Zombie|||ZombieToken| |Generate|TOK:PCA|Zombie|||ZombieToken|
# DD1
|Generate|TOK:DD1|Elemental|||VoiceOfTheWoodsElementalToken|
|Generate|TOK:DD1|Elf Warrior|||ElfWarriorToken|
|Generate|TOK:DD1|Goblin|||GoblinToken|

View file

@ -20,7 +20,7 @@ public final class ElfWarriorToken extends TokenImpl {
power = new MageInt(1); power = new MageInt(1);
toughness = new MageInt(1); toughness = new MageInt(1);
availableImageSetCodes = Arrays.asList("C14", "C16", "EVG", "EMA", "LRW", "ORI", "SHM", "M19", "CMR", "KHM", "NCC", "DDU", "CMA"); availableImageSetCodes = Arrays.asList("C14", "C16", "EVG", "EMA", "LRW", "ORI", "SHM", "M19", "CMR", "KHM", "NCC", "DDU", "CMA", "DD1");
} }
public ElfWarriorToken(final ElfWarriorToken token) { public ElfWarriorToken(final ElfWarriorToken token) {

View file

@ -32,7 +32,7 @@ public final class GoblinToken extends TokenImpl {
availableImageSetCodes = Arrays.asList("10E", "ALA", "SOM", "M10", "NPH", "M13", "RTR", availableImageSetCodes = Arrays.asList("10E", "ALA", "SOM", "M10", "NPH", "M13", "RTR",
"MMA", "M15", "C14", "KTK", "EVG", "DTK", "ORI", "DDG", "DDN", "EVG", "MM2", "MMA", "M15", "C14", "KTK", "EVG", "DTK", "ORI", "DDG", "DDN", "EVG", "MM2",
"MM3", "EMA", "C16", "DOM", "ANA", "RNA", "WAR", "MH1", "TSR", "MH2", "AFR", "NEC", "M19", "CM2", "PCA"); "MM3", "EMA", "C16", "DOM", "ANA", "RNA", "WAR", "MH1", "TSR", "MH2", "AFR", "NEC", "M19", "CM2", "PCA", "DD1");
} }
public GoblinToken(final GoblinToken token) { public GoblinToken(final GoblinToken token) {

View file

@ -23,7 +23,7 @@ public final class VoiceOfTheWoodsElementalToken extends TokenImpl {
addAbility(TrampleAbility.getInstance()); addAbility(TrampleAbility.getInstance());
availableImageSetCodes.addAll(Arrays.asList("EVG", "KHC")); availableImageSetCodes.addAll(Arrays.asList("DD1", "EVG", "KHC"));
} }
public VoiceOfTheWoodsElementalToken(final VoiceOfTheWoodsElementalToken token) { public VoiceOfTheWoodsElementalToken(final VoiceOfTheWoodsElementalToken token) {