File Details
forbidden_arcanus_js-2101.1.3.jar
- B
- Feb 16, 2026
- 53.56 KB
- 41.0K
- 1.21.1
- NeoForge
File Name
forbidden_arcanus_js-2101.1.3.jar
Supported Versions
- 1.21.1
Curse Maven Snippet
Supports registering residue types, but you need to re-enter the world to apply modifications.
ServerEvents.recipes(event => {
event.recipes.forbidden_arcanus.clibano_combustion(Item.of("bedrock"))
.inputs("iron_ingot", "gold_ingot")
.residue("kubejs:residue_type",1)
})
//Note that you need to use ServerEvents.registry instead of ServerEvents.recipes
ServerEvents.registry("forbidden_arcanus:residue_type", event => {
console.log("residue");
//Due to unknown reasons, there is no code completion available
event.create("kubejs:residue_type").create(Component.string("test"), 1, Item.of("iron_ingot"))
})

