некоторые обновления
убрал кварц и всё что связано с метеоритами из ае2, привязал все крафты к кварцу из грега
This commit is contained in:
parent
e7e5534b5f
commit
7ce0864b68
1 changed files with 285 additions and 3 deletions
|
|
@ -3,9 +3,14 @@
|
||||||
const registerAE2Recipes = (event) => {
|
const registerAE2Recipes = (event) => {
|
||||||
|
|
||||||
// Удаление рецептов мода
|
// Удаление рецептов мода
|
||||||
event.remove({ mod: 'ae2' });
|
//event.remove({ mod: 'ae2' });
|
||||||
|
|
||||||
// crafting Table
|
// crafting Table
|
||||||
|
// ae2:cable_anchor
|
||||||
|
event.shapeless(('ae2:cable_anchor'), [
|
||||||
|
'#forge:ingots',
|
||||||
|
'#ae2:knife'
|
||||||
|
])
|
||||||
// network tool
|
// network tool
|
||||||
event.shaped('ae2:network_tool', [
|
event.shaped('ae2:network_tool', [
|
||||||
'AB',
|
'AB',
|
||||||
|
|
@ -2718,11 +2723,288 @@ const registerAE2Recipes = (event) => {
|
||||||
// Charged Certus Quartz
|
// Charged Certus Quartz
|
||||||
event.recipes.gtceu.electrolyzer('ae2:charged_certus_quartz_crystal')
|
event.recipes.gtceu.electrolyzer('ae2:charged_certus_quartz_crystal')
|
||||||
.itemInputs(
|
.itemInputs(
|
||||||
'#forge:gems/certus_quartz')
|
'gtceu:certus_quartz_gem')
|
||||||
.itemOutputs('ae2:charged_certus_quartz_crystal')
|
.itemOutputs('ae2:charged_certus_quartz_crystal')
|
||||||
.duration(20)
|
.duration(20)
|
||||||
.EUt(160)
|
.EUt(160)
|
||||||
|
|
||||||
|
//compressor
|
||||||
|
//quartz block
|
||||||
|
event.recipes.gtceu.compressor('ae2:quartz_block')
|
||||||
|
.itemInputs(
|
||||||
|
'9x gtceu:certus_quartz_gem')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:quartz_block')
|
||||||
|
.duration(300)
|
||||||
|
.EUt(2)
|
||||||
|
//fluix block
|
||||||
|
event.recipes.gtceu.compressor('ae2:fluix_block')
|
||||||
|
.itemInputs(
|
||||||
|
'9x #forge:gems/fluix')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:fluix_block')
|
||||||
|
.duration(300)
|
||||||
|
.EUt(2)
|
||||||
|
|
||||||
|
|
||||||
|
//packer
|
||||||
|
//cells
|
||||||
|
event.recipes.gtceu.packer('ae2:view_cell')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:item_cell_housing',
|
||||||
|
'#forge:gems/certus_quartz')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:view_cell')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
.cleanroom(CleanroomType.CLEANROOM)
|
||||||
|
event.recipes.gtceu.packer('ae2:item_storage_cell_1k')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:item_cell_housing',
|
||||||
|
'ae2:cell_component_1k')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:item_storage_cell_1k')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
.cleanroom(CleanroomType.CLEANROOM)
|
||||||
|
event.recipes.gtceu.packer('ae2:item_storage_cell_4k')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:item_cell_housing',
|
||||||
|
'ae2:cell_component_4k')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:item_storage_cell_4k')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
.cleanroom(CleanroomType.CLEANROOM)
|
||||||
|
event.recipes.gtceu.packer('ae2:item_storage_cell_16k')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:item_cell_housing',
|
||||||
|
'ae2:cell_component_16k')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:item_storage_cell_16k')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
.cleanroom(CleanroomType.CLEANROOM)
|
||||||
|
event.recipes.gtceu.packer('ae2:item_storage_cell_64k')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:item_cell_housing',
|
||||||
|
'ae2:cell_component_64k')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:item_storage_cell_64k')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
.cleanroom(CleanroomType.CLEANROOM)
|
||||||
|
event.recipes.gtceu.packer('ae2:item_storage_cell_256k')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:item_cell_housing',
|
||||||
|
'ae2:cell_component_256k')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:item_storage_cell_256k')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
.cleanroom(CleanroomType.CLEANROOM)
|
||||||
|
|
||||||
|
event.recipes.gtceu.packer('ae2:fluid_storage_cell_1k')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:fluid_cell_housing',
|
||||||
|
'ae2:cell_component_1k')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:fluid_storage_cell_1k')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
.cleanroom(CleanroomType.CLEANROOM)
|
||||||
|
event.recipes.gtceu.packer('ae2:fluid_storage_cell_4k')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:fluid_cell_housing',
|
||||||
|
'ae2:cell_component_4k')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:fluid_storage_cell_4k')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
.cleanroom(CleanroomType.CLEANROOM)
|
||||||
|
event.recipes.gtceu.packer('ae2:fluid_storage_cell_16k')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:fluid_cell_housing',
|
||||||
|
'ae2:cell_component_16k')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:fluid_storage_cell_16k')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
.cleanroom(CleanroomType.CLEANROOM)
|
||||||
|
event.recipes.gtceu.packer('ae2:fluid_storage_cell_64k')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:fluid_cell_housing',
|
||||||
|
'ae2:cell_component_64k')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:fluid_storage_cell_64k')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
.cleanroom(CleanroomType.CLEANROOM)
|
||||||
|
event.recipes.gtceu.packer('ae2:fluid_storage_cell_256k')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:fluid_cell_housing',
|
||||||
|
'ae2:cell_component_256k')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:fluid_storage_cell_256k')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
.cleanroom(CleanroomType.CLEANROOM)
|
||||||
|
|
||||||
|
event.recipes.gtceu.packer('ae2:spatial_storage_cell_2')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:item_cell_housing',
|
||||||
|
'ae2:spatial_cell_component_2')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:spatial_storage_cell_2')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
.cleanroom(CleanroomType.CLEANROOM)
|
||||||
|
event.recipes.gtceu.packer('ae2:spatial_storage_cell_16')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:item_cell_housing',
|
||||||
|
'ae2:spatial_cell_component_16')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:spatial_storage_cell_16')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
.cleanroom(CleanroomType.CLEANROOM)
|
||||||
|
event.recipes.gtceu.packer('ae2:spatial_storage_cell_128')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:item_cell_housing',
|
||||||
|
'ae2:spatial_cell_component_128')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:spatial_storage_cell_128')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
.cleanroom(CleanroomType.CLEANROOM)
|
||||||
|
|
||||||
|
event.recipes.gtceu.packer('ae2:view_cell_back')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:view_cell'
|
||||||
|
)
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:item_cell_housing',
|
||||||
|
'#forge:gems/certus_quartz')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
|
||||||
|
event.recipes.gtceu.packer('ae2:item_storage_cell_1k_back')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:item_storage_cell_1k')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:item_cell_housing',
|
||||||
|
'ae2:cell_component_1k')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
event.recipes.gtceu.packer('ae2:item_storage_cell_4k_back')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:item_storage_cell_4k')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:item_cell_housing',
|
||||||
|
'ae2:cell_component_4k')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
event.recipes.gtceu.packer('ae2:item_storage_cell_16k_back')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:item_storage_cell_16k')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:item_cell_housing',
|
||||||
|
'ae2:cell_component_16k')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
event.recipes.gtceu.packer('ae2:item_storage_cell_64k_back')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:item_storage_cell_64k')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:item_cell_housing',
|
||||||
|
'ae2:cell_component_64k')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
event.recipes.gtceu.packer('ae2:item_storage_cell_256k_back')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:item_storage_cell_256k')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:item_cell_housing',
|
||||||
|
'ae2:cell_component_256k')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
|
||||||
|
event.recipes.gtceu.packer('ae2:fluid_storage_cell_1k_back')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:fluid_storage_cell_1k')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:fluid_cell_housing',
|
||||||
|
'ae2:cell_component_1k')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
event.recipes.gtceu.packer('ae2:fluid_storage_cell_4k_back')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:fluid_storage_cell_4k')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:fluid_cell_housing',
|
||||||
|
'ae2:cell_component_4k')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
event.recipes.gtceu.packer('ae2:fluid_storage_cell_16k_back')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:fluid_storage_cell_16k')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:fluid_cell_housing',
|
||||||
|
'ae2:cell_component_16k')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
event.recipes.gtceu.packer('ae2:fluid_storage_cell_64k_back')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:fluid_storage_cell_64k')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:fluid_cell_housing',
|
||||||
|
'ae2:cell_component_64k')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
event.recipes.gtceu.packer('ae2:fluid_storage_cell_256k_back')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:fluid_storage_cell_256k')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:fluid_cell_housing',
|
||||||
|
'ae2:cell_component_256k')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
|
||||||
|
event.recipes.gtceu.packer('ae2:spatial_storage_cell_2_back')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:spatial_storage_cell_2')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:item_cell_housing',
|
||||||
|
'ae2:spatial_cell_component_2')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
event.recipes.gtceu.packer('ae2:spatial_storage_cell_16_back')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:spatial_storage_cell_16')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:item_cell_housing',
|
||||||
|
'ae2:spatial_cell_component_16')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
event.recipes.gtceu.packer('ae2:spatial_storage_cell_128_back')
|
||||||
|
.itemInputs(
|
||||||
|
'ae2:spatial_storage_cell_128')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:item_cell_housing',
|
||||||
|
'ae2:spatial_cell_component_128')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
|
||||||
|
//macerator
|
||||||
|
event.recipes.gtceu.macerator('ae2:fluix_dust')
|
||||||
|
.itemInputs(
|
||||||
|
'#forge:gems/fluix')
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:fluix_dust')
|
||||||
|
.duration(10)
|
||||||
|
.EUt(7)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue