text errata updates: various "enters the battlefield" -> "enters" (#12626)

* enters the battlefield, -> enters,

* {this} enters the battlefield -> {this} enters

* EntersBattlefieldAbility

* , it enters

* enters the battlefield under your control -> you control enters

* rework some trigger phrase logic

* fix tests
This commit is contained in:
xenohedron 2024-08-02 18:43:59 -04:00 committed by GitHub
parent ab803079b9
commit b78956d286
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
1137 changed files with 1403 additions and 1395 deletions

View file

@ -15,7 +15,7 @@ public final class HuatliRadiantChampionEmblem extends Emblem {
public HuatliRadiantChampionEmblem() {
super("Emblem Huatli");
// Whenever a creature enters the battlefield under your control, you may draw a card.
// Whenever a creature you control enters, you may draw a card.
Ability ability = new EntersBattlefieldControlledTriggeredAbility(Zone.COMMAND,
new DrawCardSourceControllerEffect(1), StaticFilters.FILTER_CONTROLLED_A_CREATURE, true);
this.getAbilities().add(ability);

View file

@ -20,7 +20,7 @@ public final class KothFireOfResistanceEmblem extends Emblem {
filterMountain.add(SubType.MOUNTAIN.getPredicate());
}
// 7: You get an emblem with "Whenever a Mountain enters the battlefield under your control, this emblem deals 4 damage to any target."
// 7: You get an emblem with "Whenever a Mountain you control enters, this emblem deals 4 damage to any target."
public KothFireOfResistanceEmblem() {
super("Emblem Koth");

View file

@ -17,7 +17,7 @@ import mage.target.common.TargetAnyTarget;
*/
public final class LukkaWaywardBonderEmblem extends Emblem {
// 7: You get an emblem with "Whenever a creature enters the battlefield under your control, it deals damage equal to its power to any target."
// 7: You get an emblem with "Whenever a creature you control enters, it deals damage equal to its power to any target."
public LukkaWaywardBonderEmblem() {
super("Emblem Lukka");
Ability ability = new EntersBattlefieldControlledTriggeredAbility(

View file

@ -11,7 +11,7 @@ import mage.game.command.Emblem;
* @author spjspj
*/
public final class NissaVitalForceEmblem extends Emblem {
// You get an emblem with "Whenever a land enters the battlefield under your control, you may draw a card."
// You get an emblem with "Whenever a land you control enters, you may draw a card."
public NissaVitalForceEmblem() {
super("Emblem Nissa");

View file

@ -26,7 +26,7 @@ public final class OutlawsMerrimentRogueToken extends TokenImpl {
this.addAbility(HasteAbility.getInstance());
Ability ability = new EntersBattlefieldTriggeredAbility(new DamageTargetEffect(1, "it"))
.setTriggerPhrase("When this creature enters the battlefield, ");
.setTriggerPhrase("When this creature enters, ");
ability.addTarget(new TargetAnyTarget());
this.addAbility(ability);
}