mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Added DDD token images
This commit is contained in:
parent
94e79644fe
commit
dfa1981a9e
5 changed files with 10 additions and 4 deletions
|
@ -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()) {
|
||||
|
|
|
@ -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|
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue