[FCA] a few text fixes

This commit is contained in:
theelk801 2025-05-30 22:19:47 -04:00
parent 1051ccbe9d
commit a61851db09
4 changed files with 5 additions and 5 deletions

View file

@ -61,7 +61,7 @@ public final class AkromasWill extends CardImpl {
mode.addEffect(new GainAbilityControlledEffect(
new ProtectionAbility(filter), Duration.EndOfTurn,
StaticFilters.FILTER_CONTROLLED_CREATURE
).setText(", and protection from all colors until end of turn"));
).setText(", and protection from each color until end of turn"));
this.getSpellAbility().addMode(mode);
}

View file

@ -47,7 +47,7 @@ class FatalPushEffect extends OneShotEffect {
super(Outcome.DestroyPermanent);
this.staticText = "Destroy target creature if it has mana value 2 or less.<br>" +
AbilityWord.REVOLT.formatWord() + "Destroy that creature if it has mana value 4 " +
"or less instead if a permanent you controlled left the battlefield this turn";
"or less instead if a permanent left the battlefield under your control this turn";
}
private FatalPushEffect(final FatalPushEffect effect) {

View file

@ -71,7 +71,7 @@ public class VerifyCardDataTest {
private static final Logger logger = Logger.getLogger(VerifyCardDataTest.class);
private static final String FULL_ABILITIES_CHECK_SET_CODES = "FIC"; // check ability text due mtgjson, can use multiple sets like MAT;CMD or * for all
private static final String FULL_ABILITIES_CHECK_SET_CODES = "FCA"; // check ability text due mtgjson, can use multiple sets like MAT;CMD or * for all
private static final boolean CHECK_ONLY_ABILITIES_TEXT = false; // use when checking text locally, suppresses unnecessary checks and output messages
private static final boolean CHECK_COPYABLE_FIELDS = true; // disable for better verify test performance

View file

@ -15,7 +15,7 @@ import mage.constants.Zone;
public final class KarnConstructToken extends TokenImpl {
public KarnConstructToken() {
super("Construct Token", "0/0 colorless Construct artifact creature token with \"This creature gets +1/+1 for each artifact you control.\"");
super("Construct Token", "0/0 colorless Construct artifact creature token with \"This token gets +1/+1 for each artifact you control.\"");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.CONSTRUCT);
@ -24,7 +24,7 @@ public final class KarnConstructToken extends TokenImpl {
this.addAbility(new SimpleStaticAbility(
new BoostSourceEffect(ArtifactYouControlCount.instance, ArtifactYouControlCount.instance, Duration.WhileOnBattlefield)
.setText("This creature gets +1/+1 for each artifact you control")
.setText("This token gets +1/+1 for each artifact you control")
));
}