more text fixes

This commit is contained in:
xenohedron 2023-08-25 23:21:48 -04:00
parent 978ec8f140
commit b953734099
4 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,3 @@
package mage.cards.a;
import mage.abilities.common.SimpleStaticAbility;
@ -21,7 +20,7 @@ import java.util.UUID;
*/
public final class AncestralMask extends CardImpl {
private static final FilterEnchantmentPermanent filter = new FilterEnchantmentPermanent("each other enchantment on the battlefield");
private static final FilterEnchantmentPermanent filter = new FilterEnchantmentPermanent("other enchantment on the battlefield");
static {
filter.add(AnotherPredicate.instance);
@ -39,7 +38,7 @@ public final class AncestralMask extends CardImpl {
// Enchanted creature gets +2/+2 for each other enchantment on the battlefield.
PermanentsOnBattlefieldCount countEnchantments = new PermanentsOnBattlefieldCount(filter, 2);
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostEnchantedEffect(countEnchantments, countEnchantments, Duration.WhileOnBattlefield)));
this.addAbility(new SimpleStaticAbility(new BoostEnchantedEffect(countEnchantments, countEnchantments, Duration.WhileOnBattlefield)));
}
private AncestralMask(final AncestralMask card) {

View file

@ -51,7 +51,8 @@ class FaerieFencingEffect extends OneShotEffect {
FaerieFencingEffect() {
super(Outcome.UnboostCreature);
this.staticText = "target creature gets -X/-X until end of turn. That creature gets an additional -3/-3 if you controlled a Faerie as you cast this spell.";
this.staticText = "target creature gets -X/-X until end of turn. " +
"That creature gets an additional -3/-3 until end of turn if you controlled a Faerie as you cast this spell.";
}
private FaerieFencingEffect(final FaerieFencingEffect effect) {

View file

@ -79,6 +79,6 @@ class KarmicJusticeTriggeredAbility extends TriggeredAbilityImpl {
@Override
public String getRule() {
return "Whenever a spell or ability an opponent controls destroys a noncreature permanent you control, you may destroy target permanent that opponent controls";
return "Whenever a spell or ability an opponent controls destroys a noncreature permanent you control, you may destroy target permanent that opponent controls.";
}
}

View file

@ -52,7 +52,7 @@ class WulfgarOfIcewindDaleEffect extends ReplacementEffectImpl {
WulfgarOfIcewindDaleEffect() {
super(Duration.WhileOnBattlefield, Outcome.Benefit);
staticText = "if a creature you control attacking would cause a triggered ability " +
staticText = "if a creature you control attacking causes a triggered ability " +
"of a permanent you control to trigger, that ability triggers an additional time";
}