[MSC] Implement Invisible Woman

This commit is contained in:
theelk801 2025-12-11 15:02:40 -05:00
parent d133bb09e7
commit 5ca153507e
3 changed files with 93 additions and 0 deletions

View file

@ -0,0 +1,31 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.DefenderAbility;
import mage.abilities.keyword.ReachAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class WallColorlessReachToken extends TokenImpl {
public WallColorlessReachToken() {
super("Wall Token", "0/3 colorless Wall creature token with defender and reach");
cardType.add(CardType.CREATURE);
subtype.add(SubType.WALL);
power = new MageInt(0);
toughness = new MageInt(3);
addAbility(DefenderAbility.getInstance());
addAbility(ReachAbility.getInstance());
}
private WallColorlessReachToken(final WallColorlessReachToken token) {
super(token);
}
public WallColorlessReachToken copy() {
return new WallColorlessReachToken(this);
}
}