* gt7 removed credits/coins * port gregtech additions to java * add eslint locally * add style linting * switch target ECMA standard * run linter * clean up a bunch of linter errors * remove outdated greate API calls * forgot about the TFC multi compat issue * reverted greate recipe removals * some more linting stuff * fix some issues with greenhouse recipes * fix up some material stuff * fix recipe types * - Fixed single block machine rendering (#1465) * minor fixes and changes --------- Signed-off-by: Pyritie <pyritie@gmail.com> Co-authored-by: Pyritie <pyritie@gmail.com> Co-authored-by: Redeix <59435925+Redeix@users.noreply.github.com>
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
// priority: 0
|
|
"use strict";
|
|
|
|
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')
|
|
|
|
}
|