v3.1.0: slightly tweaked text/visuals on trinket creation

This commit is contained in:
Evan Debenham
2025-05-16 13:19:34 -04:00
parent 5bafa5395b
commit 537f6b2461
2 changed files with 3 additions and 2 deletions

View File

@@ -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

View File

@@ -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 );