mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
Removed duplicate Kher Keep Kobold token class
This commit is contained in:
parent
b277b87654
commit
e3d64451ed
2 changed files with 2 additions and 32 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue