[STX] various text fixes

This commit is contained in:
Evan Kranzler 2021-04-17 18:22:43 -04:00
parent a61d5543fa
commit 326c17fe4d
33 changed files with 65 additions and 47 deletions

View file

@ -42,12 +42,12 @@ public class LimitedTimesPerTurnActivatedAbility extends ActivatedAbilityImpl {
@Override
public String getRule() {
StringBuilder sb = new StringBuilder(super.getRule()).append(" Activate this ability ");
StringBuilder sb = new StringBuilder(super.getRule()).append(" Activate ");
if (condition != null) {
sb.append("only ").append(condition.toString()).append(" and ");
}
if (getTiming() == TimingRule.SORCERY) {
sb.append("only any time you could cast a sorcery and ");
sb.append("only as a sorcery and ");
}
switch (maxActivationsPerTurn) {
case 1: