more text adjustments

This commit is contained in:
xenohedron 2024-06-06 23:28:10 -04:00
parent 3ed1a82ac9
commit 79a37d249e
4 changed files with 8 additions and 8 deletions

View file

@ -29,10 +29,10 @@ public final class EmpyrealVoyager extends CardImpl {
this.addAbility(FlyingAbility.getInstance());
// Trample
this.addAbility(TrampleAbility.getInstance());
// Whenever Empyreal Voyager deals combat damage to a player you get that many {E}
this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(
new GetEnergyCountersControllerEffect(SavedDamageValue.MANY)
.setText("you get that many {E} <i>(energy counters)</i>."),
new GetEnergyCountersControllerEffect(SavedDamageValue.MANY),
false, true));
}

View file

@ -32,7 +32,7 @@ public final class NykthosParagon extends CardImpl {
CounterType.P1P1.createInstance(),
SavedGainedLifeValue.MANY,
StaticFilters.FILTER_CONTROLLED_CREATURE
), true, true
).setText("put that many +1/+1 counters on each creature you control"), true, true
).setDoOnlyOnceEachTurn(true));
}
@ -44,4 +44,4 @@ public final class NykthosParagon extends CardImpl {
public NykthosParagon copy() {
return new NykthosParagon(this);
}
}
}

View file

@ -54,7 +54,7 @@ class SawhornNemesisEffect extends ReplacementEffectImpl {
SawhornNemesisEffect() {
super(Duration.WhileOnBattlefield, Outcome.Damage);
staticText = "If a source would deal damage to the chosen player or a permanent they control, it deals double that damage to that permanent or player instead";
staticText = "If a source would deal damage to the chosen player or a permanent they control, it deals double that damage instead";
}
private SawhornNemesisEffect(final SawhornNemesisEffect effect) {

View file

@ -42,11 +42,11 @@ public class GetEnergyCountersControllerEffect extends OneShotEffect {
}
private void setText() {
if (staticText == null || !staticText.isEmpty()) {
if (staticText != null && !staticText.isEmpty()) {
return;
}
if (value.getMessage().equals("that many")) {
staticText = "that many {E}";
if (value.toString().equals("that many")) {
staticText = "you get that many {E} <i>(energy counters)</i>.";
return;
}
StringBuilder sb = new StringBuilder();