mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 04:42:07 -08:00
[J25] Implement Cynette, Jelly Drover
This commit is contained in:
parent
23842c75c1
commit
0e4730ca20
3 changed files with 89 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue