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 +}