-
Notifications
You must be signed in to change notification settings - Fork 1
Content and examples
xylonity edited this page Feb 13, 2026
·
32 revisions
Regarding the mod’s content, so far it includes the following:
Click here to show the frame overlays
- amber_frame.png
- amethyst_frame.png
- angelical_frame.png
- battle_frame.png
- cataclysm_frame.png
- demonic_frame.png
- diamond_frame.png
- emerald_frame.png
- fire_frame.png
- flower_frame.png
- frost_frame.png
- futuristic_frame.png
- gear_frame.png
- guns_and_wires.png
- king_frame.png
- silver_frame.png
- steampunk_frame.png
- zombie_brain_frame.png
- draconic_fire_frame.png
- medieval_crossroads_frame.png
- plasma_lamp_frame.png
- neon_fire_frame.png
- garden_frame.png
- construction_punk_frame.png
- cavemen_frame.png
- nuclear_alarm_frame.png
- gummy_bear_frame.png
- greek_temple_frame.png
- pure_alchemy_frame.png
- skyland_frame.png
Click here to show the icon appear animations
- zoom
- rotate
- rotate_fast
- rotate_zoom
- zoom_snap
- skew
- vibration
- tilt_wave
- flip
- pendulum
- bounce
- go_down
- pulse
- fan_in
- hover_pop
- barrel_roll
Click here to show the tooltip effects
- metal_shining
- nebula
- echo
- speed_lines
- white_dust
- galaxy
- spiral
- orbs
- rim_light
- ripples
- sonar
- stars
- cinder
Click here to show the tooltip vignettes
- circular
- hole
JSON to apply the metal shining effect to all axes
{
"frames": [
{
"tags": [
"minecraft:axes"
],
"specialEffect": "metal_shining"
}
]
}JSON to apply the fire frame to an iron sword and give it a single-color inner border that matches the frame
{
"frames": [
{
"texture": "tooltipoverhaul:textures/overlay/fire_frame.png",
"items": [
"minecraft:iron_sword"
],
"gradientType": "custom",
"borderType": "auto_static"
}
]
}JSON to apply the fire frame to an iron sword and give it a single, custom inner border color
{
"frames": [
{
"texture": "tooltipoverhaul:textures/overlay/fire_frame.png",
"items": [
"minecraft:iron_sword"
],
"gradientType": "custom",
"borderType": "static",
"gradientColors": [
"#6D0C0C",
"#6D0C0C",
"#6D0C0C"
]
}
]
}JSON to apply two different bordes and effects to different items
{
"frames": [
{
"texture": "tooltipoverhaul:textures/overlay/fire_frame.png",
"items": [
"minecraft:iron_sword"
],
"gradientType": "custom",
"borderType": "auto_static",
"specialEffect": "stars"
},
{
"texture": "tooltipoverhaul:textures/overlay/steampunk_frame.png",
"items": [
"minecraft:diamond_sword"
],
"gradientType": "custom",
"borderType": "auto_static",
"specialEffect": "ripples"
}
]
}