forked from External/mage
* updated Riptide Replicator and Volrath's Laboratory * refactored token names * some test fixes * more test fixes * even more test fixes * the final test fixes * fixed a few missed tokens * merge fix * fixed a test failure * fixed test failure * updated ignored verify test * fixed token images not appearing * updated tests
34 lines
825 B
Java
34 lines
825 B
Java
|
|
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.ObjectColor;
|
|
import mage.abilities.keyword.HasteAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class ThatcherHumanToken extends TokenImpl {
|
|
|
|
public ThatcherHumanToken() {
|
|
super("Human Token", "1/1 red Human creature token with haste");
|
|
this.cardType.add(CardType.CREATURE);
|
|
this.subtype.add(SubType.HUMAN);
|
|
addAbility(HasteAbility.getInstance());
|
|
|
|
this.color.setRed(true);
|
|
this.power = new MageInt(1);
|
|
this.toughness = new MageInt(1);
|
|
}
|
|
|
|
public ThatcherHumanToken(final ThatcherHumanToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public ThatcherHumanToken copy() {
|
|
return new ThatcherHumanToken(this);
|
|
}
|
|
}
|