mirror of
https://github.com/correl/mage.git
synced 2025-01-13 11:01:58 +00:00
fixed The Birth of Meletis (missing defender ability in token)
This commit is contained in:
parent
65d914ffe7
commit
893bcbb01f
1 changed files with 3 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue