1.14.2 Update (#163)
This commit is contained in:
@@ -113,4 +113,11 @@ ServerEvents.recipes((event) => {
|
||||
E: "ae2:engineering_processor",
|
||||
C: "ae2:fluix_glass_cable",
|
||||
});
|
||||
|
||||
// Stonecut p2p tunnels, attunement sucks
|
||||
// Written by MatthiasMann
|
||||
const p2p = ["redstone", "item", "fluid", "fe", "light"]
|
||||
p2p.forEach(type => {
|
||||
event.stonecutting("ae2:" + type + "_p2p_tunnel", "ae2:me_p2p_tunnel")
|
||||
});
|
||||
});
|
||||
|
||||
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");
|
||||
|
||||
@@ -9,4 +9,7 @@ ServerEvents.tags("item", (event) => {
|
||||
event.add("forge:meat", "minecraft:cooked_mutton");
|
||||
event.add("forge:meat", "minecraft:rabbit");
|
||||
event.add("forge:meat", "minecraft:cooked_rabbit");
|
||||
|
||||
event.add("forge:enchanting_fuels", "gtceu:lazurite_gem");
|
||||
event.add("forge:enchanting_fuels", "gtceu:sodalite_gem");
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user