promotional bannermobile promotional banner

Forbidden Arcanus JS

Forbidden and Arcanus kubejs Compatibility

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

NeoForge

implementation "curse.maven:forbidden-arcanus-js-1346176:7632263"
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

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"))
})