more text adjustments

This commit is contained in:
xenohedron 2023-11-04 16:53:54 -04:00
parent 6695358060
commit 35ec41d8e0
3 changed files with 3 additions and 3 deletions

View file

@ -43,7 +43,7 @@ class BranchingEvolutionEffect extends ReplacementEffectImpl {
BranchingEvolutionEffect() { BranchingEvolutionEffect() {
super(Duration.WhileOnBattlefield, Outcome.BoostCreature, false); super(Duration.WhileOnBattlefield, Outcome.BoostCreature, false);
staticText = "If one or more +1/+1 counters would be put on a creature you control, " + staticText = "If one or more +1/+1 counters would be put on a creature you control, " +
"twice that many +1/+1 counters are put on it instead"; "twice that many +1/+1 counters are put on that creature instead";
} }
private BranchingEvolutionEffect(final BranchingEvolutionEffect effect) { private BranchingEvolutionEffect(final BranchingEvolutionEffect effect) {

View file

@ -62,7 +62,7 @@ class DireBlunderbussGainAbilityEffect extends ContinuousEffectImpl {
DireBlunderbussGainAbilityEffect() { DireBlunderbussGainAbilityEffect() {
super(Duration.WhileOnBattlefield, Layer.AbilityAddingRemovingEffects_6, SubLayer.NA, Outcome.AddAbility); super(Duration.WhileOnBattlefield, Layer.AbilityAddingRemovingEffects_6, SubLayer.NA, Outcome.AddAbility);
staticText = "and has \"Whenever this creature attacks, you may sacrifice an artifact other than {this}. " staticText = "and has \"Whenever this creature attacks, you may sacrifice an artifact other than {this}. "
+ "When you do, this creature deals damage equal to its power to target creature\""; + "When you do, this creature deals damage equal to its power to target creature.\"";
} }
protected DireBlunderbussGainAbilityEffect(final DireBlunderbussGainAbilityEffect effect) { protected DireBlunderbussGainAbilityEffect(final DireBlunderbussGainAbilityEffect effect) {

View file

@ -201,7 +201,7 @@ public class LookLibraryAndPickControllerEffect extends LookLibraryControllerEff
if (revealPickedCards) { if (revealPickedCards) {
sb.append("and put "); sb.append("and put ");
sb.append(plural ? "them " : "it "); sb.append(plural ? "them " : "it ");
} else if (putPickedCards == PutCards.TOP_ANY) { } else if (putPickedCards == PutCards.TOP_ANY && (numberOfCards instanceof StaticValue)) {
sb.append("back "); sb.append("back ");
} }
sb.append(putPickedCards.getMessage(false, plural)); sb.append(putPickedCards.getMessage(false, plural));