[VOW] added tokens and images support

This commit is contained in:
Oleg Agafonov 2022-02-05 14:44:46 +04:00
parent dd72e078b5
commit 3cb721fbd9
21 changed files with 143 additions and 23 deletions

View file

@ -23,7 +23,7 @@ public final class StitcherGeralfZombieToken extends TokenImpl {
power = new MageInt(xValue);
toughness = new MageInt(xValue);
availableImageSetCodes = Arrays.asList("C14", "MIC");
availableImageSetCodes = Arrays.asList("C14", "MIC", "VOW");
}
@Override
@ -37,6 +37,10 @@ public final class StitcherGeralfZombieToken extends TokenImpl {
if (getOriginalExpansionSetCode().equals("MIC")) {
this.setTokenType(2);
}
if (getOriginalExpansionSetCode().equals("VOW")) {
this.setTokenType(2);
}
}
public StitcherGeralfZombieToken(final StitcherGeralfZombieToken token) {