Some tooltip fixes

This commit is contained in:
LoneFox 2015-06-18 19:25:48 +03:00
parent 52c7e7ee19
commit 1fb56df894
3 changed files with 4 additions and 4 deletions

View file

@ -80,7 +80,7 @@ class LlanowarEmpathEffect extends OneShotEffect {
public LlanowarEmpathEffect() {
super(Outcome.Benefit);
this.staticText = "reveal the top card of your library. If it's a creature card, put it into your hand.";
this.staticText = ", then reveal the top card of your library. If it's a creature card, put it into your hand.";
}
public LlanowarEmpathEffect(final LlanowarEmpathEffect effect) {

View file

@ -60,10 +60,10 @@ public class PowerMatrix extends CardImpl {
effect.setText("Target creature gets +1/+1");
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new TapSourceCost());
effect = new GainAbilityTargetEffect(FlyingAbility.getInstance(), Duration.EndOfTurn);
effect.setText("and gains flying,");
effect.setText("and gains flying");
ability.addEffect(effect);
effect = new GainAbilityTargetEffect(FirstStrikeAbility.getInstance(), Duration.EndOfTurn);
effect.setText("first strike,");
effect.setText(", first strike,");
ability.addEffect(effect);
effect = new GainAbilityTargetEffect(TrampleAbility.getInstance(), Duration.EndOfTurn);
effect.setText("and trample until end of turn.");

View file

@ -80,7 +80,7 @@ class KaerveksTorchCostIncreaseEffect extends CostModificationEffectImpl {
KaerveksTorchCostIncreaseEffect() {
super(Duration.WhileOnStack, Outcome.Benefit, CostModificationType.INCREASE_COST);
staticText = "Spells that target Kaervek's Torch cost {2} more to cast";
staticText = "Spells that target {this} cost {2} more to cast";
}
KaerveksTorchCostIncreaseEffect(KaerveksTorchCostIncreaseEffect effect) {