Merge pull request #5455 from SpikesCafe-google/AddSpinyStarfish3

Add Spiny Starfish from Alliances.
This commit is contained in:
Oleg Agafonov 2018-12-21 05:33:04 +04:00 committed by GitHub
commit 2fdef83284
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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);
}
}