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',
|
C: 'ae2:cell_component_4k',
|
||||||
D: 'ae2:dense_energy_cell'
|
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
|
//assembler
|
||||||
|
|
@ -2129,6 +2140,7 @@ const registerAE2Recipes = (event) => {
|
||||||
.EUt(2)
|
.EUt(2)
|
||||||
|
|
||||||
//extruder
|
//extruder
|
||||||
|
//cable anchor
|
||||||
event.recipes.gtceu.extruder('ae2:cable_anchor')
|
event.recipes.gtceu.extruder('ae2:cable_anchor')
|
||||||
.itemInputs(
|
.itemInputs(
|
||||||
'#forge:plates/steel')
|
'#forge:plates/steel')
|
||||||
|
|
@ -2139,6 +2151,36 @@ const registerAE2Recipes = (event) => {
|
||||||
.duration(15)
|
.duration(15)
|
||||||
.EUt(120)
|
.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