Kubejs Eidolon Mod extends Eidolon: Repraised with custom recipe support. It links the magic system to the main scripting tool. You write simple text rules to change how items are made. Modpack makers use this tool to connect different mods together. Players get a fresh magic system with unique crafting steps.

Kubejs Eidolon Mod

Features:

  • Crucible Recipes: Change the items you drop into the boiling pot to make new things.
  • Athame Foraging: Pick which items drop when you harvest blocks with the magic knife.
  • Ritual Crafting: Set up custom item rewards for finishing a brazier ritual.
  • Ritual Summoning: Choose different mobs to appear when a ritual finishes.
  • Ritual Locations: Make rituals point to custom structures or places in the world.
  • Worktable Patterns: Build custom shapes and input rules for the magic crafting table.

Configuration:

You write scripts to add new recipes. Here are the basic examples for the recipe types:


event.recipes.eidolon_repraised.ritual_brazier_crafting(
    'minecraft:granite', //item output
    'minecraft:dirt', //reagent
    [ 'minecraft:enchanted_golden_apple', 'eidolon_repraised:shadow_gem' ], //pedestal items
    'minecraft:cobblestone', //focus items
    50.0, //health requirement
    true //keep nbt
)

event.recipes.eidolon_repraised.ritual_brazier_summoning(
    'minecraft:cow', //entity output
    'minecraft:dirt', //reagent
    [ 'minecraft:enchanted_golden_apple', 'eidolon_repraised:shadow_gem' ], //pedestal items
    'minecraft:cobblestone', //focus items
    1, //count
    10.0 //health requirement
)

event.recipes.eidolon_repraised.ritual_brazier_location(
    'minecraft:stronghold', //entity output
    'minecraft:diamond', //reagent
    [ 'minecraft:shulker_shell', 'minecraft:netherite_ingot' ], //pedestal items
    'minecraft:obsidian', //focus items
    25.0 //health requirement
)

event.recipes.eidolon_repraised.crucible(
    'minecraft:dirt', //output
    [
        StepIngredients.of(['minecraft:cobblestone', 'minecraft:diamond'], 1), //1st step, 2 inputs, and 1 stir
        StepIngredients.of(['minecraft:carrot'], 2) //2nd step, 1 input, 2 stirs
    ]
)

event.recipes.eidolon_repraised.athame_foraging(
    'minecraft:wheat_seeds', //output
    'minecraft:cobblestone' //block input
)

event.recipes.eidolon_repraised.worktable(
    'minecraft:gold_block', //output
    [' c ', 'isi', ' c '], //pattern
    ['asds'], //reagent pattern
    {
        c: 'minecraft:gold_ingot',
        i: 'minecraft:diamond',
        s: 'minecraft:copper_ingot',
        a: 'minecraft:apple',
        s: 'minecraft:string',
        d: 'minecraft:diorite'
    } //pattern key
)

Screenshots:

KubeJS Eidolon mod information screen in Minecraft
KubeJS Eidolon mod information screen in Minecraft
A colorful forest with a stone altar and snowy mountain
A colorful forest with a stone altar and snowy mountain
A dark dungeon with a mob spawner and caged zombies
A dark dungeon with a mob spawner and caged zombies
A glowing lantern illuminates a chest in a stone room
A glowing lantern illuminates a chest in a stone room
Chest loot with Kubejs Eidolon modded items shown
Chest loot with Kubejs Eidolon modded items shown
A dark stone tower structure in a snowy biome
A dark stone tower structure in a snowy biome
A dark dungeon with prison cells and a chest
A dark dungeon with prison cells and a chest
A player dressed as a wizard holding a magic item
A player dressed as a wizard holding a magic item
Magical projectiles streak across a vast snowy landscape
Magical projectiles streak across a vast snowy landscape
An outdoor magical workshop set up in the snow
An outdoor magical workshop set up in the snow
The custom user interface for the Eidolon Worktable
The custom user interface for the Eidolon Worktable
A custom enchanting interface with a progress bar
A custom enchanting interface with a progress bar
Eidolon mod's worktable interface for crafting
Eidolon mod’s worktable interface for crafting

Kubejs Eidolon Mod Download Links

For Minecraft 1.21.1 1.21 NEW

NeoForge 91 KB May 1, 2026

Click to rate this post!
[Total: 0 Average: 0]