[DSK] Implement Twitching Doll

This commit is contained in:
theelk801 2024-09-03 17:54:56 -04:00
parent 9c0f18c850
commit abccb35b18
3 changed files with 90 additions and 0 deletions

View file

@ -0,0 +1,31 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.ReachAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class Spider22Token extends TokenImpl {
public Spider22Token() {
super("Spider Token", "2/2 green Spider creature token with reach");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.SPIDER);
power = new MageInt(2);
toughness = new MageInt(2);
this.addAbility(ReachAbility.getInstance());
}
private Spider22Token(final Spider22Token token) {
super(token);
}
public Spider22Token copy() {
return new Spider22Token(this);
}
}