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
32 lines
819 B
Java
32 lines
819 B
Java
|
|
|
|
package mage.game.permanent.token;
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.BandingAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
*
|
|
* @author L_J
|
|
*/
|
|
public final class ErrandOfDutyKnightToken extends TokenImpl {
|
|
|
|
public ErrandOfDutyKnightToken() {
|
|
super("Knight Token", "1/1 white Knight creature token with banding");
|
|
cardType.add(CardType.CREATURE);
|
|
subtype.add(SubType.KNIGHT);
|
|
color.setWhite(true);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
this.addAbility(BandingAbility.getInstance());
|
|
}
|
|
|
|
public ErrandOfDutyKnightToken(final ErrandOfDutyKnightToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public ErrandOfDutyKnightToken copy() {
|
|
return new ErrandOfDutyKnightToken(this);
|
|
}
|
|
}
|