Implemented The Birth of Meletis

This commit is contained in:
Evan Kranzler 2020-01-02 15:30:30 -05:00
parent 136c4fe55b
commit 9948aca713
3 changed files with 91 additions and 0 deletions

View file

@ -0,0 +1,25 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
public final class ArtifactWallToken extends TokenImpl {
public ArtifactWallToken() {
super("Wall", "colorless 0/4 Wall artifact creature token with defender");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.WALL);
power = new MageInt(0);
toughness = new MageInt(4);
}
private ArtifactWallToken(final ArtifactWallToken token) {
super(token);
}
public ArtifactWallToken copy() {
return new ArtifactWallToken(this);
}
}