Standardize lowercase UI presentation

This commit is contained in:
Alexander Sellite 2026-07-26 23:20:51 -04:00
parent 7ab3c86e93
commit 633bbd9a88
29 changed files with 100 additions and 100 deletions

View file

@ -6,8 +6,8 @@
[resource]
script = ExtResource("1_script")
item_id = &"basic_fishing_rod"
display_name = "Basic Fishing Rod"
description = "A dependable starter rod. Select it to cast."
display_name = "basic fishing rod"
description = "a dependable starter rod. select it to cast."
category = 0
icon = ExtResource("2_icon")
stackable = false

View file

@ -6,8 +6,8 @@
[resource]
script = ExtResource("1")
item_id = &"coffee"
display_name = "Coffee"
description = "Temporarily increases ground movement speed."
display_name = "coffee"
description = "temporarily increases ground movement speed."
category = 3
icon = ExtResource("2")
stackable = true

View file

@ -6,8 +6,8 @@
[resource]
script = ExtResource("1")
item_id = &"cooler_expansion"
display_name = "Cooler Expansion"
description = "Permanently increases the number of fish the Cooler can hold."
display_name = "cooler expansion"
description = "permanently increases the number of fish the cooler can hold."
category = 4
icon = ExtResource("2")
stackable = false

View file

@ -6,8 +6,8 @@
[resource]
script = ExtResource("1")
item_id = &"energy_drink"
display_name = "Energy Drink"
description = "Temporarily increases reeling progress."
display_name = "energy drink"
description = "temporarily increases reeling progress."
category = 3
icon = ExtResource("2")
stackable = true

View file

@ -6,8 +6,8 @@
[resource]
script = ExtResource("1")
item_id = &"fish_finder"
display_name = "Fish Finder"
description = "Temporarily shortens bite waits and improves rarity weights."
display_name = "fish finder"
description = "temporarily shortens bite waits and improves rarity weights."
category = 3
icon = ExtResource("2")
stackable = true

View file

@ -6,8 +6,8 @@
[resource]
script = ExtResource("1")
item_id = &"snack"
display_name = "Snack"
description = "Temporarily adds one barrier damage."
display_name = "snack"
description = "temporarily adds one barrier damage."
category = 3
icon = ExtResource("2")
stackable = true

View file

@ -33,4 +33,4 @@ func is_valid() -> bool:
func get_category_name() -> String:
return Category.keys()[category].capitalize()
return Category.keys()[category].to_lower()