v2.4.0: fixed a few errors in dried rose ghost desc text

This commit is contained in:
Evan Debenham
2024-04-11 11:31:48 -04:00
parent 729a862954
commit 4bddef477e
2 changed files with 5 additions and 5 deletions
@@ -210,9 +210,9 @@ items.artifacts.driedrose.desc=Is this the rose that the ghost mentioned before
items.artifacts.driedrose.desc_no_quest=A dried aged rose that is somehow still holding together despite its age.\n\nIt seems to have some spiritual power, but you have no idea how to use it right now.
items.artifacts.driedrose.desc_hint=It seems to be missing some petals. Perhaps reattaching them will strengthen the rose.
items.artifacts.driedrose.desc_cursed=The cursed rose is bound to your hand, it feels eerily cold.
items.artifacts.driedrose.desc_weapon=Ghost's weapon: %s.
items.artifacts.driedrose.desc_armor=Ghost's armor: %s.
items.artifacts.driedrose.desc_str=Ghost's strength: %s.
items.artifacts.driedrose.desc_weapon=Ghost's weapon: %s
items.artifacts.driedrose.desc_armor=Ghost's armor: %s
items.artifacts.driedrose.desc_strength=Ghost's strength: %s
items.artifacts.driedrose$petal.name=dried petal
items.artifacts.driedrose$petal.no_rose=You have no rose to add this petal to.
items.artifacts.driedrose$petal.no_room=There is no room left for this petal, so you discard it.
@@ -246,11 +246,11 @@ public class DriedRose extends Artifact {
desc += "\n";
if (weapon != null) {
desc += "\n" + Messages.get(this, "desc_weapon", weapon.title());
desc += "\n" + Messages.get(this, "desc_weapon", Messages.titleCase(weapon.title()));
}
if (armor != null) {
desc += "\n" + Messages.get(this, "desc_armor", armor.title());
desc += "\n" + Messages.get(this, "desc_armor", Messages.titleCase(armor.title()));
}
desc += "\n" + Messages.get(this, "desc_strength", ghostStrength());