mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
Implemented Murmuring Mystic
This commit is contained in:
parent
45960d63a9
commit
909fcf749d
3 changed files with 77 additions and 0 deletions
|
|
@ -0,0 +1,33 @@
|
|||
|
||||
|
||||
package mage.game.permanent.token;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class BirdIllusionToken extends TokenImpl {
|
||||
|
||||
public BirdIllusionToken() {
|
||||
super("Bird Illusion", "1/1 blue Bird Illusion creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlue(true);
|
||||
subtype.add(SubType.BIRD);
|
||||
subtype.add(SubType.ILLUSION);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
|
||||
public BirdIllusionToken(final BirdIllusionToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public BirdIllusionToken copy() {
|
||||
return new BirdIllusionToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue