mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
Implemented The Birth of Meletis
This commit is contained in:
parent
136c4fe55b
commit
9948aca713
3 changed files with 91 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue