[MOC] Implement Gimbal, Gremlin Prodigy

This commit is contained in:
theelk801 2023-04-16 09:44:08 -04:00
parent 1cfe05f38e
commit 89ce5bbc3d
3 changed files with 135 additions and 0 deletions

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class GremlinArtifactToken extends TokenImpl {
public GremlinArtifactToken() {
super("Gremlin Token", "0/0 red Gremlin artifact creature token");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
this.setOriginalExpansionSetCode("MOC");
subtype.add(SubType.GREMLIN);
color.setRed(true);
power = new MageInt(0);
toughness = new MageInt(0);
}
public GremlinArtifactToken(final GremlinArtifactToken token) {
super(token);
}
public GremlinArtifactToken copy() {
return new GremlinArtifactToken(this);
}
}