From 7e9e78fee467d1ca900fdd2aef321e6eab0e9841 Mon Sep 17 00:00:00 2001 From: Michael Simons Date: Fri, 27 Apr 2018 00:42:21 -0400 Subject: [PATCH] Update AtarkaMonument.java The turn into a 4/4 dragon ability wasn't working as expected. It was only turning it into a dragon and giving it flying ability, but the rest of the effects never took place. --- Mage.Sets/src/mage/cards/a/AtarkaMonument.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Mage.Sets/src/mage/cards/a/AtarkaMonument.java b/Mage.Sets/src/mage/cards/a/AtarkaMonument.java index 65e7fd63606..10f2d52cebb 100644 --- a/Mage.Sets/src/mage/cards/a/AtarkaMonument.java +++ b/Mage.Sets/src/mage/cards/a/AtarkaMonument.java @@ -74,13 +74,13 @@ public class AtarkaMonument extends CardImpl { private static class AtarkaMonumentToken extends TokenImpl { AtarkaMonumentToken() { super("", "4/4 red and green Dragon artifact creature with flying"); - cardType.add(CardType.ARTIFACT); - cardType.add(CardType.CREATURE); - color.setRed(true); - color.setGreen(true); + this.cardType.add(CardType.ARTIFACT); + this.cardType.add(CardType.CREATURE); + this.color.setRed(true); + this.color.setGreen(true); this.subtype.add(SubType.DRAGON); - power = new MageInt(4); - toughness = new MageInt(4); + this.power = new MageInt(4); + this.toughness = new MageInt(4); this.addAbility(FlyingAbility.getInstance()); } public AtarkaMonumentToken(final AtarkaMonumentToken token) { @@ -91,4 +91,4 @@ public class AtarkaMonument extends CardImpl { return new AtarkaMonumentToken(this); } } -} \ No newline at end of file +}