[VOW] Implemented Kessig Wolf Rider

This commit is contained in:
Evan Kranzler 2021-11-01 09:02:51 -04:00
parent a92100eb1a
commit e36dac83f2
3 changed files with 84 additions and 0 deletions

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class RedWolfToken extends TokenImpl {
public RedWolfToken() {
super("Wolf", "3/2 red Wolf creature token");
cardType.add(CardType.CREATURE);
color.setRed(true);
subtype.add(SubType.WOLF);
power = new MageInt(3);
toughness = new MageInt(2);
}
private RedWolfToken(final RedWolfToken token) {
super(token);
}
@Override
public RedWolfToken copy() {
return new RedWolfToken(this);
}
}