From 0a19d09a43c79b7a299e12872c1c2bb33d41f0c1 Mon Sep 17 00:00:00 2001 From: Redeix Date: Thu, 8 Jan 2026 00:49:22 -0600 Subject: [PATCH] Volcanic Glass Tube Casting (#2667) No glass batch to tube recipe. Tubes can only be made from glass dust which is a bit annoying. I figured volcanic glass makes sense since its high temp? idk Signed-off-by: Redeix --- kubejs/server_scripts/gregtech/recipes.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/kubejs/server_scripts/gregtech/recipes.js b/kubejs/server_scripts/gregtech/recipes.js index 90f5c6cef..1bde3751f 100644 --- a/kubejs/server_scripts/gregtech/recipes.js +++ b/kubejs/server_scripts/gregtech/recipes.js @@ -409,4 +409,14 @@ const registerGTCEURecipes = (event) => { .itemOutputs('tfg:paracetamol_pill') .duration(3 * 20) .EUt(GTValues.VA[GTValues.LV]) + + // Volcanic Glass Tube + event.recipes.gtceu.alloy_smelter('tfg:tube_from_volcanic_glass_batch') + .itemInputs('tfc:volcanic_glass_batch') + .notConsumable('gtceu:ball_casting_mold') + .itemOutputs('gtceu:glass_tube') + .duration(8 * 20) + .EUt(GTValues.VA[GTValues.LV]) + .category(GTRecipeCategories.INGOT_MOLDING) + .addMaterialInfo(true); }