Removed duplicate black and green worm token class

This commit is contained in:
PurpleCrowbar 2022-06-05 14:01:48 +01:00
parent 3fc84d9ba4
commit bde2791624
5 changed files with 19 additions and 46 deletions

View file

@ -1,17 +1,19 @@
package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import java.util.Arrays;
/**
*
* @author spjspj
*/
public final class CreakwoodLiegeToken extends TokenImpl {
public final class BlackGreenWormToken extends TokenImpl {
public CreakwoodLiegeToken() {
public BlackGreenWormToken() {
super("Worm Token", "1/1 black and green Worm creature token");
cardType.add(CardType.CREATURE);
color.setBlack(true);
@ -19,13 +21,15 @@ public final class CreakwoodLiegeToken extends TokenImpl {
subtype.add(SubType.WORM);
power = new MageInt(1);
toughness = new MageInt(1);
availableImageSetCodes = Arrays.asList("EVE", "MMA", "MM2", "C16", "C18");
}
public CreakwoodLiegeToken(final CreakwoodLiegeToken token) {
public BlackGreenWormToken(final BlackGreenWormToken token) {
super(token);
}
public CreakwoodLiegeToken copy() {
return new CreakwoodLiegeToken(this);
public BlackGreenWormToken copy() {
return new BlackGreenWormToken(this);
}
}

View file

@ -1,31 +0,0 @@
package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
/**
*
* @author spjspj
*/
public final class WormHarvestToken extends TokenImpl {
public WormHarvestToken() {
super("Worm Token", "1/1 black and green Worm creature token");
cardType.add(CardType.CREATURE);
color.setBlack(true);
color.setGreen(true);
subtype.add(SubType.WORM);
power = new MageInt(1);
toughness = new MageInt(1);
}
public WormHarvestToken(final WormHarvestToken token) {
super(token);
}
public WormHarvestToken copy() {
return new WormHarvestToken(this);
}
}