From 2d147b01077c49293d1f85254bfb916f2ebacd61 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Sat, 3 May 2025 22:55:14 +0100 Subject: [PATCH] the nether now has a gas collector recipe --- kubejs/server_scripts/tfg/recipes.miscellaneous.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/kubejs/server_scripts/tfg/recipes.miscellaneous.js b/kubejs/server_scripts/tfg/recipes.miscellaneous.js index 55a001fdf..e2a8470a8 100644 --- a/kubejs/server_scripts/tfg/recipes.miscellaneous.js +++ b/kubejs/server_scripts/tfg/recipes.miscellaneous.js @@ -381,4 +381,12 @@ function registerTFGMiscellaneousRecipes(event) { event.shapeless(Item.of(`tfg:${tier}_universal_circuit`, 1), [Ingredient.of([`#gtceu:circuits/${tier}`]).subtract([`tfg:${tier}_universal_circuit`])] ).id(`universal_circuits_${tier}`); }); + + // Air collector (move this to space stuff later) + event.recipes.gtceu.gas_collector('nether') + .circuit(2) + .outputFluids(Fluid.of('gtceu:air', 10000)) + .dimension('minecraft:the_nether') + .duration(200) + .EUt(16) } \ No newline at end of file