Add Spiny Starfish from Alliances.

This commit is contained in:
SpikesCafe-google 2018-12-09 13:48:55 -05:00
parent 6ae86a7f7d
commit a852d5c9e5
4 changed files with 193 additions and 0 deletions

View file

@ -0,0 +1,34 @@
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);
}
}