v2.4.0: dried rose now includes ghost's strength in its description

This commit is contained in:
Evan Debenham
2024-04-07 17:15:19 -04:00
parent 82eacce546
commit 6e54fd04ba
2 changed files with 4 additions and 0 deletions

View File

@@ -212,6 +212,7 @@ items.artifacts.driedrose.desc_hint=It seems to be missing some petals. Perhaps
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$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.

View File

@@ -252,6 +252,9 @@ public class DriedRose extends Artifact {
if (armor != null) {
desc += "\n" + Messages.get(this, "desc_armor", armor.title());
}
desc += "\n" + Messages.get(this, "desc_strength", ghostStrength());
}
return desc;