forked from External/mage
38 lines
851 B
Java
38 lines
851 B
Java
|
|
|
|
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.LifelinkAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
*
|
|
* @author fireshoes
|
|
*/
|
|
public final class CatToken2 extends TokenImpl {
|
|
|
|
public CatToken2() {
|
|
this((String)null);
|
|
}
|
|
|
|
public CatToken2(String setCode) {
|
|
super("Cat", "1/1 white Cat creature token with lifelink");
|
|
setOriginalExpansionSetCode("AKH");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setWhite(true);
|
|
subtype.add(SubType.CAT);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
addAbility(LifelinkAbility.getInstance());
|
|
}
|
|
public CatToken2(final CatToken2 token) {
|
|
super(token);
|
|
}
|
|
|
|
public CatToken2 copy() {
|
|
return new CatToken2(this);
|
|
}
|
|
|
|
}
|