mirror of
https://github.com/correl/mage.git
synced 2025-01-14 03:00:10 +00:00
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:
parent
26bc78dc8c
commit
7e9e78fee4
1 changed files with 7 additions and 7 deletions
|
@ -74,13 +74,13 @@ public class AtarkaMonument extends CardImpl {
|
||||||
private static class AtarkaMonumentToken extends TokenImpl {
|
private static class AtarkaMonumentToken extends TokenImpl {
|
||||||
AtarkaMonumentToken() {
|
AtarkaMonumentToken() {
|
||||||
super("", "4/4 red and green Dragon artifact creature with flying");
|
super("", "4/4 red and green Dragon artifact creature with flying");
|
||||||
cardType.add(CardType.ARTIFACT);
|
this.cardType.add(CardType.ARTIFACT);
|
||||||
cardType.add(CardType.CREATURE);
|
this.cardType.add(CardType.CREATURE);
|
||||||
color.setRed(true);
|
this.color.setRed(true);
|
||||||
color.setGreen(true);
|
this.color.setGreen(true);
|
||||||
this.subtype.add(SubType.DRAGON);
|
this.subtype.add(SubType.DRAGON);
|
||||||
power = new MageInt(4);
|
this.power = new MageInt(4);
|
||||||
toughness = new MageInt(4);
|
this.toughness = new MageInt(4);
|
||||||
this.addAbility(FlyingAbility.getInstance());
|
this.addAbility(FlyingAbility.getInstance());
|
||||||
}
|
}
|
||||||
public AtarkaMonumentToken(final AtarkaMonumentToken token) {
|
public AtarkaMonumentToken(final AtarkaMonumentToken token) {
|
||||||
|
|
Loading…
Reference in a new issue