[40K] Implemented Cybernetica Datasmith

This commit is contained in:
Evan Kranzler 2022-10-14 21:25:38 -04:00
parent 662d10aca2
commit 1b7bea1464
3 changed files with 107 additions and 0 deletions

View file

@ -0,0 +1,35 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.effects.common.combat.CantBlockSourceEffect;
import mage.constants.CardType;
import mage.constants.Duration;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class RobotToken extends TokenImpl {
public RobotToken() {
super("Robot Token", "4/4 colorless Robot artifact creature token with \"This creature can't block.\"");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.ROBOT);
power = new MageInt(4);
toughness = new MageInt(4);
this.addAbility(new SimpleStaticAbility(
new CantBlockSourceEffect(Duration.WhileOnBattlefield)
.setText("this creature can't block")
));
}
public RobotToken(final RobotToken token) {
super(token);
}
public RobotToken copy() {
return new RobotToken(this);
}
}