Implemented Conclave Guildmage

This commit is contained in:
Evan Kranzler 2018-09-13 07:57:30 -04:00
parent a5249e3a3b
commit 4315772902
3 changed files with 98 additions and 0 deletions

View file

@ -0,0 +1,35 @@
package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import mage.abilities.keyword.VigilanceAbility;
/**
*
* @author TheElk801
*/
public final class ElfKnightToken extends TokenImpl {
public ElfKnightToken() {
super("Knight Ally", "2/2 green and white Elf Knight creature token with vigilance");
this.setExpansionSetCodeForImage("GRN");
cardType.add(CardType.CREATURE);
color.setGreen(true);
color.setWhite(true);
subtype.add(SubType.ELF);
subtype.add(SubType.KNIGHT);
power = new MageInt(2);
toughness = new MageInt(2);
this.addAbility(VigilanceAbility.getInstance());
}
public ElfKnightToken(final ElfKnightToken token) {
super(token);
}
public ElfKnightToken copy() {
return new ElfKnightToken(this);
}
}