[ZNC] Added images and tokens support/download

This commit is contained in:
Oleg Agafonov 2020-11-05 12:55:08 +04:00
parent 6bc040ef6c
commit 8fa0ba1cfd
16 changed files with 104 additions and 86 deletions

View file

@ -1,14 +1,12 @@
package mage.game.permanent.token;
import java.util.Arrays;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import java.util.Arrays;
/**
*
* @author LoneFox
*/
public final class GoblinRogueToken extends TokenImpl {
@ -21,7 +19,8 @@ public final class GoblinRogueToken extends TokenImpl {
subtype.add(SubType.ROGUE);
power = new MageInt(1);
toughness = new MageInt(1);
availableImageSetCodes.addAll(Arrays.asList("LRW", "MMA"));
availableImageSetCodes.addAll(Arrays.asList("LRW", "MMA", "ZNC"));
}
public GoblinRogueToken(final GoblinRogueToken token) {