[SLD] Implemented Michonne, Ruthless Survivor

This commit is contained in:
Evan Kranzler 2020-09-28 20:01:10 -04:00
parent 4162c3e5cb
commit bd5d3954b1
5 changed files with 132 additions and 0 deletions

View file

@ -0,0 +1,29 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class WalkerToken extends TokenImpl {
public WalkerToken() {
super("Walker", "Walker token");
cardType.add(CardType.CREATURE);
color.setBlack(true);
subtype.add(SubType.ZOMBIE);
power = new MageInt(2);
toughness = new MageInt(2);
}
public WalkerToken(final WalkerToken token) {
super(token);
}
@Override
public WalkerToken copy() {
return new WalkerToken(this);
}
}