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.
This commit is contained in:
Michael Simons 2018-04-27 00:42:21 -04:00 committed by GitHub
parent 26bc78dc8c
commit 7e9e78fee4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
}
}
}
}