mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Some tooltip fixes
This commit is contained in:
parent
52c7e7ee19
commit
1fb56df894
3 changed files with 4 additions and 4 deletions
|
@ -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) {
|
||||
|
|
|
@ -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.");
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue