Added RTR token images

This commit is contained in:
PurpleCrowbar 2022-06-04 19:44:10 +01:00
parent 471e6ef433
commit d4de0e8729
4 changed files with 17 additions and 4 deletions

View file

@ -1334,6 +1334,20 @@ public class ScryfallImageSupportTokens {
// DDJ
put ("DDJ/Saproling", "https://api.scryfall.com/cards/tddj/1/en?format=image");
// RTR
put ("RTR/Assassin", "https://api.scryfall.com/cards/trtr/4/en?format=image");
put ("RTR/Bird", "https://api.scryfall.com/cards/trtr/1/en?format=image");
put ("RTR/Centaur", "https://api.scryfall.com/cards/trtr/7/en?format=image");
put ("RTR/Dragon", "https://api.scryfall.com/cards/trtr/5/en?format=image");
put ("RTR/Elemental", "https://api.scryfall.com/cards/trtr/12/en?format=image");
put ("RTR/Goblin", "https://api.scryfall.com/cards/trtr/6/en?format=image");
put ("RTR/Knight", "https://api.scryfall.com/cards/trtr/2/en?format=image");
put ("RTR/Ooze", "https://api.scryfall.com/cards/trtr/8/en?format=image");
put ("RTR/Rhino", "https://api.scryfall.com/cards/trtr/9/en?format=image");
put ("RTR/Saproling", "https://api.scryfall.com/cards/trtr/10/en?format=image");
put ("RTR/Soldier", "https://api.scryfall.com/cards/trtr/3/en?format=image");
put ("RTR/Wurm", "https://api.scryfall.com/cards/trtr/11/en?format=image");
// generate supported sets
supportedSets.clear();
for (String cardName : this.keySet()) {

View file

@ -1015,7 +1015,7 @@
|Generate|TOK:RTR|Elemental|||GreenAndWhiteElementalToken|
|Generate|TOK:RTR|Goblin|||GoblinToken|
|Generate|TOK:RTR|Knight|||KnightToken|
|Generate|TOK:RTR|Ooze|||MysticGenesisOozeToken|
|Generate|TOK:RTR|Ooze|||OozeToken|
|Generate|TOK:RTR|Rhino|||RhinoToken|
|Generate|TOK:RTR|Saproling|||SaprolingToken|
|Generate|TOK:RTR|Soldier|||SoldierToken|

View file

@ -21,7 +21,7 @@ public final class MysticGenesisOozeToken extends TokenImpl {
subtype.add(SubType.OOZE);
power = new MageInt(xValue);
toughness = new MageInt(xValue);
setOriginalExpansionSetCode("RTR");
setOriginalExpansionSetCode("MM3");
}
public MysticGenesisOozeToken(final MysticGenesisOozeToken token) {

View file

@ -17,13 +17,12 @@ public final class UtvaraHellkiteDragonToken extends TokenImpl {
static final private List<String> tokenImageSets = new ArrayList<>();
static {
tokenImageSets.addAll(Arrays.asList("C17"));
tokenImageSets.addAll(Arrays.asList("RTR", "C17"));
}
public UtvaraHellkiteDragonToken() {
super("Dragon Token", "6/6 red Dragon creature token with flying");
availableImageSetCodes = tokenImageSets;
setExpansionSetCodeForImage("C17");
cardType.add(CardType.CREATURE);
color.setRed(true);
subtype.add(SubType.DRAGON);