fixed Elf Knight token name

This commit is contained in:
Evan Kranzler 2018-10-02 21:50:29 -04:00
parent 29f6f1c4b8
commit 27fc2f5610

View file

@ -1,18 +1,17 @@
package mage.game.permanent.token; package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt; import mage.MageInt;
import mage.abilities.keyword.VigilanceAbility; import mage.abilities.keyword.VigilanceAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/** /**
*
* @author TheElk801 * @author TheElk801
*/ */
public final class ElfKnightToken extends TokenImpl { public final class ElfKnightToken extends TokenImpl {
public ElfKnightToken() { public ElfKnightToken() {
super("Knight Ally", "2/2 green and white Elf Knight creature token with vigilance"); super("Elf Knight", "2/2 green and white Elf Knight creature token with vigilance");
this.setExpansionSetCodeForImage("GRN"); this.setExpansionSetCodeForImage("GRN");
cardType.add(CardType.CREATURE); cardType.add(CardType.CREATURE);
color.setGreen(true); color.setGreen(true);