mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
[SLD] Implemented Michonne, Ruthless Survivor
This commit is contained in:
parent
4162c3e5cb
commit
bd5d3954b1
5 changed files with 132 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue