Awesome
Inspecio
Better and more tooltips on items!
What's this mod?
Inspecio adds new tooltips to items like shulker boxes, filled map, fish bucket, armor, food, banner patterns, etc.
Some of those are just replacement to the vanilla "text" tooltip with a more fancy one, others are extra information for the user!
Most of the mod is configurable, some parts can be enabled/disabled to your heart's desire!
Pictures
Armor tooltip
Food tooltip
Potion tooltips
Shulker Box tooltips (and other storage blocks)
Normal:
Colored:
Compact:
Jukebox tooltip
Loot Table Tooltip
Bee Hive Tooltip
Sign Tooltip
Banner Pattern
Filled Map
Entities
Bucket of Fish
Bucket of Axolotl
Spawn Eggs
Repair Cost
Only shows up if Advanced Tooltip is enabled (F3 + H
).
Configuration
The configuration file of the mod is located in <minecraft directory>/config/inspecio.json
.
Here's the default configuration:
{
"food": {
"hunger": true,
"saturation": "merged"
},
"jukebox": "fancy",
"sign": "fancy",
"entities": {
"bee": {
"enabled": true,
"always_show_name": false,
"spin": true
},
"fish_bucket": {
"enabled": true,
"always_show_name": false,
"spin": true
},
"spawn_egg": {
"enabled": true,
"always_show_name": false,
"spin": true
},
"pufferfish_puff_state": 2
},
"filled_map": {
"enabled": true,
"show_player_icon": false
},
"armor": true,
"banner_pattern": true,
"containers": {
"storage": {
"enabled": true,
"compact": false,
"loot_table": true
},
"shulker_box": {
"enabled": true,
"compact": false,
"loot_table": true,
"color": true
}
},
"effects": {
"potions": true,
"tipped_arrows": true,
"spectral_arrow": true,
"food": true
}
}
Here's a list of each configuration entries and what they do:
armor
(bool
) - iftrue
then displays the armor bar on armor items, elsefalse
.banner_pattern
(bool
) - iftrue
then displays the pattern in the tooltip of banner patterns, elsefalse
.containers
storage
enabled
(bool
) -true
if the inventory of storage items like chests, barrels, etc. should be shown in the tooltip, elsefalse
.compact
(bool
) -true
if the inventory should be compacted to take as little space as possible, elsefalse
.loot_table
(bool
) -true
if the loot table identifier should be displayed in the tooltip if specified, elsefalse
.
shulker_box
enabled
(bool
) -true
if the inventory of shulker boxes should be shown in the tooltip, elsefalse
.compact
(bool
) -true
if the inventory should be compacted to take as little space as possible, elsefalse
.loot_table
(bool
) -true
if the loot table identifier should be displayed in the tooltip if specified, elsefalse
.color
(bool
) -true
if the inventory tooltip should be colored the same as the shulker box, elsefalse
.
effects
potions
(bool
) - iftrue
then replaces the effect tooltips with a fancy one on potion items, elsefalse
.tipped_arrows
(bool
) - iftrue
then replaces the effect tooltips with a fancy one on tipped arrows, elsefalse
.spectral_arrow
(bool
) - iftrue
then replaces the effect tooltips with a fancy one on spectral arrow item, elsefalse
.food
(bool
) - iftrue
then adds effect tooltips on food items, elsefalse
.
entities
bee
enabled
(bool
) - iftrue
then displays bees if present in the beehive tooltip, elsefalse
.always_show_name
(bool
) - iftrue
then always show name of bees, elsefalse
and use the CTRL key instead.spin
(bool
) -true
if the bees spin in the tooltip, elsefalse
fish_bucket
enabled
(bool
) -true
if fish bucket tooltips should display the entity they hold, elsefalse
.spin
(bool
) -true
if the entity spins in the tooltip, elsefalse
.
spawn_egg
enabled
(bool
) -true
if spawn egg tooltips should display the entity they hold, elsefalse
.always_show_name
(bool
) -true
if the name of the hold entity should always be shown, elsefalse
.spin
(bool
) -true
if the entity spins in the tooltip, elsefalse
.
pufferfish_puff_state
(int
) - the pufferfish puff state, between 0 and 2 inclusive.
filled_map
enabled
(bool
) -true
if filled map tooltips should display the map, elsefalse
.show_player_icon
(bool
) -true
if show the player icon on filled map tooltips, elsefalse
.
food
hunger
(bool
) -true
if hunger bar should be displayed on food items, elsefalse
.saturation
(string
) -"disabled"
does nothing,"merged"
adds the saturation bar as an outline to the hunger bar,"separated"
adds its own saturation bar.
jukebox
(string
) -"disabled"
does nothing,"fast"
will add the inserted disc name if possible in the tooltip of jukeboxes,"fancy"
will display the disc item as well.sign
(string
) -"disabled"
does nothing,"fast"
will add the sign content as text tooltip if possible,"fancy"
will add a fancy sign tooltip if possible.