mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 21:42:07 -08:00
[ZNC] some text fixes
This commit is contained in:
parent
144e2e933a
commit
16450f9952
20 changed files with 59 additions and 58 deletions
|
|
@ -53,7 +53,7 @@ public class PutCardIntoGraveFromAnywhereAllTriggeredAbility extends TriggeredAb
|
|||
default:
|
||||
sb.append('a');
|
||||
}
|
||||
sb.append(" graveyard, ");
|
||||
sb.append(" graveyard from anywhere, ");
|
||||
ruleText = sb.toString();
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue