mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +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() {
|
public LlanowarEmpathEffect() {
|
||||||
super(Outcome.Benefit);
|
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) {
|
public LlanowarEmpathEffect(final LlanowarEmpathEffect effect) {
|
||||||
|
|
|
@ -60,10 +60,10 @@ public class PowerMatrix extends CardImpl {
|
||||||
effect.setText("Target creature gets +1/+1");
|
effect.setText("Target creature gets +1/+1");
|
||||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new TapSourceCost());
|
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new TapSourceCost());
|
||||||
effect = new GainAbilityTargetEffect(FlyingAbility.getInstance(), Duration.EndOfTurn);
|
effect = new GainAbilityTargetEffect(FlyingAbility.getInstance(), Duration.EndOfTurn);
|
||||||
effect.setText("and gains flying,");
|
effect.setText("and gains flying");
|
||||||
ability.addEffect(effect);
|
ability.addEffect(effect);
|
||||||
effect = new GainAbilityTargetEffect(FirstStrikeAbility.getInstance(), Duration.EndOfTurn);
|
effect = new GainAbilityTargetEffect(FirstStrikeAbility.getInstance(), Duration.EndOfTurn);
|
||||||
effect.setText("first strike,");
|
effect.setText(", first strike,");
|
||||||
ability.addEffect(effect);
|
ability.addEffect(effect);
|
||||||
effect = new GainAbilityTargetEffect(TrampleAbility.getInstance(), Duration.EndOfTurn);
|
effect = new GainAbilityTargetEffect(TrampleAbility.getInstance(), Duration.EndOfTurn);
|
||||||
effect.setText("and trample until end of turn.");
|
effect.setText("and trample until end of turn.");
|
||||||
|
|
|
@ -80,7 +80,7 @@ class KaerveksTorchCostIncreaseEffect extends CostModificationEffectImpl {
|
||||||
|
|
||||||
KaerveksTorchCostIncreaseEffect() {
|
KaerveksTorchCostIncreaseEffect() {
|
||||||
super(Duration.WhileOnStack, Outcome.Benefit, CostModificationType.INCREASE_COST);
|
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) {
|
KaerveksTorchCostIncreaseEffect(KaerveksTorchCostIncreaseEffect effect) {
|
||||||
|
|
Loading…
Reference in a new issue