From 6e54fd04ba3079d29143fba394975e4a100798f0 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 7 Apr 2024 17:15:19 -0400 Subject: [PATCH] v2.4.0: dried rose now includes ghost's strength in its description --- core/src/main/assets/messages/items/items.properties | 1 + .../shatteredpixeldungeon/items/artifacts/DriedRose.java | 3 +++ 2 files changed, 4 insertions(+) diff --git a/core/src/main/assets/messages/items/items.properties b/core/src/main/assets/messages/items/items.properties index 28bba3764..9076267dc 100644 --- a/core/src/main/assets/messages/items/items.properties +++ b/core/src/main/assets/messages/items/items.properties @@ -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. diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/DriedRose.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/DriedRose.java index d87997e86..57b1476bd 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/DriedRose.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/DriedRose.java @@ -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;