some text fixes

This commit is contained in:
xenohedron 2023-11-22 22:52:55 -05:00
parent 5691ffa40e
commit 1c6c68e1a4
15 changed files with 36 additions and 35 deletions

View file

@ -23,6 +23,7 @@ public class DealtDamageToSourceTriggeredAbility extends TriggeredAbilityImpl {
this.setAbilityWord(AbilityWord.ENRAGE);
}
setTriggerPhrase("Whenever {this} is dealt damage, ");
this.replaceRuleText = true;
}
protected DealtDamageToSourceTriggeredAbility(final DealtDamageToSourceTriggeredAbility ability) {

View file

@ -106,7 +106,7 @@ public class LookLibraryTopCardTargetPlayerEffect extends OneShotEffect {
} else {
sb.append("that card");
}
sb.append(" into their graveyard");
sb.append(" into that player's graveyard");
}
if (mayShuffleAfter) {
sb.append(". You may then have that player shuffle that library");

View file

@ -17,7 +17,7 @@ public class AddManaToManaPoolSourceControllerEffect extends OneShotEffect {
public AddManaToManaPoolSourceControllerEffect(Mana mana) {
super(Outcome.PutManaInPool);
this.mana = mana;
this.staticText = "Add " + mana.toString() + "";
this.staticText = "add " + mana.toString() + "";
}
protected AddManaToManaPoolSourceControllerEffect(final AddManaToManaPoolSourceControllerEffect effect) {