KubeJS Data Component
Modby RainMelody
KubeJS Data Component is an addon mod for Minecraft 1.21.1 NeoForge
Type
Mod
CurseForge Downloads
5,030
CurseForge ID
1384092
Last Updated
Jun 30, 2026
Description
Mod Overview
KubeJS Data Component is an addon mod for Minecraft 1.21.1 NeoForge that provides comprehensive data component registration capabilities for the KubeJS scripting engine. With this mod, developers can create and register custom data components directly in KubeJS scripts, allowing items to store custom data without writing any Java code.
Key Features
🛠️ Easy Registration - Register data components directly in KubeJS scripts
📊 Multiple Data Types - Support for integers, strings, booleans, floats, doubles, and longs
🌐 Network Synchronization - Configurable client-server synchronization
💾 Data Persistence - Support for saving and loading component data
🔧 Highly Customizable - Flexible configuration through builder pattern
Example
// Register integer component
DataComponent.registerInt("my_counter")
// Register string component
DataComponent.registerString("my_text")
// Custom component with builder
DataComponent.register("custom_component",
DataComponent.builder()
.type("DOUBLE")
.persistent(true)
.networked(true)
)
// Using components on items
item.set(DataComponent.get("my_counter"), 100)
let value = item.get(DataComponent.get("my_counter"))
Technical Features
Built on Minecraft 1.21.1 vanilla data component system
Fully integrated with KubeJS scripting environment
Thread-safe component registration mechanism
Comprehensive error handling and type checking
Use Cases
Adding custom counters to items
Storing specific state information for items
Implementing complex item behavior logic
Creating custom progression tracking systems
Similar Mods
Loot Integrations: Adventure Dungeons
Adds better loot to Adventure Dungeons Structures, including modded loot
Craftable Elytra
Adds a recipe for the elytra!
Self-Aware Robot
Build your own E.L.B.E.R.R , but be careful or it might turn on you.
Create Wet Cardboard
Adds Soggy & Wet Cardboard Swords to Create
Just Dire Things [Forge]
A collection of Random Blocks and Items for Automation.
Crawler | Dungeon Crawling In Minecraft
A Minecraft mod aimed at giving dungeons a more dungeon crawler feel.