mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Added DDG token images
This commit is contained in:
parent
bbbcde3561
commit
4ea204ed05
4 changed files with 5 additions and 4 deletions
|
@ -1285,6 +1285,9 @@ public class ScryfallImageSupportTokens {
|
||||||
put ("MBS/Thopter", "https://api.scryfall.com/cards/tmbs/5/en?format=image");
|
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");
|
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
|
// generate supported sets
|
||||||
supportedSets.clear();
|
supportedSets.clear();
|
||||||
for (String cardName : this.keySet()) {
|
for (String cardName : this.keySet()) {
|
||||||
|
|
|
@ -527,9 +527,7 @@
|
||||||
|Generate|TOK:DDE|Phyrexian Minion|||MinionToken|
|
|Generate|TOK:DDE|Phyrexian Minion|||MinionToken|
|
||||||
|Generate|TOK:DDE|Saproling|||SaprolingToken|
|
|Generate|TOK:DDE|Saproling|||SaprolingToken|
|
||||||
|Generate|TOK:DDF|Soldier|||SoldierToken|
|
|Generate|TOK:DDF|Soldier|||SoldierToken|
|
||||||
|Generate|TOK:DDG|Ape|||PongifyApeToken|
|
|
||||||
|Generate|TOK:DDG|Goblin|||GoblinToken|
|
|Generate|TOK:DDG|Goblin|||GoblinToken|
|
||||||
|Generate|TOK:DDG|Griffin|||GriffinToken|
|
|
||||||
|Generate|TOK:DDH|Griffin|||GriffinToken|
|
|Generate|TOK:DDH|Griffin|||GriffinToken|
|
||||||
|Generate|TOK:DDH|Saproling|||SaprolingToken|
|
|Generate|TOK:DDH|Saproling|||SaprolingToken|
|
||||||
|Generate|TOK:DDJ|Saproling|||SaprolingToken|
|
|Generate|TOK:DDJ|Saproling|||SaprolingToken|
|
||||||
|
|
|
@ -23,7 +23,7 @@ public final class GriffinToken extends TokenImpl {
|
||||||
// Flying
|
// Flying
|
||||||
this.addAbility(FlyingAbility.getInstance());
|
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) {
|
public GriffinToken(final GriffinToken token) {
|
||||||
|
|
|
@ -21,7 +21,7 @@ public final class PongifyApeToken extends TokenImpl {
|
||||||
power = new MageInt(3);
|
power = new MageInt(3);
|
||||||
toughness = 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) {
|
public PongifyApeToken(final PongifyApeToken token) {
|
||||||
|
|
Loading…
Reference in a new issue