From 4656601ff5348be980be8215c702a7c13b22b7ec Mon Sep 17 00:00:00 2001 From: LoneFox Date: Wed, 1 Jul 2015 22:41:19 +0300 Subject: [PATCH] Fix toughness of Aerie Mystics --- Mage.Sets/src/mage/sets/conflux/AerieMystics.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/conflux/AerieMystics.java b/Mage.Sets/src/mage/sets/conflux/AerieMystics.java index 1a75a1ede72..1ec573b1d38 100644 --- a/Mage.Sets/src/mage/sets/conflux/AerieMystics.java +++ b/Mage.Sets/src/mage/sets/conflux/AerieMystics.java @@ -56,7 +56,7 @@ public class AerieMystics extends CardImpl { this.subtype.add("Bird"); this.subtype.add("Wizard"); this.power = new MageInt(3); - this.toughness = new MageInt(4); + this.toughness = new MageInt(3); this.addAbility(FlyingAbility.getInstance()); this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainAbilityControlledEffect(ShroudAbility.getInstance(), Duration.EndOfTurn, filter), new ManaCostsImpl("{1}{G}{U}"))); }