fixed The Birth of Meletis (missing defender ability in token)

This commit is contained in:
Oleg Agafonov 2020-01-03 12:20:40 +04:00
parent 65d914ffe7
commit 893bcbb01f

View file

@ -1,6 +1,7 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.DefenderAbility;
import mage.constants.CardType;
import mage.constants.SubType;
@ -13,6 +14,8 @@ public final class ArtifactWallToken extends TokenImpl {
subtype.add(SubType.WALL);
power = new MageInt(0);
toughness = new MageInt(4);
addAbility(DefenderAbility.getInstance());
}
private ArtifactWallToken(final ArtifactWallToken token) {