[FIN] Implement Retrieve the Esper

This commit is contained in:
theelk801 2025-05-14 21:28:10 -04:00
parent 83886b8f65
commit 181a3306a6
3 changed files with 108 additions and 0 deletions

View file

@ -0,0 +1,29 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class RobotBlueToken extends TokenImpl {
public RobotBlueToken() {
super("Robot Token", "3/3 blue Robot Warrior artifact creature token");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
color.setBlue(true);
subtype.add(SubType.ROBOT);
power = new MageInt(3);
toughness = new MageInt(3);
}
private RobotBlueToken(final RobotBlueToken token) {
super(token);
}
public RobotBlueToken copy() {
return new RobotBlueToken(this);
}
}