1.14.2 Update (#163)
This commit is contained in:
8
kubejs/server_scripts/gregtech/void_air.js
Normal file
8
kubejs/server_scripts/gregtech/void_air.js
Normal file
@@ -0,0 +1,8 @@
|
||||
ServerEvents.recipes(event => {
|
||||
const greg = event.recipes.gtceu;
|
||||
greg.gas_collector("void_air")
|
||||
.circuit(4)
|
||||
.outputFluids(Fluid.of("gtceu:air", 10000))
|
||||
.dimension("javd:void")
|
||||
.duration(200).EUt(16);
|
||||
});
|
||||
@@ -2,15 +2,15 @@ ServerEvents.recipes((event) => {
|
||||
function woodUnification(woodType) {
|
||||
event.recipes.gtceu
|
||||
.assembler(`${woodType}_fence`)
|
||||
.itemInputs(`${woodType}_planks`, "stick")
|
||||
.itemInputs(`${woodType}_planks`)
|
||||
.itemOutputs(`${woodType}_fence`)
|
||||
.circuit(1)
|
||||
.circuit(13)
|
||||
.duration(100)
|
||||
.EUt(4);
|
||||
|
||||
event.recipes.gtceu
|
||||
.assembler(`${woodType}_fence_gate`)
|
||||
.itemInputs(`2x ${woodType}_planks`, "2x stick")
|
||||
.itemInputs(`2x ${woodType}_planks`, "2x #forge:rods/wooden")
|
||||
.itemOutputs(`${woodType}_fence_gate`)
|
||||
.circuit(2)
|
||||
.duration(100)
|
||||
@@ -18,11 +18,11 @@ ServerEvents.recipes((event) => {
|
||||
|
||||
event.recipes.gtceu
|
||||
.assembler(`${woodType}_stairs`)
|
||||
.itemInputs(`6x ${woodType}_planks`)
|
||||
.itemInputs(`3x ${woodType}_planks`)
|
||||
.itemOutputs(`4x ${woodType}_stairs`)
|
||||
.circuit(1)
|
||||
.circuit(7)
|
||||
.duration(100)
|
||||
.EUt(1);
|
||||
.EUt(4);
|
||||
}
|
||||
|
||||
woodUnification("warped");
|
||||
|
||||
Reference in New Issue
Block a user