forked from External/mage
* updated Riptide Replicator and Volrath's Laboratory * refactored token names * some test fixes * more test fixes * even more test fixes * the final test fixes * fixed a few missed tokens * merge fix * fixed a test failure * fixed test failure * updated ignored verify test * fixed token images not appearing * updated tests
28 lines
774 B
Java
28 lines
774 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.DefenderAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
public final class ArtifactWallToken extends TokenImpl {
|
|
|
|
public ArtifactWallToken() {
|
|
super("Wall Token", "0/4 colorless 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);
|
|
|
|
addAbility(DefenderAbility.getInstance());
|
|
}
|
|
|
|
private ArtifactWallToken(final ArtifactWallToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public ArtifactWallToken copy() {
|
|
return new ArtifactWallToken(this);
|
|
}
|
|
}
|