крафты для chemical_bath и circuit_assembler
This commit is contained in:
parent
9b570e639a
commit
125d91bae8
2 changed files with 131 additions and 11 deletions
|
|
@ -2415,24 +2415,145 @@ const registerAE2Recipes = (event) => {
|
||||||
.EUt(16)
|
.EUt(16)
|
||||||
|
|
||||||
//chemical_bath
|
//chemical_bath
|
||||||
//cable
|
//glass cable
|
||||||
event.recipes.gtceu.chemical_bath('ae2:fluix_glass_cable')
|
event.recipes.gtceu.chemical_bath('ae2:fluix_glass_cable')
|
||||||
.itemInputs(
|
.itemInputs(
|
||||||
'#ae2:glass_cable')
|
'#ae2:glass_cable')
|
||||||
.inputFluids(Fluid.of('gtceu:chlorine', 144))
|
.inputFluids(Fluid.of('gtceu:chlorine', 100))
|
||||||
.itemOutputs(
|
.itemOutputs(
|
||||||
'ae2:fluix_glass_cable')
|
'ae2:fluix_glass_cable')
|
||||||
.duration(8)
|
.duration(8)
|
||||||
.EUt(480)
|
.EUt(480)
|
||||||
|
//greg dye
|
||||||
|
for (var i = 0; i < 16; i++) {
|
||||||
|
event.recipes.gtceu.chemical_bath(global.AE2_GLASS_CABLE[i]+'gtceudye')
|
||||||
|
.itemInputs('ae2:fluix_glass_cable')
|
||||||
|
.inputFluids(Fluid.of(global.GTCEU_LIQUID_DYE[i], 72))
|
||||||
|
.itemOutputs(global.AE2_GLASS_CABLE[i])
|
||||||
|
.duration(20)
|
||||||
|
.EUt(7)
|
||||||
|
};
|
||||||
|
//tfc dye
|
||||||
|
for (var i = 0; i < 16; i++) {
|
||||||
|
event.recipes.gtceu.chemical_bath(global.AE2_GLASS_CABLE[i]+'tfcdye')
|
||||||
|
.itemInputs('ae2:fluix_glass_cable')
|
||||||
|
.inputFluids(Fluid.of(global.TFC_LIQUID_DYE[i], 250))
|
||||||
|
.itemOutputs(global.AE2_GLASS_CABLE[i])
|
||||||
|
.duration(20)
|
||||||
|
.EUt(7)
|
||||||
|
};
|
||||||
|
|
||||||
for(i = 0; i < 16; i++) {
|
//covered cable
|
||||||
event.recipes.gtceu.chemical_bath(rrayAE2.glassCables[i])
|
event.recipes.gtceu.chemical_bath('ae2:fluix_covered_cable')
|
||||||
.itemInputs(ore('ae2.cable.glass'))
|
.itemInputs(
|
||||||
.inputFluids(arrayVanila.colorLiquid[i] * 18)
|
'#ae2:covered_cable')
|
||||||
.itemOutputs(arrayAE2.glassCables[i])
|
.inputFluids(Fluid.of('gtceu:chlorine', 100))
|
||||||
.duration(20)
|
.itemOutputs(
|
||||||
.EUt(7)
|
'ae2:fluix_covered_cable')
|
||||||
}
|
.duration(8)
|
||||||
|
.EUt(480)
|
||||||
|
//greg dye
|
||||||
|
for (var i = 0; i < 16; i++) {
|
||||||
|
event.recipes.gtceu.chemical_bath(global.AE2_COVERED_CABLE[i]+'gtceudye')
|
||||||
|
.itemInputs('ae2:fluix_covered_cable')
|
||||||
|
.inputFluids(Fluid.of(global.GTCEU_LIQUID_DYE[i], 72))
|
||||||
|
.itemOutputs(global.AE2_COVERED_CABLE[i])
|
||||||
|
.duration(20)
|
||||||
|
.EUt(7)
|
||||||
|
};
|
||||||
|
//tfc dye
|
||||||
|
for (var i = 0; i < 16; i++) {
|
||||||
|
event.recipes.gtceu.chemical_bath(global.AE2_COVERED_CABLE[i]+'tfcdye')
|
||||||
|
.itemInputs('ae2:fluix_covered_cable')
|
||||||
|
.inputFluids(Fluid.of(global.TFC_LIQUID_DYE[i], 250))
|
||||||
|
.itemOutputs(global.AE2_COVERED_CABLE[i])
|
||||||
|
.duration(20)
|
||||||
|
.EUt(7)
|
||||||
|
};
|
||||||
|
|
||||||
|
// Dense Covered Cable
|
||||||
|
event.recipes.gtceu.chemical_bath('ae2:fluix_covered_dense_cable')
|
||||||
|
.itemInputs(
|
||||||
|
'#ae2:covered_dense_cable')
|
||||||
|
.inputFluids(Fluid.of('gtceu:chlorine', 100))
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:fluix_covered_dense_cable')
|
||||||
|
.duration(8)
|
||||||
|
.EUt(480)
|
||||||
|
//greg dye
|
||||||
|
for (var i = 0; i < 16; i++) {
|
||||||
|
event.recipes.gtceu.chemical_bath(global.AE2_COVERED_DENSE_CABLE[i]+'gtceudye')
|
||||||
|
.itemInputs('ae2:fluix_covered_dense_cable')
|
||||||
|
.inputFluids(Fluid.of(global.GTCEU_LIQUID_DYE[i], 72))
|
||||||
|
.itemOutputs(global.AE2_COVERED_DENSE_CABLE[i])
|
||||||
|
.duration(20)
|
||||||
|
.EUt(7)
|
||||||
|
};
|
||||||
|
//tfc dye
|
||||||
|
for (var i = 0; i < 16; i++) {
|
||||||
|
event.recipes.gtceu.chemical_bath(global.AE2_COVERED_DENSE_CABLE[i]+'tfcdye')
|
||||||
|
.itemInputs('ae2:fluix_covered_dense_cable')
|
||||||
|
.inputFluids(Fluid.of(global.TFC_LIQUID_DYE[i], 250))
|
||||||
|
.itemOutputs(global.AE2_COVERED_DENSE_CABLE[i])
|
||||||
|
.duration(20)
|
||||||
|
.EUt(7)
|
||||||
|
};
|
||||||
|
|
||||||
|
// Smart Cable
|
||||||
|
event.recipes.gtceu.chemical_bath('ae2:fluix_smart_cable')
|
||||||
|
.itemInputs(
|
||||||
|
'#ae2:smart_cable')
|
||||||
|
.inputFluids(Fluid.of('gtceu:chlorine', 100))
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:fluix_smart_cable')
|
||||||
|
.duration(8)
|
||||||
|
.EUt(480)
|
||||||
|
//greg dye
|
||||||
|
for (var i = 0; i < 16; i++) {
|
||||||
|
event.recipes.gtceu.chemical_bath(global.AE2_SMART_CABLE[i]+'gtceudye')
|
||||||
|
.itemInputs('ae2:fluix_smart_cable')
|
||||||
|
.inputFluids(Fluid.of(global.GTCEU_LIQUID_DYE[i], 72))
|
||||||
|
.itemOutputs(global.AE2_SMART_CABLE[i])
|
||||||
|
.duration(20)
|
||||||
|
.EUt(7)
|
||||||
|
};
|
||||||
|
//tfc dye
|
||||||
|
for (var i = 0; i < 16; i++) {
|
||||||
|
event.recipes.gtceu.chemical_bath(global.AE2_SMART_CABLE[i]+'tfcdye')
|
||||||
|
.itemInputs('ae2:fluix_smart_cable')
|
||||||
|
.inputFluids(Fluid.of(global.TFC_LIQUID_DYE[i], 250))
|
||||||
|
.itemOutputs(global.AE2_SMART_CABLE[i])
|
||||||
|
.duration(20)
|
||||||
|
.EUt(7)
|
||||||
|
};
|
||||||
|
|
||||||
|
// Dense Smart Cable
|
||||||
|
event.recipes.gtceu.chemical_bath('ae2:fluix_smart_dense_cable')
|
||||||
|
.itemInputs(
|
||||||
|
'#ae2:smart_dense_cable')
|
||||||
|
.inputFluids(Fluid.of('gtceu:chlorine', 100))
|
||||||
|
.itemOutputs(
|
||||||
|
'ae2:fluix_smart_dense_cable')
|
||||||
|
.duration(8)
|
||||||
|
.EUt(480)
|
||||||
|
//greg dye
|
||||||
|
for (var i = 0; i < 16; i++) {
|
||||||
|
event.recipes.gtceu.chemical_bath(global.AE2_SMART_DENSE_CABLE[i]+'gtceudye')
|
||||||
|
.itemInputs('ae2:fluix_smart_dense_cable')
|
||||||
|
.inputFluids(Fluid.of(global.GTCEU_LIQUID_DYE[i], 72))
|
||||||
|
.itemOutputs(global.AE2_SMART_DENSE_CABLE[i])
|
||||||
|
.duration(20)
|
||||||
|
.EUt(7)
|
||||||
|
};
|
||||||
|
//tfc dye
|
||||||
|
for (var i = 0; i < 16; i++) {
|
||||||
|
event.recipes.gtceu.chemical_bath(global.AE2_SMART_DENSE_CABLE[i]+'tfcdye')
|
||||||
|
.itemInputs('ae2:fluix_smart_dense_cable')
|
||||||
|
.inputFluids(Fluid.of(global.TFC_LIQUID_DYE[i], 250))
|
||||||
|
.itemOutputs(global.AE2_SMART_DENSE_CABLE[i])
|
||||||
|
.duration(20)
|
||||||
|
.EUt(7)
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -173,7 +173,6 @@ global.AE2_SMART_DENSE_CABLE = [
|
||||||
'ae2:black_smart_dense_cable',
|
'ae2:black_smart_dense_cable',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
// Paint ball
|
// Paint ball
|
||||||
global.AE2_PAINTBALL = [
|
global.AE2_PAINTBALL = [
|
||||||
'ae2:white_paint_ball',
|
'ae2:white_paint_ball',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue