* Surrak, the Hunt Caller - Fixed tooltip text.

This commit is contained in:
LevelX2 2015-05-24 10:13:03 +02:00
parent abeac7ff65
commit e8b2e01cd4

View file

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