mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
[MOC] Implement Gimbal, Gremlin Prodigy
This commit is contained in:
parent
1cfe05f38e
commit
89ce5bbc3d
3 changed files with 135 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue