fixed Ajani's Last Stand token name (fixes #5147)

This commit is contained in:
Evan Kranzler 2018-07-13 14:08:19 -04:00
parent b628ac1f10
commit 0ad86ff530

View file

@ -6,8 +6,9 @@ import mage.constants.CardType;
import mage.constants.SubType;
public final class AvatarToken2 extends TokenImpl {
public AvatarToken2() {
super("Angel", "4/4 white Avatar creature token with flying");
super("Avatar", "4/4 white Avatar creature token with flying");
cardType.add(CardType.CREATURE);
color.setWhite(true);
subtype.add(SubType.AVATAR);