mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Added DD1 token images
This commit is contained in:
parent
a35e31ae56
commit
4ba695e741
5 changed files with 14 additions and 4 deletions
|
@ -1211,6 +1211,11 @@ public class ScryfallImageSupportTokens {
|
|||
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");
|
||||
|
||||
// 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
|
||||
supportedSets.clear();
|
||||
for (String cardName : this.keySet()) {
|
||||
|
|
|
@ -1847,3 +1847,8 @@
|
|||
|Generate|TOK:PCA|Saproling|||SaprolingToken|
|
||||
|Generate|TOK:PCA|Spider|||PenumbraSpiderToken|
|
||||
|Generate|TOK:PCA|Zombie|||ZombieToken|
|
||||
|
||||
# DD1
|
||||
|Generate|TOK:DD1|Elemental|||VoiceOfTheWoodsElementalToken|
|
||||
|Generate|TOK:DD1|Elf Warrior|||ElfWarriorToken|
|
||||
|Generate|TOK:DD1|Goblin|||GoblinToken|
|
|
@ -20,7 +20,7 @@ public final class ElfWarriorToken extends TokenImpl {
|
|||
power = 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) {
|
||||
|
|
|
@ -32,7 +32,7 @@ public final class GoblinToken extends TokenImpl {
|
|||
|
||||
availableImageSetCodes = Arrays.asList("10E", "ALA", "SOM", "M10", "NPH", "M13", "RTR",
|
||||
"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) {
|
||||
|
|
|
@ -23,7 +23,7 @@ public final class VoiceOfTheWoodsElementalToken extends TokenImpl {
|
|||
|
||||
addAbility(TrampleAbility.getInstance());
|
||||
|
||||
availableImageSetCodes.addAll(Arrays.asList("EVG", "KHC"));
|
||||
availableImageSetCodes.addAll(Arrays.asList("DD1", "EVG", "KHC"));
|
||||
}
|
||||
|
||||
public VoiceOfTheWoodsElementalToken(final VoiceOfTheWoodsElementalToken token) {
|
||||
|
|
Loading…
Reference in a new issue