Set some token version types. [C16] Added token info. Implemented Migratory Route.

This commit is contained in:
fireshoes 2016-10-31 23:09:42 -05:00
parent 135819c6ef
commit ac3203b63c
15 changed files with 156 additions and 20 deletions

View file

@ -41,7 +41,7 @@ public class SpiritToken extends Token {
final static private List<String> tokenImageSets = new ArrayList<>();
static {
tokenImageSets.addAll(Arrays.asList("CHK", "EMA"));
tokenImageSets.addAll(Arrays.asList("CHK", "EMA", "C16"));
}
public SpiritToken() {
@ -71,6 +71,9 @@ public class SpiritToken extends Token {
if (getOriginalExpansionSetCode() != null && getOriginalExpansionSetCode().equals("EMA")) {
setTokenType(1);
}
if (getOriginalExpansionSetCode() != null && getOriginalExpansionSetCode().equals("C16")) {
setTokenType(1);
}
}
public SpiritToken(final SpiritToken token) {