Skip to content

Commit

Permalink
Avacyn, the Purifier - Added missing colro for the night side card.
Browse files Browse the repository at this point in the history
  • Loading branch information
LevelX2 committed Mar 15, 2016
1 parent 957949d commit 8534563
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -42,8 +42,8 @@
* @author fireshoes
*/
public class AvacynThePurifier extends CardImpl {
private static final String rule = "Whenever this creature transforms into Avacyn, the Purifier, it deals 3 damage to each other creature and each opponent";

private static final String rule = "Whenever this creature transforms into {this}, it deals 3 damage to each other creature and each opponent";

public AvacynThePurifier(UUID ownerId) {
super(ownerId, 5, "Avacyn, the Purifier", Rarity.MYTHIC, new CardType[]{CardType.CREATURE}, "");
Expand All @@ -52,6 +52,7 @@ public AvacynThePurifier(UUID ownerId) {
this.subtype.add("Angel");
this.power = new MageInt(6);
this.toughness = new MageInt(5);
this.color.setRed(true);

// this card is the second face of double-faced card
this.nightCard = true;
Expand Down

2 comments on commit 8534563

@fireshoes
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does the color set only need done for cards that are a different color on the night side?

@LevelX2
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No for all cards without mana casting costs that have a color.

Please sign in to comment.