forked from External/mage
Set some token version types. [C16] Added token info. Implemented Migratory Route.
This commit is contained in:
parent
135819c6ef
commit
ac3203b63c
15 changed files with 156 additions and 20 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue