forked from External/mage
34 lines
817 B
Java
34 lines
817 B
Java
|
|
|
|
package mage.game.permanent.token;
|
|
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.DeathtouchAbility;
|
|
|
|
/**
|
|
*
|
|
* @author nantuko
|
|
*/
|
|
public final class WolfTokenWithDeathtouch extends TokenImpl {
|
|
|
|
public WolfTokenWithDeathtouch() {
|
|
super("Wolf", "1/1 black Wolf creature token with deathtouch");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setBlack(true);
|
|
subtype.add(SubType.WOLF);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
|
|
addAbility(DeathtouchAbility.getInstance());
|
|
}
|
|
|
|
public WolfTokenWithDeathtouch(final WolfTokenWithDeathtouch token) {
|
|
super(token);
|
|
}
|
|
|
|
public WolfTokenWithDeathtouch copy() {
|
|
return new WolfTokenWithDeathtouch(this);
|
|
}
|
|
}
|