Back to mods
KubeJS: Create Tooltips project artwork

CurseForge · Minecraft mod

KubeJS: Create Tooltips

A KubeJS addon for Create that lets you register Create's rich, palette-styled tooltips on any item using a single startup script.

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which KubeJS: Create Tooltips release should I use?

Updated 10 days ago
Latest stable file kubejs-create-tooltip-1.0.0-neo
Game version 1.21.1
Loader NeoForge

KubeJS: Create Tooltips kubejs-create-tooltip-1.0.0-neo targets 1.21.1 with NeoForge. The project page does not say whether this file belongs on the client, dedicated server, or both. All 4 required mods have matching files.

Where it goes

Is KubeJS: Create Tooltips required on the client, server, or both?

The project page does not say whether this file belongs on the client, dedicated server, or both.

Client Source doesn’t say
Dedicated server Source doesn’t say
Loader for this release NeoForge
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

The source does not explicitly classify this release as client-only or server-only.

What else does KubeJS: Create Tooltips kubejs-create-tooltip-1.0.0-neo need?

kubejs-create-tooltip-1.0.0-neo. Change the file and its required mods may change too.

All 4 required mods have matching files

Install KubeJS, Create, Rhino, Better Advanced Tooltips first. We found matching files for this game-version and loader setup. 2 come through another mod in the chain.

2 listed on this file 2 pulled in by those mods
KubeJS Needed by KubeJS: Create Tooltips kubejs-create-tooltip-1.0.0-neo
required
Matching file found Matched file: KubeJS NeoForge 2101.7.2-build.374
Create Needed by KubeJS: Create Tooltips kubejs-create-tooltip-1.0.0-neo
required
Matching file found Matched file: Create 6.0.10 for mc1.21.1
Rhino Needed by KubeJS
pulled in
Matching file found Matched file: Rhino 2101.2.7-build.85
Better Advanced Tooltips Needed by KubeJS
pulled in
Matching file found Matched file: better-advanced-tooltips-2101.1.0-build.5.jar

2 extra mods were pulled in by other dependencies. Indented rows show who needs each one. We only count dependency files that match this setup. A file for another loader does not fill the gap.

Before you install it

Add KubeJS: Create Tooltips without breaking your instance.

Built for KubeJS: Create Tooltips kubejs-create-tooltip-1.0.0-neo. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use kubejs-create-tooltip-1.0.0-neo. It targets 1.21.1 with NeoForge; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    Install KubeJS, Create, Rhino, Better Advanced Tooltips first. We found matching files for this game-version and loader setup. 2 come through another mod in the chain.

  3. 03

    Put it on the correct side

    The project page does not say whether this file belongs on the client, dedicated server, or both.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside kubejs-create-tooltip-1.0.0-neo. It opens that exact file at the source.

About this project

What does KubeJS: Create Tooltips add?

KubeJS: Create Tooltips

A KubeJS addon for Create that lets you register Create's rich, palette-styled tooltips on any item using a single startup script.

No Java code, no separate lang files - just KubeJS.

Disclaimer:

This Mod and description was made with the help of AI.

Getting Started

Drop the mod JAR into your mods/ folder alongside Create and KubeJS.

Create a startup script at kubejs/startup_scripts/tooltips.js:

CreateTooltipEvents.register(event => {
  event.add('minecraft:stick', 'STANDARD_CREATE', {
    tooltip: '',
    summary: 'A simple _wooden_ stick. Very sticky.'
  })
})

Launch the game and hover over a stick while holding Shift to see the tooltip.

API

event.add(itemId, palette, text)

Registers a Create tooltip for the given item. The lang key base is derived from the item's translation key automatically.

event.addWithKey(itemId, palette, langKeyBase, text)

Same as add(), but lets you specify a custom lang key base instead of using the item's default.

Palettes

The palette parameter controls the tooltip color scheme. Valid values:

STANDARD_CREATE, BLUE, GREEN, YELLOW, RED, PURPLE, GRAY, ALL_GRAY, GRAY_AND_BLUE, GRAY_AND_WHITE, GRAY_AND_GOLD, GRAY_AND_RED

Palette names are case-insensitive.

Text Object

The text parameter is an object with the following fields. All fields are optional, but summary is required for the tooltip to display.

Field Shown Description
tooltip - Detection key (required for Create to recognize the item, value not displayed)
summary Hold Shift Main description text
condition1...conditionN Hold Shift Condition labels (rendered in gray)
behaviour1...behaviourN Hold Shift Paired with conditions (supports highlight formatting)
control1...controlN Hold Ctrl Control labels (rendered in gray)
action1...actionN Hold Ctrl Paired with controls (supports highlight formatting)

Conditions/behaviours and controls/actions are numbered sequentially starting from 1. No gaps allowed.

Highlight Formatting

Use underscores to toggle highlight color in behaviour and action text:

behaviour1: '_Burns_ for 100 ticks'

This renders "Burns" in the palette's highlight color and "for 100 ticks" in the primary color.

Full Example

CreateTooltipEvents.register(event => {
  event.add('minecraft:stick', 'STANDARD_CREATE', {
    tooltip: '',
    summary: 'A simple wooden stick with _many_ uses.',
    condition1: 'When used as fuel',
    behaviour1: '_Burns_ for 100 ticks',
    condition2: 'When crafted with flint',
    behaviour2: 'Creates _arrows_',
    control1: 'Right Click',
    action1: '_Poke_ things with it'
  })
})

VS Code Intellisense

Run /kubejs generate_typings in-game to generate TypeScript definitions. This gives you autocomplete and hover docs for CreateTooltipEvents and its methods in VS Code.

Project description from CurseForge.

Pick your setup

KubeJS: Create Tooltips by Minecraft version and loader

Choose the version and loader you play, then open the matching release.

1 available setups

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

KubeJS: Create Tooltips versions and loaders

1 of 1 releases match

Looking for an older file? The official CurseForge project page is in Resources.