mirror of
https://github.com/correl/mage.git
synced 2024-12-25 19:25:41 +00:00
fixed Elf Knight token name
This commit is contained in:
parent
29f6f1c4b8
commit
27fc2f5610
1 changed files with 3 additions and 4 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue