Added DDC token images

This commit is contained in:
PurpleCrowbar 2022-06-04 15:53:39 +01:00
parent 46396c36da
commit 98f0ff8871
4 changed files with 9 additions and 4 deletions

View file

@ -1185,6 +1185,11 @@ public class ScryfallImageSupportTokens {
put ("ARB/Lizard", "https://api.scryfall.com/cards/tarb/2/en?format=image"); put ("ARB/Lizard", "https://api.scryfall.com/cards/tarb/2/en?format=image");
put ("ARB/Zombie Wizard", "https://api.scryfall.com/cards/tarb/4/en?format=image"); put ("ARB/Zombie Wizard", "https://api.scryfall.com/cards/tarb/4/en?format=image");
// DDC
put ("DDC/Demon", "https://api.scryfall.com/cards/tddc/2/en?format=image");
put ("DDC/Spirit", "https://api.scryfall.com/cards/tddc/1/en?format=image");
put ("DDC/Thrull", "https://api.scryfall.com/cards/tddc/3/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

@ -524,9 +524,9 @@
|Generate|TOK:GVL|Beast|2||BeastToken| |Generate|TOK:GVL|Beast|2||BeastToken|
|Generate|TOK:GVL|Elephant|||ElephantToken| |Generate|TOK:GVL|Elephant|||ElephantToken|
|Generate|TOK:JVC|Elemental Shaman|||ElementalShamanToken| |Generate|TOK:JVC|Elemental Shaman|||ElementalShamanToken|
|Generate|TOK:DDC|Demon|||ReignOfThePitToken| |Generate|TOK:DDC|Demon|||DemonFlyingToken|
|Generate|TOK:DDC|Spirit|||SpiritWhiteToken| |Generate|TOK:DDC|Spirit|||SpiritWhiteToken|
|Generate|TOK:DDC|Thrull|||BreedingPitBlackInsectToken| |Generate|TOK:DDC|Thrull|||BreedingPitThrullToken|
|Generate|TOK:DDD|Ape|||PongifyApeToken| |Generate|TOK:DDD|Ape|||PongifyApeToken|
|Generate|TOK:DDD|Bat|||BatToken| |Generate|TOK:DDD|Bat|||BatToken|
|Generate|TOK:DDD|Beast|1||BeastToken| |Generate|TOK:DDD|Beast|1||BeastToken|

View file

@ -19,7 +19,7 @@ public final class BreedingPitThrullToken extends TokenImpl {
power = new MageInt(0); power = new MageInt(0);
toughness = new MageInt(1); toughness = new MageInt(1);
availableImageSetCodes = Arrays.asList("CMR"); availableImageSetCodes = Arrays.asList("CMR", "DDC");
} }
public BreedingPitThrullToken(final BreedingPitThrullToken token) { public BreedingPitThrullToken(final BreedingPitThrullToken token) {

View file

@ -26,7 +26,7 @@ public final class DemonFlyingToken extends TokenImpl {
addAbility(FlyingAbility.getInstance()); addAbility(FlyingAbility.getInstance());
availableImageSetCodes = Arrays.asList("C14", "C21", "NCC"); availableImageSetCodes = Arrays.asList("C14", "C21", "NCC", "DDC");
} }
public DemonFlyingToken(final DemonFlyingToken token) { public DemonFlyingToken(final DemonFlyingToken token) {