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
35 lines
1,012 B
Java
35 lines
1,012 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.HasteAbility;
|
|
import mage.abilities.keyword.LifelinkAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public final class OutlawsMerrimentClericToken extends TokenImpl {
|
|
|
|
public OutlawsMerrimentClericToken() {
|
|
super("Human Cleric Token", "2/1 Human Cleric with lifelink and haste");
|
|
cardType.add(CardType.CREATURE);
|
|
subtype.add(SubType.HUMAN);
|
|
subtype.add(SubType.CLERIC);
|
|
color.setWhite(true);
|
|
color.setRed(true);
|
|
power = new MageInt(2);
|
|
toughness = new MageInt(1);
|
|
|
|
this.addAbility(LifelinkAbility.getInstance());
|
|
this.addAbility(HasteAbility.getInstance());
|
|
}
|
|
|
|
private OutlawsMerrimentClericToken(final OutlawsMerrimentClericToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public OutlawsMerrimentClericToken copy() {
|
|
return new OutlawsMerrimentClericToken(this);
|
|
}
|
|
}
|