a bunch of unrelated text fixes

This commit is contained in:
xenohedron 2025-06-14 01:53:56 -04:00
parent 519a9e0c49
commit 492c7c9db8
38 changed files with 121 additions and 127 deletions

View file

@ -17,7 +17,7 @@ public class AdditionalTriggerControlledETBReplacementEffect extends Replacement
public AdditionalTriggerControlledETBReplacementEffect() {
super(Duration.WhileOnBattlefield, Outcome.Benefit);
staticText = "If a permanent entering the battlefield causes a triggered ability " +
staticText = "If a permanent entering causes a triggered ability " +
"of a permanent you control to trigger, that ability triggers an additional time";
}

View file

@ -41,7 +41,7 @@ public class DontCauseTriggerEffect extends ContinuousRuleModifyingEffectImpl {
this.filterEntering = filterEntering;
this.orDying = orDying;
this.filterTriggering = filterTriggering;
staticText = filterEntering.getMessage() + " entering the battlefield"
staticText = filterEntering.getMessage() + " entering"
+ (orDying ? " or dying" : "") + " don't cause abilities"
+ (filterTriggering == null ? "" : " of " + filterTriggering.getMessage())
+ " to trigger";