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
885 B
Java
34 lines
885 B
Java
|
|
package mage.game.permanent.token;
|
|
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.MageInt;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class KalitasVampireToken extends TokenImpl {
|
|
|
|
public KalitasVampireToken() {
|
|
this(1,1);
|
|
}
|
|
|
|
public KalitasVampireToken(int tokenPower, int tokenToughness) {
|
|
super("Vampire Token", new StringBuilder(tokenPower).append('/').append(tokenToughness).append(" black Vampire creature token").toString());
|
|
cardType.add(CardType.CREATURE);
|
|
color.setBlack(true);
|
|
subtype.add(SubType.VAMPIRE);
|
|
power = new MageInt(tokenPower);
|
|
toughness = new MageInt(tokenToughness);
|
|
}
|
|
|
|
public KalitasVampireToken(final KalitasVampireToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public KalitasVampireToken copy() {
|
|
return new KalitasVampireToken(this);
|
|
}
|
|
}
|