forked from External/mage
34 lines
No EOL
745 B
Java
34 lines
No EOL
745 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
*
|
|
* @author spike
|
|
*/
|
|
public final class StarfishToken extends TokenImpl {
|
|
|
|
public StarfishToken() {
|
|
this(null, 0);
|
|
}
|
|
|
|
public StarfishToken(String setCode, int tokenType) {
|
|
super("Starfish", "0/1 blue Starfish creature token");
|
|
cardType.add(CardType.CREATURE);
|
|
subtype.add(SubType.STARFISH);
|
|
color.setBlue(true);
|
|
power = new MageInt(0);
|
|
toughness = new MageInt(1);
|
|
}
|
|
|
|
public StarfishToken(final StarfishToken token) {
|
|
super(token);
|
|
}
|
|
|
|
@Override
|
|
public StarfishToken copy() {
|
|
return new StarfishToken(this);
|
|
}
|
|
} |