* Surrak, the Hunt Caller - Fixed wrong tooltip.

This commit is contained in:
LevelX2 2015-03-19 09:20:36 +01:00
parent 8c346c22cb
commit 1730b1a51b

View file

@ -61,7 +61,7 @@ public class SurrakTheHuntCaller extends CardImpl {
Ability ability = new ConditionalTriggeredAbility( Ability ability = new ConditionalTriggeredAbility(
new BeginningOfCombatTriggeredAbility(new GainAbilityTargetEffect(HasteAbility.getInstance(), Duration.EndOfTurn), TargetController.YOU, false), new BeginningOfCombatTriggeredAbility(new GainAbilityTargetEffect(HasteAbility.getInstance(), Duration.EndOfTurn), TargetController.YOU, false),
FormidableCondition.getInstance(), FormidableCondition.getInstance(),
"<i>Formidable</i> &mdash; Whenever {this} attacks, if creatures you control have total power 8 or greater, creatures you control gain trample until end of turn."); "<i>Formidable</i> &mdash; Whenever {this} attacks, if creatures you control have total power 8 or greater, target creature you control gains haste until end of turn.");
ability.addTarget(new TargetControlledCreaturePermanent()); ability.addTarget(new TargetControlledCreaturePermanent());
this.addAbility(ability); this.addAbility(ability);
} }