more card text cleanup

This commit is contained in:
Neil Gentleman 2016-07-15 22:08:08 -07:00
parent 7f2b3b71c2
commit 296e0a9a49
29 changed files with 34 additions and 39 deletions

View file

@ -51,6 +51,6 @@ public class BecomesTappedTriggeredAbility extends TriggeredAbilityImpl{
@Override
public String getRule() {
return "When " + filter.getMessage() + " becomes tapped, " + super.getRule();
return "Whenever " + filter.getMessage() + " becomes tapped, " + super.getRule();
}
}

View file

@ -41,7 +41,7 @@ import mage.game.permanent.Permanent;
public class SacrificeSourceCost extends CostImpl {
public SacrificeSourceCost() {
this.text = "Sacrifice {this}";
this.text = "sacrifice {this}";
}
public SacrificeSourceCost(SacrificeSourceCost cost) {

View file

@ -109,7 +109,7 @@ public class SacrificeAllEffect extends OneShotEffect {
private void setText() {
StringBuilder sb = new StringBuilder();
sb.append("Each player sacrifices ");
sb.append("each player sacrifices ");
if (amount.toString().equals("X")) {
sb.append(amount.toString());
} else {

View file

@ -108,7 +108,7 @@ public class SacrificeOpponentsEffect extends OneShotEffect {
private void setText() {
StringBuilder sb = new StringBuilder();
sb.append("Each opponent sacrifices ");
sb.append("each opponent sacrifices ");
if (amount.toString().equals("X")) {
sb.append(amount.toString());
} else {

View file

@ -70,10 +70,7 @@ public class TapAllEffect extends OneShotEffect {
}
private void setText() {
StringBuilder sb = new StringBuilder();
sb.append("Tap all ");
sb.append(filter.getMessage());
staticText = sb.toString();
staticText = "tap all " + filter.getMessage();
}
}

View file

@ -197,7 +197,7 @@ public class DiscardCardYouChooseTargetEffect extends OneShotEffect {
sb.append(" reveals his or her hand");
} else {
if (numberCardsToReveal instanceof StaticValue) {
sb.append(" reveales ");
sb.append(" reveals ");
sb.append(numberCardsToReveal.getMessage());
sb.append(" from his or her hand");
} else {