Merge pull request #4874 from magefree/rystan-atarkamonument

Update AtarkaMonument.java
This commit is contained in:
LevelX2 2018-04-28 13:23:41 +02:00 committed by GitHub
commit 5884dc6533
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);
}
}
}
}