Added MOR token images

This commit is contained in:
PurpleCrowbar 2022-06-04 16:46:57 +01:00
parent bb3065afd9
commit a35e31ae56
7 changed files with 16 additions and 8 deletions

View file

@ -20,7 +20,7 @@ public final class ElfWarriorToken extends TokenImpl {
power = new MageInt(1);
toughness = new MageInt(1);
availableImageSetCodes = Arrays.asList("C14", "C16", "EVG", "EMA", "LRW", "MOR", "ORI", "SHM", "M19", "CMR", "KHM", "NCC", "DDU", "CMA");
availableImageSetCodes = Arrays.asList("C14", "C16", "EVG", "EMA", "LRW", "ORI", "SHM", "M19", "CMR", "KHM", "NCC", "DDU", "CMA");
}
public ElfWarriorToken(final ElfWarriorToken token) {

View file

@ -5,6 +5,8 @@ import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import java.util.Arrays;
/**
*
* @author spjspj
@ -19,6 +21,8 @@ public final class GiantWarriorToken extends TokenImpl {
subtype.add(SubType.WARRIOR);
power = new MageInt(5);
toughness = new MageInt(5);
availableImageSetCodes = Arrays.asList("MOR", "MMA");
}
public GiantWarriorToken(final GiantWarriorToken token) {

View file

@ -20,7 +20,7 @@ public final class KithkinSoldierToken extends TokenImpl {
power = new MageInt(1);
toughness = new MageInt(1);
availableImageSetCodes = Arrays.asList("CMD", "EVE", "LRW", "MMA", "MOR", "SHM", "MMA", "KHC", "CMA");
availableImageSetCodes = Arrays.asList("CMD", "EVE", "LRW", "MMA", "SHM", "MMA", "KHC", "CMA");
}
public KithkinSoldierToken(final KithkinSoldierToken token) {

View file

@ -5,6 +5,8 @@ import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import java.util.Arrays;
/**
*
* @author spjspj
@ -19,6 +21,8 @@ public final class TreefolkShamanToken extends TokenImpl {
subtype.add(SubType.SHAMAN);
power = new MageInt(2);
toughness = new MageInt(5);
availableImageSetCodes = Arrays.asList("MOR", "MMA");
}
public TreefolkShamanToken(final TreefolkShamanToken token) {

View file

@ -22,7 +22,7 @@ public final class WolfToken extends TokenImpl {
toughness = new MageInt(2);
availableImageSetCodes = Arrays.asList("BNG", "C14", "C15", "CMA", "CMD", "CNS", "DKA", "EVE", "ISD",
"LRW", "M10", "M14", "MM2", "MOR", "SHM", "SOI", "SOM", "V10", "WWK", "ZEN", "WAR", "M20",
"LRW", "M10", "M14", "MM2", "SHM", "SOI", "SOM", "V10", "WWK", "ZEN", "WAR", "M20",
"THB", "AFR", "MID", "VOW", "2XM");
}