Added LRW token images

This commit is contained in:
PurpleCrowbar 2022-06-08 14:52:09 +01:00
parent 4ed3194801
commit 89f9ef78e8
4 changed files with 22 additions and 2 deletions

View file

@ -4,6 +4,8 @@ import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.Arrays;
/**
*
* @author Loki
@ -18,6 +20,8 @@ public final class MerfolkWizardToken extends TokenImpl {
subtype.add(SubType.WIZARD);
power = new MageInt(1);
toughness = new MageInt(1);
availableImageSetCodes = Arrays.asList("LRW");
}
public MerfolkWizardToken(final MerfolkWizardToken token) {

View file

@ -30,6 +30,9 @@ public final class WalkerOfTheGroveToken extends TokenImpl {
if (getOriginalExpansionSetCode().equals("UMA")) {
this.setTokenType(1);
}
if (getOriginalExpansionSetCode().equals("LRW")) {
this.setTokenType(1);
}
}
public WalkerOfTheGroveToken(final WalkerOfTheGroveToken token) {