diff --git a/kubejs/assets/astralfoods/textures/item/bulbas_tea.png b/kubejs/assets/astralfoods/textures/item/bulbas_tea.png new file mode 100644 index 000000000..20af23887 Binary files /dev/null and b/kubejs/assets/astralfoods/textures/item/bulbas_tea.png differ diff --git a/kubejs/server_scripts/create.js b/kubejs/server_scripts/create.js index b4c74f575..507555f47 100644 --- a/kubejs/server_scripts/create.js +++ b/kubejs/server_scripts/create.js @@ -42,7 +42,7 @@ function millingRecipes(event) { ["minecraft:fire_coral_block", "2x minecraft:red_dye", 1], ["minecraft:horn_coral_block", "2x minecraft:yellow_dye", 1], ["minecraft:glow_berries", "naturalist:glow_goop", 1], - ["naturalist:glow_goop", "minecraft:yellow_dye", 1], + ["naturalist:glow_goop", "minecraft:yellow_dye", 1], ["minecraft:twisting_vines", "minecraft:blue_dye", 1], ["minecraft:weeping_vines", "minecraft:red_dye", 1], ["minecraft:sweet_berries", "minecraft:red_dye", 1], @@ -75,7 +75,7 @@ function crushingRecipes(event) { input: "minecraft:calcite", outputs: [["4x techreborn:calcite_dust", 1]], }, - { + { input: "minecraft:dead_tube_coral_block", outputs: [["1x techreborn:calcite_dust", 1]], }, @@ -1278,7 +1278,7 @@ function sequencedAssemblyRecipes(event) { // input event.recipes.createFilling("createbigcannons:nethersteel_screw_breech", [ "createbigcannons:nethersteel_screw_breech", - { fluid: "kubejs:shimmer", amount: 9000 }, + { fluid: "kubejs:shimmer", amount: 9000 }, ]), event.recipes.createDeploying("createbigcannons:nethersteel_screw_breech", [ "createbigcannons:nethersteel_screw_breech", @@ -1286,11 +1286,11 @@ function sequencedAssemblyRecipes(event) { ]), event.recipes.createFilling("createbigcannons:nethersteel_screw_breech", [ "createbigcannons:nethersteel_screw_breech", - { fluid: "techreborn:lithium", amount: 3000 }, + { fluid: "techreborn:lithium", amount: 3000 }, ]), event.recipes.createFilling("createbigcannons:nethersteel_screw_breech", [ "createbigcannons:nethersteel_screw_breech", - { fluid: "techreborn:silicon", amount: 3000 }, + { fluid: "techreborn:silicon", amount: 3000 }, ]), ] ) @@ -2538,6 +2538,15 @@ function mixingRecipes(event) { ]) .superheated() .processingTime(1000); + + event.recipes + .createMixing("astralfoods:bulbas_tea", [ + "astraladditions:bulba_root", + { fluid: "minecraft:water", amount: 333 * mB }, + { fluid: "milk:still_milk", amount: 333 * mB }, + ]) + .heated() + .processingTime(45); } function cuttingRecipes(event) { @@ -2617,7 +2626,7 @@ function splashingRecipes(event) { input: "minecraft:calcite", outputs: [["minecraft:dripstone_block", 1]], }, - { + { input: "minecraft:sponge", outputs: [["minecraft:wet_sponge", 1]], }, @@ -3352,7 +3361,7 @@ function compactingRecipes(event) { output: "minecraft:andesite", inputs: ["4x techreborn:andesite_dust"], }, - { + { output: "minecraft:granite", inputs: ["4x techreborn:granite_dust"], }, diff --git a/kubejs/startup_scripts/item_registry.js b/kubejs/startup_scripts/item_registry.js index 787b0dd86..e01001644 100644 --- a/kubejs/startup_scripts/item_registry.js +++ b/kubejs/startup_scripts/item_registry.js @@ -118,6 +118,18 @@ onEvent("item.registry", (event) => { .alwaysEdible(); }); + event + .create("astralfoods:bulbas_tea") + .displayName("Bulba's Tea") + .food((food) => { + food.hunger(2) + .saturation(1.2) + .effect("night_vision", 4800, 1, 1) + .effect("haste", 4800, 1, 1) + .maxStackSize(16) + .alwaysEdible(); + }); + event.create("createastral:golden_bowl").displayName("Golden Bowl"); event .create("createastral:filled_golden_bowl", "create:sequenced_assembly") diff --git a/kubejs/startup_scripts/item_tooltip.js b/kubejs/startup_scripts/item_tooltip.js index 895db3fb8..0e2f5d6e8 100644 --- a/kubejs/startup_scripts/item_tooltip.js +++ b/kubejs/startup_scripts/item_tooltip.js @@ -308,7 +308,7 @@ onEvent("item.tooltip", (e) => { }, { item: "astralfoods:astral_sauce", - tooltip: "Where did the bowl come? The singularity can fabricate them of course!", + tooltip: "The bowl comes from the recipe :blehh:", }, { item: "createbigcannons:steel_screw_breech",