Update recipes.js
This commit is contained in:
parent
72f68a36c4
commit
b422ddec92
1 changed files with 44 additions and 2 deletions
|
|
@ -493,6 +493,17 @@ const registerAE2Recipes = (event) => {
|
|||
C: 'ae2:cell_component_4k',
|
||||
D: 'ae2:dense_energy_cell'
|
||||
});
|
||||
//color applicator
|
||||
event.shaped('ae2:color_applicator',[
|
||||
'AB',
|
||||
'BC ',
|
||||
' D'
|
||||
], {
|
||||
A: 'ae2:formation_core',
|
||||
B: '#forge:plates/steel',
|
||||
C: 'ae2:cell_component_4k',
|
||||
D: 'ae2:dense_energy_cell'
|
||||
});
|
||||
|
||||
|
||||
//assembler
|
||||
|
|
@ -2129,6 +2140,7 @@ const registerAE2Recipes = (event) => {
|
|||
.EUt(2)
|
||||
|
||||
//extruder
|
||||
//cable anchor
|
||||
event.recipes.gtceu.extruder('ae2:cable_anchor')
|
||||
.itemInputs(
|
||||
'#forge:plates/steel')
|
||||
|
|
@ -2138,7 +2150,37 @@ const registerAE2Recipes = (event) => {
|
|||
'8x ae2:cable_anchor')
|
||||
.duration(15)
|
||||
.EUt(120)
|
||||
|
||||
|
||||
|
||||
//assembly line
|
||||
//quantum ring
|
||||
event.recipes.gtceu.assembly_line('ae2:quantum_ring')
|
||||
.itemInputs(
|
||||
'4x #forge:batteries/hv',
|
||||
'12x #forge:circuits/iv',
|
||||
'16x gtceu:iv_emitter',
|
||||
'8x ae2:engineering_processor',
|
||||
'14x gtceu:iv_sensor',
|
||||
'2x ae2:dense_energy_cell',
|
||||
'ae2:logic_processor',)
|
||||
.inputFluids(Fluid.of('gtceu:titanium', 1440))
|
||||
.itemOutputs(
|
||||
'ae2:quantum_ring')
|
||||
.duration(900)
|
||||
.EUt(8300)
|
||||
.cleanroom(CleanroomType.CLEANROOM)
|
||||
//quantom link chamber
|
||||
event.recipes.gtceu.assembly_line('ae2:quantum_link')
|
||||
.itemInputs(
|
||||
'8x ae2:fluix_pearl',
|
||||
'6x ae2:quartz_vibrant_glass',
|
||||
'8x ae2:engineering_processor',
|
||||
'14x gtceu:iv_sensor',
|
||||
'2x ae2:dense_energy_cell')
|
||||
.inputFluids(Fluid.of('gtceu:titanium', 1088))
|
||||
.itemOutputs(
|
||||
'ae2:quantum_link')
|
||||
.duration(700)
|
||||
.EUt(8300)
|
||||
.cleanroom(CleanroomType.CLEANROOM)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue