Mineuniverse
Log in Register
Mods

KubeJS Powah

Lets you modify the recipes of the Powah mod
Download Claim this project
221,690 downloads
0 likes
Updated Jan 19, 2024
0 hypes

Allows you to create Energizing Orb recipe and modify various things from the Powah mod. The methods to do so are listed below.

 

ServerEvents.recipes(event => {
    // .energizing([inputs, ...], output, energy)
    event.recipes.powah.energizing(["minecraft:cobblestone"], "minecraft:tnt", 1000);
})

PowahEvents.registerCoolants(event => {
    // .addFluid(fluid, temperature)
    event.addFluid("minecraft:lava", -10);

    // item count here is not count consumed, but rather mb of coolant produced by 1 item
    // .addSolid(solid, temperature)
    event.addSolid(Item.of("minecraft:cobblestone", 1), -10);

    // .removeFluid(fluid)
    // .removeSolid(solid)
})

PowahEvents.registerHeatSource(event => {
    // .addBlock(block, temperature)
    event.addBlock("minecraft:cobblestone", 10);

    // .addFluid(fluid, temperature)
    event.addFluid("minecraft:water", 10);

    // .removeFluid(fluid)
    event.removeFluid("minecraft:lava")
})

PowahEvents.registerMagmaticFluid(event => {
    // .add(fluid, temperature)
    event.add("minecraft:water", 10);

    // .remove(fluid)
})

PowahEvents.registerReactorFuel(event => {
    // item count here is not count consumed, but rather mb of fuel produced by 1 item
    // .add(fuel, temperature)
    event.add(Item.of("minecraft:cobblestone", 100), 700);

    // .remove(fuel)
})
kubejspowah-1.3.4.jar
MC Client, NeoForge, 1.21.1, Server
Release 2025-11-03 Get
kubejspowah-1.3.2.jar
MC Client, NeoForge, 1.21.1, Server
Release 2025-10-03 Get
kubejspowah-1.3.1.jar
MC NeoForge, 1.21.1, Server
Release 2025-04-27 Get

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