[J25] Implement Cynette, Jelly Drover

This commit is contained in:
theelk801 2024-10-30 16:05:03 -04:00
parent 23842c75c1
commit 0e4730ca20
3 changed files with 89 additions and 0 deletions

View file

@ -0,0 +1,30 @@
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 JellyfishToken extends TokenImpl {
public JellyfishToken() {
super("Jellyfish Token", "1/1 blue Jellyfish creature token with flying");
cardType.add(CardType.CREATURE);
color.setBlue(true);
subtype.add(SubType.JELLYFISH);
power = new MageInt(1);
toughness = new MageInt(1);
this.addAbility(FlyingAbility.getInstance());
}
private JellyfishToken(final JellyfishToken token) {
super(token);
}
public JellyfishToken copy() {
return new JellyfishToken(this);
}
}