* Fixed wrong P/T values of Aegis of the Heavens.

This commit is contained in:
LevelX2 2018-06-24 10:34:43 +02:00
parent 595ead66a7
commit 3d31e12eae

View file

@ -18,7 +18,7 @@ public final class AegisOfTheHeavens extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{W}");
// Target creature gets +1/+7 until end of turn.
this.getSpellAbility().addEffect(new BoostTargetEffect(3, 3, Duration.EndOfTurn));
this.getSpellAbility().addEffect(new BoostTargetEffect(1, 7, Duration.EndOfTurn));
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
}