Added DDD token images

This commit is contained in:
PurpleCrowbar 2022-06-04 18:25:23 +01:00
parent 94e79644fe
commit dfa1981a9e
5 changed files with 10 additions and 4 deletions

View file

@ -1262,6 +1262,11 @@ public class ScryfallImageSupportTokens {
put ("DDE/Phyrexian Minion", "https://api.scryfall.com/cards/tdde/2/en?format=image");
put ("DDE/Saproling", "https://api.scryfall.com/cards/tdde/3/en?format=image");
// DDD
put ("DDD/Beast/1", "https://api.scryfall.com/cards/tddd/1/en?format=image");
put ("DDD/Beast/2", "https://api.scryfall.com/cards/tddd/2/en?format=image");
put ("DDD/Elephant", "https://api.scryfall.com/cards/tddd/3/en?format=image");
// generate supported sets
supportedSets.clear();
for (String cardName : this.keySet()) {

View file

@ -520,8 +520,6 @@
|Generate|TOK:DDC|Demon|||DemonFlyingToken|
|Generate|TOK:DDC|Spirit|||SpiritWhiteToken|
|Generate|TOK:DDC|Thrull|||BreedingPitThrullToken|
|Generate|TOK:DDD|Ape|||PongifyApeToken|
|Generate|TOK:DDD|Bat|||BatToken|
|Generate|TOK:DDD|Beast|1||BeastToken|
|Generate|TOK:DDD|Beast|2||BeastToken2|
|Generate|TOK:DDD|Elephant|||ElephantToken|

View file

@ -18,7 +18,7 @@ public final class BatToken extends TokenImpl {
toughness = new MageInt(1);
this.addAbility(FlyingAbility.getInstance());
availableImageSetCodes = Arrays.asList("C17", "GVL", "DDD", "GPT", "MMA", "M19", "MID", "VOC");
availableImageSetCodes = Arrays.asList("C17", "GVL", "GPT", "MMA", "M19", "MID", "VOC");
}
public BatToken(final BatToken token) {

View file

@ -50,6 +50,9 @@ public final class BeastToken extends TokenImpl {
if (getOriginalExpansionSetCode() != null && getOriginalExpansionSetCode().equals("CMA")) {
setTokenType(1);
}
if (getOriginalExpansionSetCode() != null && getOriginalExpansionSetCode().equals("DDD")) {
setTokenType(1);
}
}
public BeastToken(final BeastToken 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", "DDD", "DDG", "PLC", "ULG", "UNH", "TSR");
availableImageSetCodes = Arrays.asList("C14", "GVL", "DDG", "PLC", "ULG", "UNH", "TSR");
}
public PongifyApeToken(final PongifyApeToken token) {