[SPM] Implement Origin of Spider-Man

This commit is contained in:
theelk801 2025-07-23 16:40:48 -04:00
parent a0c58c829a
commit cfb062a47d
3 changed files with 127 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 Spider21Token extends TokenImpl {
public Spider21Token() {
super("Spider Token", "2/1 green Spider creature token with reach");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.SPIDER);
power = new MageInt(2);
toughness = new MageInt(1);
this.addAbility(ReachAbility.getInstance());
}
private Spider21Token(final Spider21Token token) {
super(token);
}
public Spider21Token copy() {
return new Spider21Token(this);
}
}