Skip to content

Content and examples

xylonity edited this page Feb 13, 2026 · 32 revisions

Content

Regarding the mod’s content, so far it includes the following:

Click here to show the frame overlays
  • amber_frame.png
amber_frame
  • amethyst_frame.png
amethyst_frame
  • angelical_frame.png
angelical_frame
  • battle_frame.png
battle_frame
  • cataclysm_frame.png
cataclysm_frame
  • demonic_frame.png
demonic_frame
  • diamond_frame.png
diamond_frame
  • emerald_frame.png
emerald_frame
  • fire_frame.png
fire_frame
  • flower_frame.png
flower_frame
  • frost_frame.png
frost_frame
  • futuristic_frame.png
futuristic_frame
  • gear_frame.png
gear_frame
  • guns_and_wires.png
guns_and_wires
  • king_frame.png
king_frame
  • silver_frame.png
silver_frame (1)
  • steampunk_frame.png
steampunk_frame
  • zombie_brain_frame.png
zombie_brain_frame
  • draconic_fire_frame.png
imagen
  • medieval_crossroads_frame.png
imagen
  • plasma_lamp_frame.png
imagen
  • neon_fire_frame.png
imagen
  • garden_frame.png
imagen
  • construction_punk_frame.png
imagen
  • cavemen_frame.png
imagen
  • nuclear_alarm_frame.png
imagen
  • gummy_bear_frame.png
imagen
  • greek_temple_frame.png
imagen
  • pure_alchemy_frame.png
imagen
  • skyland_frame.png
imagen
Click here to show the icon appear animations
  • zoom
zoom
  • rotate
rotate
  • rotate_fast
rotate_fast
  • rotate_zoom
rotate_zoom
  • zoom_snap
zoom_snap
  • skew
skew
  • vibration
vibration
  • tilt_wave
tilt_wave
  • flip
flip
  • pendulum
pendulum
  • bounce
bounce
  • go_down
go_down
  • pulse
pulse
  • fan_in
fan_in
  • hover_pop
hover_pop
  • barrel_roll
barrel_roll
Click here to show the tooltip effects
  • metal_shining
imagen
  • nebula
imagen
  • echo
imagen
  • speed_lines
imagen
  • white_dust
imagen
  • galaxy
imagen
  • spiral
imagen
  • orbs
imagen
  • rim_light
imagen
  • ripples
imagen
  • sonar
imagen
  • stars
imagen
  • cinder
imagen
Click here to show the tooltip vignettes
  • circular
imagen
  • hole
imagen

1. JSON examples (custom_frames.json) for specific cases

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"
    }
  ]
}

Clone this wiki locally