Skip to content

Commit 299eb03

Browse files
committed
fix item desc config
1 parent c506e4f commit 299eb03

File tree

4 files changed

+146
-31
lines changed

4 files changed

+146
-31
lines changed

pack/config/default-hotkeys.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@
247247
{
248248
"comment": "key.waila.show_overlay",
249249
"translation": "Show Overlay",
250-
"key": "key.keyboard.unknown"
250+
"key": "key.keyboard.left.alt"
251251
},
252252
{
253253
"comment": "key.waila.show_recipe_input",

pack/config/item-descriptions.json

Lines changed: 0 additions & 29 deletions
This file was deleted.

pack/config/item_descriptions.toml

Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
# Enable Item Descriptions
2+
# default: true
3+
item_descriptions = true
4+
# Always show Item Descriptions while hovering over an item in your inventory.
5+
# default: false
6+
display_always = false
7+
# Prioritize the Entity Description of the spawn egg over the generic spawn egg description.
8+
# default: true
9+
spawn_eggs_show_entity = true
10+
# When Item Descriptions are being displayed, also display the mod name.
11+
# default: false
12+
show_mod_name = false
13+
14+
[hint]
15+
# When descriptions on an item are not visible, show a tooltip with the default text 'Show more' and the keybind.
16+
# default: false
17+
enabled = false
18+
# Show keybinds in hint text.
19+
# default: true
20+
show_keybinds = true
21+
# This setting changes what Minecraft colour is used for hint tooltips, either by colour code or name.
22+
# default: Gray
23+
color = "Gray"
24+
# Italicize Hints
25+
# default: false
26+
italics = false
27+
# Force-uppercase hint keybinds.
28+
# default: true
29+
uppercase = true
30+
31+
[style]
32+
# This setting changes what Minecraft colour is used for block, item, and entity tooltips, either by colour code or name.
33+
# default: Gray
34+
color = "Gray"
35+
# This setting changes whether block, item, and entity tooltips are italicized.
36+
# default: false
37+
italics = true
38+
# This setting changes whether block, item, and entity tooltips are bolded.
39+
# default: false
40+
bold = false
41+
# Changes the minimum width of multi-line tooltip. Expands for longer item names. Ignored when ToolTipFix is present.
42+
# default: 160
43+
length = 160
44+
# Color of the mod name tooltip
45+
# default: Blue
46+
mod_name_color = "Blue"
47+
# Whether to italicize the mod name tooltip
48+
# default: true
49+
mod_name_italics = true
50+
51+
[keybinds]
52+
# Show descriptions when the Ctrl key is held.
53+
# default: true
54+
display_when_ctrl_is_held = false
55+
# Show descriptions when the Shift key is held.
56+
# default: false
57+
display_when_shift_is_held = false
58+
# Show descriptions when the Alt key is held.
59+
# default: false
60+
display_when_alt_is_held = true
61+
# Invert all Item Descriptions keybinds.
62+
# default: false
63+
invert = false
64+
65+
[block_descriptions]
66+
# This will show Block Descriptions in compatible mods. This can also be disabled in Jade/WTHIT's settings.
67+
# default: true
68+
enable = true
69+
# Always show Block Descriptions, not just when a key is held.
70+
# default: false
71+
show_always = false
72+
73+
[entity_descriptions]
74+
# This will show Entity Descriptions in compatible mods. This can also be disabled in Jade/WTHIT's settings.
75+
# default: true
76+
enable = true
77+
# Always show Entity Descriptions, not just when a key is held.
78+
# default: false
79+
show_always = false
80+
81+
[enchantment_descriptions]
82+
# Enable enchantment descriptions.
83+
# default: true
84+
enable = true
85+
# Always show Enchantment Descriptions, not just when a key is held.
86+
# default: false
87+
display_always = false
88+
# By default, descriptions are shown on all enchanted items. Disable if this should only apply to books.
89+
# default: false
90+
only_show_on_books = false
91+
# Hide Item Descriptions on Enchanted Books, since they'll always have an Enchantment Description.
92+
# default: true
93+
only_enchantment_descriptions_on_books = true
94+
# Show Enchantment Descriptions in the Enchanting Table
95+
# default: true
96+
show_in_table = true
97+
# This setting changes what Minecraft colour is used for enchantment tooltips, either by colour code or name.
98+
# default: Dark Gray
99+
color = "Dark Gray"
100+
# Italicize Enchantment Descriptions
101+
# default: false
102+
italics = true
103+
104+
[effect_descriptions]
105+
# Enable descriptions for Status Effects.
106+
# default: true
107+
enable = true
108+
# Always show Effect Descriptions, not just when a key is held.
109+
# default: false
110+
display_always = false
111+
# This setting changes what Minecraft colour is used for effect tooltips, either by colour code or name.
112+
# default: Dark Gray
113+
color = "Dark Gray"
114+
# Replace Item Descriptions with Effect Descriptions when present.
115+
# default: false
116+
only_show_effect_descriptions = false
117+
118+
[developer_options]
119+
# Replaces the description with a list of translation keys that can be used to match that item. Hold Alt to view their translations.
120+
# default: false
121+
show_all_potential_keys = false
122+
# List of items that have their built-in tooltips disabled.
123+
items_with_tooltips_to_hide = []
124+
# Show lore tags on untranslated items. This includes items meant to have generic descriptions! Disable after testing.
125+
# default: false
126+
show_untranslated = false
127+
# This will disable descriptions for items based off the block or item tags when a more specific description is not present (e.g. planks, slabs, stairs, tools, etc.).
128+
# default: false
129+
disable_tag_descriptions = false
130+
# Force enable Effect Descriptions, even when other mods are installed.
131+
# default: false
132+
force_enable_enchantment_descriptions = false
133+
# Creates placeholder en_us language files per-namespace in the minecraft/data/missing folder.
134+
# default: false
135+
generate_missing = false
136+
# Hide tooltips from other mods.
137+
# default: false
138+
hide_other_tooltips = false
139+
# Override the backend config library. Available options are 'cloth-config' and 'yacl'
140+
# default:
141+
config_screen = ""

pack/index.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ file = "config/glowcase.toml"
175175
file = "config/hoofprint.toml"
176176

177177
[[files]]
178-
file = "config/item-descriptions.json"
178+
file = "config/item_descriptions.toml"
179179

180180
[[files]]
181181
file = "config/meret.toml"
@@ -542,6 +542,9 @@ file = "resources/common/required/mf_music/assets/modfest/sounds/music/timeout.o
542542
[[files]]
543543
file = "resources/common/required/mf_music/assets/modfest/textures/item/music/antiquity.png"
544544

545+
[[files]]
546+
file = "resources/common/required/mf_music/assets/modfest/textures/item/music/hand_me_down.png"
547+
545548
[[files]]
546549
file = "resources/common/required/mf_music/assets/modfest/textures/item/music/how_i_dance.png"
547550

0 commit comments

Comments
 (0)