KubeJS Ex Deorum

Quick rating

Community listing page, reviews here may not be monitored by the author.

KubeJS Ex Deorum

No reviews yet

Full KubeJS support for Ex Deorum — every recipe type, plus custom meshes, hammers, ore chunks, sieves, barrels and crucibles.

Mod Loaders
NeoForge
Minecraft

Community voices

Reviews

List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Show per page
10
25
50
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

About

Project Details

Type
Mod
Latest Version
ExDeorumKJS-26.1.2-2601.2.0-NeoForge

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Ex Deorum is great. Scripting it is not — until now.

Ex Deorum ships a KubeJS integration, but it does not go far. On 1.21.1 it registers a schema for exdeorum:sieve that only knows about result and ingredient — no mesh, no result_amount — so it cannot actually produce a working sieve recipe. On 26.1.2 the class its own kubejs.plugins.txt points at is not in the jar at all, so nothing is registered.

Ex Deorum KJS replaces that with a complete implementation and adds the twelve recipe types that were never exposed, then goes further and lets you register new Ex Deorum content from a script.

Every recipe type

All thirteen, from a server script:

sieve · compressed_sieve · hammer · compressed_hammer · crook · crucible_heat_source · lava_crucible · water_crucible · barrel_compost · barrel_mixing · barrel_fluid_mixing · barrel_fluid_transformation · ore_chunk

ServerEvents.recipes(event => {
    event.recipes.exdeorum.sieve('minecraft:prismarine_shard', 'minecraft:clay', 'exdeorum:string_mesh')
        .binomial(3, 0.2)

    event.recipes.exdeorum.crucible_heat_source('minecraft:furnace', 4).lit(true)

    event.recipes.exdeorum.barrel_mixing('minecraft:calcite', 'minecraft:bone_meal', Fluid.of('minecraft:water', 1000))
})

No more hand-writing loot number providers or block state predicates. Chain what you mean:

  • .constant(4) — always 4
  • .chance(0.25) — one roll at 25%
  • .uniform(1, 3) — a flat roll between 1 and 3
  • .binomial(9, 0.12) — 9 rolls at 12% each
  • .lit(true), .axis('y'), .state('distance', 1) — pin a block predicate to a state

Register your own content

Nine targets, one event:

ExDeorumEvents.registry('sieve', event => {
    event.create('obsidian')
        .soundType('stone').strength(4.0).needsCorrectTool(true).mineableWith('pickaxe')
        .craftedFrom('minecraft:obsidian', 'minecraft:polished_blackstone_slab')
})

ExDeorumEvents.registry('mesh', event => {
    event.create('copper_mesh').material('#c:ingots/copper')
})

Blocks: sieve, compressed_sieve, barrel, lava_crucible, water_crucible Items: mesh, hammer, compressed_hammer, ore_chunk

One create(...) call gives you the block or item plus:

  • its crafting recipe, using the exact layout Ex Deorum uses for that kind of block
  • its loot table, so it drops itself when broken
  • its mineable/ tag entry, so "needs the correct tool" actually works
  • for items: the model, lang entry and creative tab, courtesy of KubeJS's own item builders

New meshes go into #exdeorum:sieve_meshes and are enchantable with Efficiency and Fortune. New hammers go into #exdeorum:hammers and mine what a hammer mines. Ore chunks derive their ore tag from their own name and carry the same "only if the tag has something in it" condition Ex Deorum puts on its own.

You still supply block textures and models — Ex Deorum's own templates do the shaping, so it is a blockstate and a two-line model each. A complete worked example for all five block types ships with the addon.

Requirements

  • KubeJS
  • Ex Deorum

Available for 1.21.1 and 26.1.2, NeoForge.

Documentation

Every recipe type and every builder method is documented with a working example in wiki in the repository, along with a ready-to-run example script covering all thirteen recipe types and all nine registry targets.

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

<1,000
Downloads
Last Updated
Created
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works