the nether now has a gas collector recipe

This commit is contained in:
Pyritie 2025-05-03 22:55:14 +01:00
parent 208557a382
commit 2d147b0107

View file

@ -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)
}