mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08:00
align to new enters wording changed upstream
This commit is contained in:
parent
c0eab28626
commit
a76ef60820
3 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue