Mineuniverse
Log in Register
Mods

KubeJS Nature's Aura

KubeJS integration for Nature's Aura
by FalAut
Download Claim this project
332,893 downloads
0 likes
Updated Jul 6, 2026
0 hypes
Addons KubeJS

Adds support for Nature's Aura recipes, custom aura cache item, structure finder item, and custom or modify the aura type of dimension.

Examples:
In server_scripts:

ServerEvents.recipes((event) => {
    const { naturesaura } = event.recipes

    // Natural Altar (output,input,aura-optional,time-optional, catalyst-optional)
    naturesaura.altar('bedrock', 'stone')
    naturesaura.altar('bedrock', 'stone', 5000)
    naturesaura.altar('bedrock', 'stone', 5000, 60)
    naturesaura.altar('bedrock', 'stone', 5000, 60, 'naturesaura:conversion_catalyst')

    // Altar of Birthing (entity,input,aura-optional,time-optional)
    naturesaura.animal_spawner('creeper', ['gunpowder', 'green_dye'])
    naturesaura.animal_spawner('creeper', ['gunpowder', 'green_dye'], 10000)
    naturesaura.animal_spawner('creeper', ['gunpowder', 'green_dye'], 10000, 120)

    // Offering Table (output,input,start-item)
    naturesaura.offering('diamond', 'coal', 'bedrock')

    // Tree Ritual(output,input,sapling-optional, time-optional)
    naturesaura.tree_ritual('nether_star', ['blaze_powder', 'obsidian', 'diamond'])
    naturesaura.tree_ritual('nether_star', ['blaze_powder', 'obsidian', 'diamond'], 'oak_sapling')
    naturesaura.tree_ritual('nether_star', ['blaze_powder', 'obsidian', 'diamond'], 'oak_sapling', 200)
})

 

In startup_script:

NaturesAuraEvents.init((event) => {
    // custom aura type (aura type, dimension, aura colour, priority-optional)
    event.custom('kubejs:aether', 'aether:the_aether', 0xb0c4de)

    // modify the aura type of the dimension (dimension, aura type)
    event.modify('minecraft:overworld', 'kubejs:aether')
})
StartupEvents.registry('item', (event) => {
    // custom aura cache (items that can store aura)
    event.create('custom_aura_cache', 'naturesaura:aura_cache').setMaxAura(10000)

    // custom item similar to the Eye of Ender (find the specified range of structure)
    event
        .create('custom_structure_finder', 'naturesaura:structure_finder')
        .setStructure('minecraft:village_plains')
        .setColor(0xba2800)
        .setRadius(2048)
})
 
Other features:
BlockEvents.rightClicked((event) => {
     const { block, item, level } = event

    AuraBlock.getStoredAura(block.entity)
    AuraBlock.drainAura(block.entity, 100000, false)
    AuraBlock.storeAura(block.entity, 100000, false)

    AuraItem.getStoredAura(item)
    AuraItem.drainAura(item, 100000, false)
    AuraItem.storeAura(item.entity, 100000, false)

    AuraChunk.getAuraInArea(level, block.pos, 16)
    AuraChunk.drainAura(level, block.pos, 100000)
    AuraChunk.storeAura(level, block.pos, 100000)
})
kubejs_naturesaura-1.21.1-neoforge-1.0.3.jar
MC Client, 1.21.1, NeoForge, Server
Release 2025-12-30 Get
kubejs_naturesaura-1.20.1-forge-1.0.2.jar
MC Client, 1.20.1, Forge, Server
Release 2025-12-29 Get

More from FalAut

Angel Wings: Creative Flight
326
Kylin Arm
21,844
AE2 Matter Condenser Recipe
162

You Might Also Like

SI: Scriptified [DISCONTINUED]
DISCONTINUED
99,868
FTB Quests Entity Visualization
Adds entity visualization to FTB Quests
99,525
JEI / REI WorldGen
JEI/REI Addon for World Gen Information with universal compatibility for all mods ores by utilizing biome generation data
99,419
Pixel Blocks
Pokemon Lucky Block! When mining the pixel block a random pokemon spawns.
9,988
TFC Bonsai
Add TFC Trees to bonsai pots
9,988
Laser Eyes
A "laser eyes" addon for the Viltrumite mod.
9,968