Added 10E token images

This commit is contained in:
PurpleCrowbar 2022-06-04 17:15:34 +01:00
parent 4ba695e741
commit c813603647
4 changed files with 14 additions and 5 deletions

View file

@ -21,7 +21,7 @@ public final class PongifyApeToken extends TokenImpl {
power = new MageInt(3);
toughness = new MageInt(3);
availableImageSetCodes = Arrays.asList("10E", "C14", "GVL", "DDD", "DDG", "PLC", "ULG", "UNH", "TSR");
availableImageSetCodes = Arrays.asList("C14", "GVL", "DDD", "DDG", "PLC", "ULG", "UNH", "TSR");
}
public PongifyApeToken(final PongifyApeToken token) {

View file

@ -6,6 +6,8 @@ import mage.constants.SubType;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import java.util.Arrays;
/**
*
* @author spjspj
@ -20,6 +22,8 @@ public final class WaspToken extends TokenImpl {
power = new MageInt(1);
toughness = new MageInt(1);
this.addAbility(FlyingAbility.getInstance());
availableImageSetCodes = Arrays.asList("10E");
}
public WaspToken(final WaspToken token) {