forked from External/mage
30 lines
772 B
Java
30 lines
772 B
Java
|
|
package mage.game.permanent.token;
|
|
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.MageInt;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class StitchersApprenticeHomunculusToken extends TokenImpl {
|
|
|
|
public StitchersApprenticeHomunculusToken() {
|
|
super("Homunculus", "2/2 blue Homunculus creature");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setBlue(true);
|
|
subtype.add(SubType.HOMUNCULUS);
|
|
power = new MageInt(2);
|
|
toughness = new MageInt(2);
|
|
}
|
|
|
|
public StitchersApprenticeHomunculusToken(final StitchersApprenticeHomunculusToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public StitchersApprenticeHomunculusToken copy() {
|
|
return new StitchersApprenticeHomunculusToken(this);
|
|
}
|
|
}
|