Mineuniverse
Log in Register
Mods

KOBB(KubeJS Otherworld Block Builder)

A simple KubeJS plugin that enables adding new blocks that adapt the third eye effect from Occultism.
by misterplus_cn
Download Claim this project
129 downloads
0 likes
Updated Jul 6, 2026
0 hypes
KubeJS Magic

A simple KubeJS plugin that enables adding new blocks that adapt the third eye effect from Occultism.

Adds a new block registry type, and four new methods available only in that type.

The below example registers a block that looks like a stone block without the effect, and with the effect, looks like a gold ore. You can also set the block's harvesting tier so it may require a higher level of otherworld tool to harvest (the uncovered version).

By default, any newly registered otherworld block will use the loot tables from both the covered block and the uncovered block. If you wish to use a custom loot table json, you need to call useCustomLoot() in the registry event.

Example

StartupEvents.registry('block', event => {
    // Use the type 'otherworld' to register a otherworld block
    event.create('custom_otherworld_block', 'otherworld')
        .hardness(1)
        .resistance(1)
        .requiresTool(true)
        .tagBlock('minecraft:mineable/pickaxe')
        .tagBlock('minecraft:needs_iron_tool')
        // Additional methods provided by KOBB
        // Mandatory
        .uncoveredBlock('minecraft:gold_ore')
        .coveredBlock('minecraft:stone')
        .tier(1)
        // Optional
        .useCustomLoot()
})
kobb-1.0.0.jar
MC 1.21.1, NeoForge
Release 2025-12-25 Get

More from misterplus_cn

Plus Tweaks
450,133
Inverted Enchantments
11,639

You Might Also Like

Theurgy KubeJS
Theurgy KubeJS provides KubeJS integrations for Theurgy.
9,503,452
EntityJS
This mod uses KubeJS to dynamically register entities with full AI/Animation/Spawn Control support!
8,731,173
KubeJS TFC
KubeJS TFC integration
919,127
Forbidden Arcanus JS
Forbidden and Arcanus kubejs Compatibility
97,097
Immersive Engineering JS
kubejs compat for ie
94,624
KubeJS REI Runtime
Allows KubeJS to hide and show items from REI dynamically
89,244