text fixes [ODY] [TOR] [JUD] [ONS] [LGN] [SCG]

This commit is contained in:
xenohedron 2025-05-31 14:04:42 -04:00
parent 1abaeaabdb
commit 99189ea7a3
58 changed files with 135 additions and 126 deletions

View file

@ -20,7 +20,7 @@ public enum SourceInGraveyardCondition implements Condition {
@Override
public String toString() {
return "{this} is in your graveyard";
return "this card is in your graveyard";
}
}

View file

@ -44,6 +44,7 @@ public class DiscardXTargetCost extends VariableCostImpl {
public DiscardXTargetCost withRandom() {
this.isRandom = true;
this.text += " at random";
return this;
}

View file

@ -18,7 +18,7 @@ public class RemoveAllCountersSourceEffect extends OneShotEffect {
public RemoveAllCountersSourceEffect(CounterType counterType) {
super(Outcome.Neutral);
this.counterType = counterType;
staticText = "remove all " + counterType.getName() + " counters from it.";
staticText = "remove all " + counterType.getName() + " counters from {this}";
}
protected RemoveAllCountersSourceEffect(final RemoveAllCountersSourceEffect effect) {