1.14.2 Update (#163)

This commit is contained in:
htmlcsjs
2025-12-14 18:48:23 +00:00
committed by GitHub
parent 4281f17e14
commit 75adf3c52d
21 changed files with 274 additions and 95 deletions

View File

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

View 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);
});

View File

@@ -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");

View File

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

View File

@@ -0,0 +1,6 @@
GTCEuStartupEvents.registry("gtceu:dimension_marker", event => {
event.create("javd:void")
.iconSupplier(() => Item.of("javd:portal_block").getItem())
.tier(0)
.overrideName("Void Dimension");
});