foul-magics/Mage/src/main/java/mage/game/permanent/token/StitchersApprenticeHomunculusToken.java
2018-06-02 17:59:49 +02:00

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);
}
}