foul-magics/Mage/src/main/java/mage/game/permanent/token/IxalanVampireToken.java
2023-04-18 15:38:36 +01:00

36 lines
892 B
Java

package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import mage.abilities.keyword.LifelinkAbility;
import java.util.Arrays;
/**
*
* @author TheElk801
*/
public final class IxalanVampireToken extends TokenImpl {
public IxalanVampireToken() {
super("Vampire Token", "1/1 white Vampire creature token with lifelink");
cardType.add(CardType.CREATURE);
color.setWhite(true);
subtype.add(SubType.VAMPIRE);
power = new MageInt(1);
toughness = new MageInt(1);
addAbility(LifelinkAbility.getInstance());
availableImageSetCodes = Arrays.asList("XLN", "2X2", "MOM");
}
public IxalanVampireToken(final IxalanVampireToken token) {
super(token);
}
public IxalanVampireToken copy() {
return new IxalanVampireToken(this);
}
}