mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 04:22:01 -08:00
[DSK] Implement Twitching Doll
This commit is contained in:
parent
9c0f18c850
commit
abccb35b18
3 changed files with 90 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue