mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
more text adjustments
This commit is contained in:
parent
3ed1a82ac9
commit
79a37d249e
4 changed files with 8 additions and 8 deletions
|
|
@ -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));
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue