align to new enters wording changed upstream

This commit is contained in:
Susucre 2024-07-30 15:54:16 +02:00
parent c0eab28626
commit a76ef60820
3 changed files with 4 additions and 4 deletions

View file

@ -71,9 +71,9 @@ public class EntersBattlefieldAllTriggeredAbility extends TriggeredAbilityImpl {
protected final String getTriggerPhraseFromFilter() {
String filterMessage = filter.getMessage();
if (filterMessage.startsWith("one or more")) {
return getWhen() + filterMessage + " enter the battlefield";
return getWhen() + filterMessage + " enter";
}
return getWhen() + CardUtil.addArticle(filterMessage) + " enters the battlefield";
return getWhen() + CardUtil.addArticle(filterMessage) + " enters";
}
@Override

View file

@ -32,7 +32,7 @@ public class EntersBattlefieldTappedAbility extends StaticAbility {
if (ruleText != null) {
return ruleText;
}
return "{this} enters the battlefield tapped.";
return "{this} enters tapped.";
}
@Override

View file

@ -18,7 +18,7 @@ public class EntersBattlefieldTriggeredAbility extends TriggeredAbilityImpl {
public EntersBattlefieldTriggeredAbility(Effect effect, boolean optional) {
super(Zone.ALL, effect, optional); // Zone.All because a creature with trigger can be put into play and be sacrificed during the resolution of an effect (discard Obstinate Baloth with Smallpox)
this.withRuleTextReplacement(true); // default true to replace "{this}" with "it"
setTriggerPhrase("When {this} enters the battlefield, ");
setTriggerPhrase("When {this} enters, ");
}
protected EntersBattlefieldTriggeredAbility(final EntersBattlefieldTriggeredAbility ability) {