neuralgia/kubejs/startup_scripts/gtceu/items.js
Kayla 50340ec0df
Changes the greg wood plank and treated wood plank recipes to follow a more realistic processing chain (#1223)
* adds MDF, reworks treated wood and normal wood plate crafting chains

* removes treated wood plank from the minecraft:planks tag
2025-06-27 22:37:27 +01:00

37 lines
1.1 KiB
JavaScript

// priority: 0
const registerGTCEuItems = (event) => {
event.create('tfg:ulv_universal_circuit')
.translationKey('item.ulv_universal_circuit')
event.create('tfg:lv_universal_circuit')
.translationKey('item.lv_universal_circuit')
event.create('tfg:mv_universal_circuit')
.translationKey('item.mv_universal_circuit')
event.create('tfg:hv_universal_circuit')
.translationKey('item.hv_universal_circuit')
event.create('tfg:ev_universal_circuit')
.translationKey('item.ev_universal_circuit')
event.create('tfg:iv_universal_circuit')
.translationKey('item.iv_universal_circuit')
event.create('tfg:luv_universal_circuit')
.translationKey('item.luv_universal_circuit')
event.create('tfg:zpm_universal_circuit')
.translationKey('item.zpm_universal_circuit')
event.create('tfg:uv_universal_circuit')
.translationKey('item.uv_universal_circuit')
event.create('tfg:uhv_universal_circuit')
.translationKey('item.uhv_universal_circuit')
event.create('tfg:chipboard_composite')
.translationKey('item.chipboard_composite')
}