Removed duplicate Kher Keep Kobold token class

This commit is contained in:
PurpleCrowbar 2022-06-06 15:10:00 +01:00
parent b277b87654
commit e3d64451ed
2 changed files with 2 additions and 32 deletions

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 ProsshKoboldToken extends TokenImpl {
public ProsshKoboldToken() {
super("Kobolds of Kher Keep", "0/1 red Kobold creature tokens named Kobolds of Kher Keep");
cardType.add(CardType.CREATURE);
color.setRed(true);
subtype.add(SubType.KOBOLD);
power = new MageInt(0);
toughness = new MageInt(1);
}
public ProsshKoboldToken(final ProsshKoboldToken token) {
super(token);
}
public ProsshKoboldToken copy() {
return new ProsshKoboldToken(this);
}
}