[TSP] various text fixes

This commit is contained in:
Evan Kranzler 2022-04-01 08:42:38 -04:00
parent 46f98a0f88
commit 24478afbe1
29 changed files with 121 additions and 112 deletions

View file

@ -29,6 +29,6 @@ public class ActivateOnlyByOpponentActivatedAbility extends ActivatedAbilityImpl
@Override
public String getRule() {
return super.getRule() + " Only any opponent may activate this ability.";
return super.getRule() + " Only your opponents may activate this ability.";
}
}

View file

@ -27,7 +27,7 @@ public class ProtectionChosenColorAttachedEffect extends ContinuousEffectImpl {
public ProtectionChosenColorAttachedEffect(boolean notRemoveItself) {
super(Duration.WhileOnBattlefield, Layer.AbilityAddingRemovingEffects_6, SubLayer.NA, Outcome.AddAbility);
this.notRemoveItself = notRemoveItself;
staticText = "{this} has protection from the chosen color" + (notRemoveItself ? ". This effect doesn't remove {this}" : "");
staticText = "enchanted creature has protection from the chosen color" + (notRemoveItself ? ". This effect doesn't remove {this}" : "");
}
public ProtectionChosenColorAttachedEffect(final ProtectionChosenColorAttachedEffect effect) {

View file

@ -169,7 +169,7 @@ public class AddManaInAnyCombinationEffect extends ManaEffect {
sb.append('{').append(coloredManaSymbol.toString()).append('}');
}
}
if (amountString.equals("X")) {
if (amountString.equals("X") && !amount.getMessage().isEmpty()) {
sb.append(", where X is ");
sb.append(amount.getMessage());
}