Fix some more inexact rule texts

This commit is contained in:
Susucre 2024-04-06 17:16:33 +02:00
parent ef07b5b998
commit 68dfcf4eac
3 changed files with 4 additions and 4 deletions

View file

@ -60,7 +60,7 @@ class AetherworksMarvelEffect extends OneShotEffect {
AetherworksMarvelEffect() {
super(Outcome.PlayForFree);
this.staticText = "Look at the top six cards of your library. "
+ "You may cast a card from among them without paying "
+ "You may cast a spell from among them without paying "
+ "its mana cost. Put the rest on the bottom of your "
+ "library in a random order";
}

View file

@ -70,7 +70,7 @@ class ScholarOfTheLostTroveEffect extends OneShotEffect {
ScholarOfTheLostTroveEffect() {
super(Outcome.PlayForFree);
this.staticText = "you may cast target instant, sorcery, or artifact card from your graveyard without paying its mana cost. " +
"If an instant or sorcery spell cast this way would be put into your graveyard this turn, exile it instead";
"If an instant or sorcery spell cast this way would be put into your graveyard, exile it instead";
}
private ScholarOfTheLostTroveEffect(final ScholarOfTheLostTroveEffect effect) {

View file

@ -47,7 +47,7 @@ class JayaBallardCastFromGraveyardEffect extends AsThoughEffectImpl {
JayaBallardCastFromGraveyardEffect() {
super(AsThoughEffectType.PLAY_FROM_NOT_OWN_HAND_ZONE, Duration.EndOfGame, Outcome.Benefit);
staticText = "You may cast instant and sorcery cards from your graveyard";
staticText = "You may cast instant and sorcery spells from your graveyard";
}
JayaBallardCastFromGraveyardEffect(final JayaBallardCastFromGraveyardEffect effect) {
@ -83,7 +83,7 @@ class JayaBallardReplacementEffect extends ReplacementEffectImpl {
public JayaBallardReplacementEffect() {
super(Duration.EndOfGame, Outcome.Exile);
staticText = "If a card cast this way would be put into a graveyard this turn, exile it instead";
staticText = "If a spell cast this way would be put into a graveyard this turn, exile it instead";
}
protected JayaBallardReplacementEffect(final JayaBallardReplacementEffect effect) {