Mineuniverse
Log in Register
Mods

KubeJS Kaleidoscope

Kubejs Kaleidoscope Integration.
by wither_redstone
Download Claim this project
929 downloads
0 likes
Updated Jul 6, 2026
0 hypes
Addons KubeJS

This mod adds KubeJS integration for the Kaleidoscope series mods.

Recipe Types:

  • Kaleidoscope Cookery - Stockpot;
  • Kaleidoscope Cookery - Pot;
  • Kaleidoscope Cookery - Chopping Board;
  • Kaleidoscope Cookery - Millstone;
  • Kaleidoscope Cookery - Steamer;
  • Kaleidoscope Cookery - Teapot;
  • Kaleidoscope Tavern - Pressing Tub;
  • Kaleidoscope Tavern - Barrel;
  • Kaleidoscope Chinese Food - Freezing;
  • Kaleidoscope Chinese Food - Refrigerating;
  • Kaleidoscope Chinese Food - Pickle Jar.

Registerable Item Types:

  • Kaleidoscope Cookery - Kitchen Knife;
  • Kaleidoscope Cookery - Sickle.

Kaleidoscope Cookery - Stockpot Recipe:

event.recipes.kaleidoscope_cookery.stockpot(output, input[], soup_base, carrier, time, cooking_bubble_color, cooking_texture, finished_bubble_color, finished_texture)
// output: Output item; 
// input[]: Array of input ingredients; 
// soup_base: Soup base fluid ID; 
// carrier: Container for the output item (Optional); 
// time: Cooking time in ticks (Optional); 
// cooking_bubble_color: Bubble color during cooking (Optional); 
// cooking_texture: Texture overlay during cooking (Optional); 
// finished_bubble_color: Bubble color when finished (Optional); 
// finished_texture: Texture overlay when finished (Optional).

// Example
event.recipes.kaleidoscope_cookery.stockpot(
    "minecraft:diamond",
    [
      "minecraft:stone",
      "minecraft:stone",
      "#minecraft:logs"
    ],
    "minecraft:lava", "minecraft:flower_pot", 600,
    parseInt("FF0000", 16), "kaleidoscope_cookery:stockpot/ceshi_cooking",
    parseInt("FFFFFF", 16), "kaleidoscope_cookery:stockpot/ceshi_finished"
  )

Kaleidoscope Cookery - Pot Recipe:

event.recipes.kaleidoscope_cookery.pot(output, input[], cooking_time, carrier, time, experience)
// output: Output item; 
// input[]: Array of input ingredients; 
// cooking_time: Number of stirs required; 
// carrier: Container for the output item (Optional); 
// time: Cooking time in ticks (Optional); 
// experience: Experience points (Optional).

// Example
event.recipes.kaleidoscope_cookery.pot(
    "minecraft:diamond",
    [
      "minecraft:stone",
      "minecraft:stone",
      "#minecraft:logs"
    ],
    5, "minecraft:bowl", 300, 0.5
  )

Kaleidoscope Cookery - Chopping Board Recipe:

event.recipes.kaleidoscope_cookery.chopping_board(output, input, model_id, cut_count)
// output: Output item;
// input: Input ingredient;
// model_id: Model ID displayed on the chopping board;
// cut_count: Number of cuts required (Optional).

// Example
event.recipes.kaleidoscope_cookery.chopping_board("minecraft:diamond", "minecraft:emerald", "minecraft:emerald", 5)

Kaleidoscope Cookery - Millstone Recipe:

event.recipes.kaleidoscope_cookery.millstone(output, input)
// output: Output item;
// input: Input ingredient.

// Example
event.recipes.kaleidoscope_cookery.millstone("minecraft:diamond", "minecraft:grass_block")

Kaleidoscope Cookery - Steamer Recipe:

event.recipes.kaleidoscope_cookery.steamer(output, input)
// output: Output item; 
// input: Input ingredient.

// Example
event.recipes.kaleidoscope_cookery.steamer("minecraft:diamond", "minecraft:enchanted_golden_apple")

Kaleidoscope Cookery - Teapot Recipe:

event.recipes.kaleidoscope_cookery.teapot(output, input, tea_fluid, ingredient_count, time)
// output: Output item; 
// input: Input ingredient; 
// tea_fluid: Tea fluid ID; 
// ingredient_count: Number of input ingredients (Optional); 
// time: Brewing time in ticks (Optional).

// Example
event.recipes.kaleidoscope_cookery.teapot("minecraft:diamond", "minecraft:emerald", "minecraft:lava", 8, 300)

Kaleidoscope Tavern - Pressing Tub Recipe:

event.recipes.kaleidoscope_cookery.teapot(fluid, input, fluid_amount)
// fluid: Output fluid ID; 
// input: Input ingredient; 
// fluid_amount: Output fluid amount in mB (Optional).

// Example
event.recipes.kaleidoscope_tavern.pressing_tub("minecraft:lava", "minecraft:diamond", 250)

Kaleidoscope Tavern - Barrel Recipe:

event.recipes.kaleidoscope_cookery.teapot(output, fluid, carrier, unit_time, input)
// output: Output item; 
// fluid: Input fluid ID; 
// carrier: Container item (Optional); 
// unit_time: Unit time per brewing stage in ticks (Optional); 
// input: Array of input ingredients (Optional).

// Example
event.recipes.kaleidoscope_tavern.barrel(
    "kaleidoscope_tavern:wine",
    "minecraft:water",
    "kaleidoscope_tavern:empty_bottle",
    1200,
    [
      "minecraft:emerald",
      "minecraft:emerald"
    ]
  )

Kaleidoscope Chinese Food - Freezing Recipe:

event.recipes.kaleidoscope_chinesefood.freezing(input, output, base_time)
// input Input;
// output Output item;
// base_time Processing time in ticks (Optional)。

// Example
event.recipes.kaleidoscope_chinesefood.freezing("minecraft:blue_ice", "minecraft:packed_ice", 200)

Kaleidoscope Chinese Food - Refrigerating Recipe:

event.recipes.kaleidoscope_chinesefood.freezing(input, output, base_time)
// input Input;
// output Output item;
// base_time Processing time in ticks (Optional)。

// Example
event.recipes.kaleidoscope_chinesefood.refrigerating("minecraft:diamond_block", "minecraft:diamond", 200)

Kaleidoscope Chinese Food - Pickle Jar Recipe:

event.recipes.kaleidoscope_chinesefood.freezing(input, output, base_time)
// output Output item;
// input[] Array of input ingredients;
// fermentTime: Fermentation time in ticks (Optional).

// Example
  event.recipes.kaleidoscope_chinesefood.pickle_jar(
    "minecraft:diamond",
    [
      "#minecraft:logs",
      "minecraft:iron_ingot"
    ],
    3600
  )

Kaleidoscope Cookery - Kitchen Knife Registration:

event.create(id, type).tier(tier) 
// id: Item ID; 
// type: Item type (fixed as 'kaleidoscope_cookery:knife'); 
// tier: Tool tier ('wood', 'stone', 'iron', 'diamond', 'netherite').

// Example
event.create('texe_knife', 'kaleidoscope_cookery:knife')
    .tier('netherite')
    .rarity("epic")
    .fireResistant(true)
    .modifyTier(tier => {
      tier.setUses(1024) // Durability
      tier.setAttackDamageBonus(10) // Attack damage bonus
      tier.setSpeed(-1.0) // Attack speed
    })

Kaleidoscope Cookery - Sickle Registration:

event.create(id, type).tier(tier)
// id: Item ID; 
// type: Item type (fixed as 'kaleidoscope_cookery:knife'); 
// tier: Tool tier ('wood', 'stone', 'iron', 'diamond', 'netherite').

// Example
event.create('texe_sickle', 'kaleidoscope_cookery:sickle')
    .tier('netherite')
    .rarity("epic")
    .fireResistant(true)
    .modifyTier(tier => {
      tier.setUses(1024) // Durability
      tier.setAttackDamageBonus(10) // Attack damage bonus
      tier.setSpeed(-1.0) // Attack speed
    })
kubejs_kaleidoscope-1.0.0-mc1.20.1-forge.jar
MC Client, 1.20.1, Forge, Server
Release 2026-05-01 Get
kubejs_kaleidoscope-1.0.2-mc1.21.1-neoforge.jar
MC Client, 1.21.1, NeoForge, Server
Release 2026-05-01 Get

More from wither_redstone

Redstone-chan's Void Dimension
998
Hammers Galore
941
Fox Trot Brew
85,990
Fintastic Supreme
833
Resource Replicator
725
Shipping Box
677

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