* Cutthroat Maneuver - Fixed tooltip text saying +2/+2 instead of correctly +1/+1.

This commit is contained in:
LevelX2 2013-09-20 08:17:43 +02:00
parent 0000e9e1c0
commit dfe2940623

View file

@ -52,7 +52,7 @@ public class CutthroatManeuver extends CardImpl<CutthroatManeuver> {
// Up to two target creatures each get +1/+1 and gain lifelink until end of turn.
Effect effect = new BoostTargetEffect(1,1, Duration.EndOfTurn);
effect.setText("Up to two target creatures each get +2/+2");
effect.setText("Up to two target creatures each get +1/+1");
this.getSpellAbility().addEffect(effect);
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(LifelinkAbility.getInstance(), Duration.EndOfTurn,
"and gain lifelink until end of turn"));