[FIN] more text fixes

This commit is contained in:
theelk801 2025-05-31 10:09:59 -04:00
parent a27302654c
commit a9cd45c84e
10 changed files with 16 additions and 10 deletions

View file

@ -31,7 +31,7 @@ import java.util.function.Consumer;
public class SagaAbility extends SimpleStaticAbility {
private final SagaChapter maxChapter;
private final boolean showSacText;
private boolean showSacText;
private final boolean readAhead;
public SagaAbility(Card card) {
@ -134,6 +134,11 @@ public class SagaAbility extends SimpleStaticAbility {
return maxChapter;
}
public SagaAbility withShowSacText(boolean showSacText) {
this.showSacText = showSacText;
return this;
}
@Override
public String getRule() {
return (readAhead

View file

@ -72,7 +72,7 @@ class AddCounterNextSpellEffect extends ReplacementEffectImpl {
AddCounterNextSpellEffect(int amount) {
super(Duration.EndOfStep, Outcome.BoostCreature);
this.amount = amount;
staticText = "that creature enters the battlefield with " + CardUtil.numberToText(amount, "an") + " additional +1/+1 counter" + (amount > 1 ? "s" : "") + " on it";
staticText = "that creature enters with " + CardUtil.numberToText(amount, "an") + " additional +1/+1 counter" + (amount > 1 ? "s" : "") + " on it";
}
private AddCounterNextSpellEffect(AddCounterNextSpellEffect effect) {

View file

@ -109,6 +109,6 @@ public class EquipAbility extends ActivatedAbilityImpl {
if (showAbilityHint) {
sb.append(reminderText);
}
return sb.toString();
return sb.toString().replace("..", ".");
}
}