mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
Implemented Conclave Guildmage
This commit is contained in:
parent
a5249e3a3b
commit
4315772902
3 changed files with 98 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue