forked from External/mage
# Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic branch. # # Lines starting with '#' will be ignored, and an empty message aborts # the commit.
27 lines
712 B
Java
27 lines
712 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
public final class AvatarToken2 extends TokenImpl {
|
|
|
|
public AvatarToken2() {
|
|
super("Avatar", "4/4 white Avatar creature token with flying");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setWhite(true);
|
|
subtype.add(SubType.AVATAR);
|
|
power = new MageInt(4);
|
|
toughness = new MageInt(4);
|
|
addAbility(FlyingAbility.getInstance());
|
|
}
|
|
|
|
public AvatarToken2(final AvatarToken2 token) {
|
|
super(token);
|
|
}
|
|
|
|
public AvatarToken2 copy() {
|
|
return new AvatarToken2(this);
|
|
}
|
|
}
|