[ZNC] some text fixes

This commit is contained in:
Evan Kranzler 2021-02-02 10:14:44 -05:00
parent 144e2e933a
commit 16450f9952
20 changed files with 59 additions and 58 deletions

View file

@ -53,7 +53,7 @@ public class PutCardIntoGraveFromAnywhereAllTriggeredAbility extends TriggeredAb
default:
sb.append('a');
}
sb.append(" graveyard, ");
sb.append(" graveyard from anywhere, ");
ruleText = sb.toString();
}

View file

@ -40,13 +40,13 @@ public class OpponentLostLifeCondition extends IntCompareCondition {
StringBuilder sb = new StringBuilder("if an opponent lost ");
switch (type) {
case MORE_THAN:
sb.append(value + 1).append(" or more life this turn ");
sb.append(value + 1).append(" or more life this turn");
break;
case EQUAL_TO:
sb.append(value).append(" life this turn ");
sb.append(value).append(" life this turn");
break;
case FEWER_THAN:
sb.append(" less than ").append(value).append(" life this turn ");
sb.append(" less than ").append(value).append(" life this turn");
break;
}
return sb.toString();

View file

@ -11,6 +11,8 @@ import mage.constants.TurnPhase;
import mage.game.Game;
import mage.game.events.GameEvent;
import java.util.Locale;
/**
* @author LevelX2
*/
@ -61,7 +63,7 @@ public class CastOnlyDuringPhaseStepSourceEffect extends ContinuousRuleModifying
private String setText() {
StringBuilder sb = new StringBuilder("cast this spell only during ");
if (turnPhase != null) {
sb.append(turnPhase.toString());
sb.append(turnPhase.toString().toLowerCase());
}
if (phaseStep != null) {
sb.append("the ").append(phaseStep.getStepText());

View file

@ -154,7 +154,7 @@ public class ProwlAbility extends StaticAbility implements AlternativeSourceCost
private void setReminderText(Card card) {
reminderText
= "(You may cast this for its prowl cost if you dealt combat damage to a "
+ "player this turn with a creature that shared a creature type with {this}";
+ "player this turn with a creature that shared a creature type with {this})";
}
@Override