[MOM] Implement Xerex Strobe-Knight

This commit is contained in:
theelk801 2023-04-03 20:11:16 -04:00
parent 4b71941d21
commit c087e77776
3 changed files with 109 additions and 0 deletions

View file

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