Removed 5DN as an available token image source (no token images)

This commit is contained in:
PurpleCrowbar 2022-06-09 00:15:35 +01:00
parent c3e20a3f0c
commit 8316e6a813
3 changed files with 1 additions and 36 deletions

View file

@ -20,7 +20,7 @@ public final class BeastToken extends TokenImpl {
power = new MageInt(3);
toughness = new MageInt(3);
availableImageSetCodes = Arrays.asList("5DN", "C14", "C16", "C19", "CMA", "CN2", "GVL",
availableImageSetCodes = Arrays.asList("C14", "C16", "C19", "CMA", "CN2", "GVL",
"DD3C", "DD3GVL", "DDD", "DDL", "DST", "E01", "EVE", "LRW", "M10", "M11", "M12",
"M13", "M14", "M15", "MM3", "NPH", "PC2", "USG", "M19", "IKO", "M21", "CMR", "C21", "AFC", "MIC", "NEC", "2XM", "NCC", "BBD", "PCA", "CLB");
}

View file

@ -1,30 +0,0 @@
package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
/**
*
* @author spjspj
*/
public final class GuardianIdolGolemToken extends TokenImpl {
public GuardianIdolGolemToken() {
super("Golem Token", "2/2 Golem artifact creature token");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.GOLEM);
power = new MageInt(2);
toughness = new MageInt(2);
}
public GuardianIdolGolemToken(final GuardianIdolGolemToken token) {
super(token);
}
public GuardianIdolGolemToken copy() {
return new GuardianIdolGolemToken(this);
}
}