mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 19:41:59 -08:00
Merge pull request #5455 from SpikesCafe-google/AddSpinyStarfish3
Add Spiny Starfish from Alliances.
This commit is contained in:
commit
2fdef83284
4 changed files with 193 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue