* everything should be fine * Balance early power (#6) * balance update * Add textures * last balance tweaks * more balance * Fix conflicts * Balance early power (#8) * balance update * Add textures * last balance tweaks * Oupsi * more fixes * add changed quests * push latest balance * fix tallow * add btx * Update quests * Oups * Adding some nuclear stuffs so I can merge my branches * Isotopic solvent stuff (#10) * push * fix iconset issue * adding all the textures change * add more stuffs * Push recipes * new stuffs * add stuffs * more changes * add textures and some recipes * tons of change * fix texture * add textures and other stuffs * more recipes * add recycling for fission rods * more recipes * fix fluid textures * comment out FLiBe again and balance rods * fix fluids * some latest fix * fix more texture * more recipe changes * more recipes * some last minute balance changes * add quests * fix conflict * more fixes * fix components * var to const --------- Co-authored-by: Spicy Noodles <93035068+SpicyNoodle5@users.noreply.github.com>
50 lines
No EOL
1.2 KiB
JavaScript
50 lines
No EOL
1.2 KiB
JavaScript
function registerGTCEUTerminal(event) {
|
|
|
|
|
|
// Gregtech CEu Terminals Integration
|
|
|
|
//event.remove({ id : 'gtceuterminal:dismantler' })
|
|
event.shaped('1x gtceuterminal:dismantler', [
|
|
'ABA',
|
|
'CDC',
|
|
'FEF'
|
|
], {
|
|
A: 'gtceu:mv_sensor',
|
|
B: 'gtceu:mv_emitter',
|
|
C: '#gtceu:circuits/mv',
|
|
D: 'gtceu:computer_monitor_cover',
|
|
E: 'gtceu:mv_voltage_coil',
|
|
F: '#forge:plates/aluminium'
|
|
}).id(`tfg:shaped/dismantler`)
|
|
|
|
event.remove({ id : 'gtceuterminal:multi_structure_manager' })
|
|
event.shaped('1x gtceuterminal:multi_structure_manager', [
|
|
'ABA',
|
|
'CDC',
|
|
'FEF'
|
|
], {
|
|
A: 'gtceu:hv_sensor',
|
|
B: 'gtceu:hv_emitter',
|
|
C: '#gtceu:circuits/hv',
|
|
D: 'gtceu:terminal',
|
|
E: '#gtceu:batteries/hv',
|
|
F: '#forge:plates/stainless_steel'
|
|
}).id(`tfg:shaped/multi_structure_manager`)
|
|
|
|
event.remove({ id : 'gtceuterminal:schematic_interface' })
|
|
/* Broken for now as it can duplicate resources in the I/O Ports
|
|
event.shaped('1x gtceuterminal:schematic_interface', [
|
|
'ABA',
|
|
'CDC',
|
|
'FEF'
|
|
], {
|
|
A: 'gtceu:iv_sensor',
|
|
B: 'gtceu:iv_emitter',
|
|
C: '#gtceu:circuits/iv',
|
|
D: 'gtceu:terminal',
|
|
E: '#gtceu:batteries/iv',
|
|
F: '#forge:plates/tungsten_steel'
|
|
}).id(`tfg:shaped/schematic_interface`)
|
|
*/
|
|
|
|
}
|