mirror of
https://github.com/magefree/mage.git
synced 2026-01-23 03:39:54 -08:00
[FIN] more text fixes
This commit is contained in:
parent
a27302654c
commit
a9cd45c84e
10 changed files with 16 additions and 10 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -109,6 +109,6 @@ public class EquipAbility extends ActivatedAbilityImpl {
|
|||
if (showAbilityHint) {
|
||||
sb.append(reminderText);
|
||||
}
|
||||
return sb.toString();
|
||||
return sb.toString().replace("..", ".");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue