mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08: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;
|
package mage.game.permanent.token;
|
||||||
|
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
|
import mage.abilities.keyword.DefenderAbility;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
|
|
||||||
|
|
@ -13,6 +14,8 @@ public final class ArtifactWallToken extends TokenImpl {
|
||||||
subtype.add(SubType.WALL);
|
subtype.add(SubType.WALL);
|
||||||
power = new MageInt(0);
|
power = new MageInt(0);
|
||||||
toughness = new MageInt(4);
|
toughness = new MageInt(4);
|
||||||
|
|
||||||
|
addAbility(DefenderAbility.getInstance());
|
||||||
}
|
}
|
||||||
|
|
||||||
private ArtifactWallToken(final ArtifactWallToken token) {
|
private ArtifactWallToken(final ArtifactWallToken token) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue