Added DDG token images

This commit is contained in:
PurpleCrowbar 2022-06-04 18:44:04 +01:00
parent bbbcde3561
commit 4ea204ed05
4 changed files with 5 additions and 4 deletions

View file

@ -1285,6 +1285,9 @@ public class ScryfallImageSupportTokens {
put ("MBS/Thopter", "https://api.scryfall.com/cards/tmbs/5/en?format=image");
put ("MBS/Zombie", "https://api.scryfall.com/cards/tmbs/2/en?format=image");
// DDG
put ("DDG/Goblin", "https://api.scryfall.com/cards/tddg/1/en?format=image");
// generate supported sets
supportedSets.clear();
for (String cardName : this.keySet()) {

View file

@ -527,9 +527,7 @@
|Generate|TOK:DDE|Phyrexian Minion|||MinionToken|
|Generate|TOK:DDE|Saproling|||SaprolingToken|
|Generate|TOK:DDF|Soldier|||SoldierToken|
|Generate|TOK:DDG|Ape|||PongifyApeToken|
|Generate|TOK:DDG|Goblin|||GoblinToken|
|Generate|TOK:DDG|Griffin|||GriffinToken|
|Generate|TOK:DDH|Griffin|||GriffinToken|
|Generate|TOK:DDH|Saproling|||SaprolingToken|
|Generate|TOK:DDJ|Saproling|||SaprolingToken|

View file

@ -23,7 +23,7 @@ public final class GriffinToken extends TokenImpl {
// Flying
this.addAbility(FlyingAbility.getInstance());
availableImageSetCodes = Arrays.asList("DDG", "DDH", "DDL", "TSP", "M21", "TSR");
availableImageSetCodes = Arrays.asList("DDH", "DDL", "TSP", "M21", "TSR");
}
public GriffinToken(final GriffinToken token) {

View file

@ -21,7 +21,7 @@ public final class PongifyApeToken extends TokenImpl {
power = new MageInt(3);
toughness = new MageInt(3);
availableImageSetCodes = Arrays.asList("C14", "GVL", "DDG", "PLC", "ULG", "UNH", "TSR");
availableImageSetCodes = Arrays.asList("C14", "GVL", "PLC", "ULG", "UNH", "TSR");
}
public PongifyApeToken(final PongifyApeToken token) {