[MH2] Implemented Scuttletide

This commit is contained in:
Evan Kranzler 2021-05-28 09:46:39 -04:00
parent 6b4117e500
commit 0350f42b4c
3 changed files with 85 additions and 0 deletions

View file

@ -0,0 +1,28 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class CrabToken extends TokenImpl {
public CrabToken() {
super("Crab", "0/3 blue Crab creature token");
cardType.add(CardType.CREATURE);
color.setBlue(true);
subtype.add(SubType.CRAB);
power = new MageInt(0);
toughness = new MageInt(3);
}
public CrabToken(final CrabToken token) {
super(token);
}
public CrabToken copy() {
return new CrabToken(this);
}
}