diff --git a/core/src/main/assets/messages/items/items.properties b/core/src/main/assets/messages/items/items.properties index b2ed4d1c8..1a096fd40 100644 --- a/core/src/main/assets/messages/items/items.properties +++ b/core/src/main/assets/messages/items/items.properties @@ -1484,6 +1484,7 @@ items.trinkets.wondrousresin.typical_stats_desc=Typically this trinket will forc items.trinkets.wondrousresin.stats_desc=At its current level this trinket will force cursed wand effects to become neutral or positive _%1$s%%_ of the time, and will cause uncursed wands to fire an additional neutral or positive cursed zap _%2$s%%_ of the time.\n\nThis trinket costs a larger amount of energy to upgrade. items.trinkets.trinketcatalyst.name=magical catalyst +items.trinkets.trinketcatalyst.window_title=create a trinket items.trinkets.trinketcatalyst.window_text=The water begins to glow as you add the catalyst. There are a few nearby items you could imbue with energy to turn into a magical trinket. items.trinkets.trinketcatalyst.desc=This ball of magical golden dust glimmers in the darkness of the dungeon. This catalyst can be used at an alchemy pot with a little alchemical energy to produce a unique trinket item.\n\nTrinkets provide various different effects that slightly alter the dungeon or its inhabitants. Trinkets can be upgraded with more energy to make their effect more powerful, or dropped to forego the effect entirely. items.trinkets.trinketcatalyst$randomtrinket.name=random trinket diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/trinkets/TrinketCatalyst.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/trinkets/TrinketCatalyst.java index b7c73ddfb..a8348750a 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/trinkets/TrinketCatalyst.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/trinkets/TrinketCatalyst.java @@ -146,7 +146,7 @@ public class TrinketCatalyst extends Item { public static class RandomTrinket extends Item { { - image = ItemSpriteSheet.TRINKET_HOLDER; + image = ItemSpriteSheet.SOMETHING; } } @@ -164,7 +164,7 @@ public class TrinketCatalyst extends Item { IconTitle titlebar = new IconTitle(); titlebar.icon(new ItemSprite(cata)); - titlebar.label(Messages.titleCase(cata.name())); + titlebar.label(Messages.titleCase(Messages.get(TrinketCatalyst.class, "window_title"))); titlebar.setRect(0, 0, WIDTH, 0); add( titlebar );