Skip to content

Commit

Permalink
Added THB tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
JayDi85 committed Jan 16, 2020
1 parent 0716b83 commit bc899e7
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,22 @@ public class ScryfallImageSupportTokens {
put("ELD/Rat", "https://api.scryfall.com/cards/teld/6/en?format=image");
put("ELD/Wolf", "https://api.scryfall.com/cards/teld/14/en?format=image");

// THB
put("THB/Elemental", "https://api.scryfall.com/cards/tthb/8/en?format=image");
put("THB/Goat", "https://api.scryfall.com/cards/tthb/1/en?format=image");
put("THB/Gold", "https://api.scryfall.com/cards/tthb/13/en?format=image");
put("THB/Human Soldier", "https://api.scryfall.com/cards/tthb/2/en?format=image");
put("THB/Kraken", "https://api.scryfall.com/cards/tthb/4/en?format=image");
put("THB/Nightmare", "https://api.scryfall.com/cards/tthb/12/en?format=image");
put("THB/Pegasus", "https://api.scryfall.com/cards/tthb/3/en?format=image");
put("THB/Reflection", "https://api.scryfall.com/cards/tthb/5/en?format=image");
put("THB/Satyr", "https://api.scryfall.com/cards/tthb/9/en?format=image");
put("THB/Spider", "https://api.scryfall.com/cards/tthb/10/en?format=image");
put("THB/Tentacle", "https://api.scryfall.com/cards/tthb/6/en?format=image");
put("THB/Wall", "https://api.scryfall.com/cards/tthb/14/en?format=image");
put("THB/Wolf", "https://api.scryfall.com/cards/tthb/11/en?format=image");
put("THB/Zombie", "https://api.scryfall.com/cards/tthb/7/en?format=image");

// generate supported sets
supportedSets.clear();
for (String cardName : this.keySet()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public final class GoatToken extends TokenImpl {
static final private List<String> tokenImageSets = new ArrayList<>();

static {
tokenImageSets.addAll(Arrays.asList("EVE", "M13", "M14", "C14", "ELD"));
tokenImageSets.addAll(Arrays.asList("EVE", "M13", "M14", "C14", "ELD", "THB"));
}

public GoatToken() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package mage.game.permanent.token;

import mage.MageInt;
Expand All @@ -22,7 +17,7 @@ public final class SpiderToken extends TokenImpl {
static final private List<String> tokenImageSets = new ArrayList<>();

static {
tokenImageSets.addAll(Arrays.asList("ISD", "EMN", "C15", "SHM", "MH1"));
tokenImageSets.addAll(Arrays.asList("ISD", "EMN", "C15", "SHM", "MH1", "THB"));
}

public SpiderToken() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public final class WolfToken extends TokenImpl {

static {
tokenImageSets.addAll(Arrays.asList("BNG", "C14", "CNS", "FNMP", "ISD", "LRW", "M10", "M14", "MM2", "SHM", "SOM",
"ZEN", "SOI", "C15", "M15", "WAR", "M20"));
"ZEN", "SOI", "C15", "M15", "WAR", "M20", "THB"));
}

public WolfToken() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public final class ZombieToken extends TokenImpl {

static {
tokenImageSets.addAll(Arrays.asList("10E", "M10", "M11", "M12", "M13", "M14", "M15", "MBS", "ALA", "ISD", "C14", "C15", "C16", "C17", "CNS",
"MMA", "BNG", "KTK", "DTK", "ORI", "OGW", "SOI", "EMN", "EMA", "MM3", "AKH", "CMA", "E01", "RNA", "WAR", "MH1", "M20", "C19"));
"MMA", "BNG", "KTK", "DTK", "ORI", "OGW", "SOI", "EMN", "EMA", "MM3", "AKH", "CMA", "E01", "RNA", "WAR", "MH1", "M20", "C19", "THB"));
}

public ZombieToken() {
Expand Down

0 comments on commit bc899e7

Please sign in to comment.