[SPM] Implement Robotics Mastery

This commit is contained in:
theelk801 2025-09-04 08:46:46 -04:00
parent fe005e9477
commit 30ca433785
3 changed files with 87 additions and 0 deletions

View file

@ -0,0 +1,31 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class RobotFlyingToken extends TokenImpl {
public RobotFlyingToken() {
super("Robot Token", "1/1 colorless Robot artifact creature tokens with flying");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.ROBOT);
power = new MageInt(1);
toughness = new MageInt(1);
addAbility(FlyingAbility.getInstance());
}
private RobotFlyingToken(final RobotFlyingToken token) {
super(token);
}
public RobotFlyingToken copy() {
return new RobotFlyingToken(this);
}
}