Implemented Shark Typhoon

This commit is contained in:
Evan Kranzler 2020-04-12 17:21:25 -04:00
parent 28659043ca
commit 7e86626f1d
3 changed files with 146 additions and 0 deletions

View file

@ -0,0 +1,31 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class SharkToken extends TokenImpl {
public SharkToken(int xValue) {
super("Shark", "X/X blue Shark creature token with flying");
cardType.add(CardType.CREATURE);
color.setBlue(true);
subtype.add(SubType.SHARK);
power = new MageInt(xValue);
toughness = new MageInt(xValue);
addAbility(FlyingAbility.getInstance());
}
private SharkToken(final SharkToken token) {
super(token);
}
@Override
public SharkToken copy() {
return new SharkToken(this);
}
}