Updated textures for the fridge and food processor + (#1210)
* - Lots of food stuff * Updated Changelog * Changed dry ice and calorie paste recipes * Update recipes.miscellaneous.js Signed-off-by: Redeix <59435925+Redeix@users.noreply.github.com> * Updated textures for the fridge and food processor. Added refrigerant gases for the refrigerators and added recycling recipes for all the new machines. --------- Signed-off-by: Redeix <59435925+Redeix@users.noreply.github.com>
|
Before Width: | Height: | Size: 75 B After Width: | Height: | Size: 209 B |
|
Before Width: | Height: | Size: 75 B After Width: | Height: | Size: 2.6 KiB |
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"animation":{
|
||||
"frametime":1
|
||||
"frametime": 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 149 B |
|
Before Width: | Height: | Size: 334 B After Width: | Height: | Size: 268 B |
|
Before Width: | Height: | Size: 683 B After Width: | Height: | Size: 1.6 KiB |
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"animation":{
|
||||
"frametime": 2
|
||||
"frametime": 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 740 B |
|
After Width: | Height: | Size: 149 B |
|
Before Width: | Height: | Size: 348 B After Width: | Height: | Size: 199 B |
|
Before Width: | Height: | Size: 542 B After Width: | Height: | Size: 7.2 KiB |
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"animation":{
|
||||
"frametime": 2
|
||||
"frametime": 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 7.2 KiB |
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"animation":{
|
||||
"frametime": 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 149 B |
|
Before Width: | Height: | Size: 592 B After Width: | Height: | Size: 906 B |
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"animation":{
|
||||
"frametime": 1
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 504 B |
|
Before Width: | Height: | Size: 184 B |
|
Before Width: | Height: | Size: 785 B |
|
Before Width: | Height: | Size: 4.6 KiB |
|
After Width: | Height: | Size: 90 B |
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"animation":{
|
||||
"frametime": 1
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 350 B After Width: | Height: | Size: 241 B |
@@ -351,6 +351,10 @@
|
||||
"material.tfg.compressed_heliox_3": "Compressed Heliox-3",
|
||||
"material.tfg.compressed_trimix": "Compressed 50/30/20 Trimix",
|
||||
"material.tfg.compressed_trimix_3": "Compressed 50/30/20 Trimix-3",
|
||||
"material.tfg.chlorodifluoromethane": "Chlorodifluoromethane",
|
||||
"material.tfg.acetylene": "Acetylene",
|
||||
"material.tfg.1_1_1_2_tetrafluoroethane": "1,1,1,2-Tetrafluoroethane",
|
||||
"material.tfg.isobutane": "Isobutane",
|
||||
"tfg.disabled_portal": "Portal magic seems to be blocked by an unknown force, try reaching another dimension by going down or up",
|
||||
"tfg.tooltip.food_trait.refrigerating": "§bRefrigerating",
|
||||
"tfg.tooltip.foodtrait.freeze_dried": "Cryodesiccated",
|
||||
|
||||
@@ -764,6 +764,56 @@ function registerTFGFoodRecipes(event) {
|
||||
|
||||
//#endregion
|
||||
|
||||
// Food processing machine recipes
|
||||
event.remove({id: 'gtceu:shaped/mv_food_refrigerator'})
|
||||
event.remove({id: 'gtceu:shaped/hv_food_refrigerator'})
|
||||
event.remove({id: 'gtceu:shaped/ev_food_refrigerator'})
|
||||
|
||||
event.recipes.gtceu.assembler('tfg:assembler/mv_food_refrigerator')
|
||||
.itemInputs(
|
||||
ChemicalHelper.get(TagPrefix.cableGtSingle, GTMaterials.Copper, 2),
|
||||
ChemicalHelper.get(TagPrefix.plate, GTMaterials.Polyethylene, 2),
|
||||
ChemicalHelper.get(TagPrefix.rotor, GTMaterials.Bronze, 1),
|
||||
'2x gtceu:mv_electric_pump',
|
||||
'gtceu:mv_hermetic_casing',
|
||||
'#gtceu:circuits/mv'
|
||||
)
|
||||
.inputFluids(Fluid.of('tfg:chlorodifluoromethane', 6000))
|
||||
.itemOutputs('1x tfg:mv_food_refrigerator')
|
||||
.duration(200)
|
||||
.circuit(7)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
event.recipes.gtceu.assembler('tfg:assembler/hv_food_refrigerator')
|
||||
.itemInputs(
|
||||
ChemicalHelper.get(TagPrefix.cableGtSingle, GTMaterials.Gold, 2),
|
||||
ChemicalHelper.get(TagPrefix.plate, GTMaterials.Polyethylene, 2),
|
||||
ChemicalHelper.get(TagPrefix.rotor, GTMaterials.Steel, 1),
|
||||
'2x gtceu:hv_electric_pump',
|
||||
'gtceu:hv_hermetic_casing',
|
||||
'#gtceu:circuits/hv'
|
||||
)
|
||||
.inputFluids(Fluid.of('tfg:1_1_1_2_tetrafluoroethane', 6000))
|
||||
.itemOutputs('1x tfg:hv_food_refrigerator')
|
||||
.duration(200)
|
||||
.circuit(7)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
event.recipes.gtceu.assembler('tfg:assembler/ev_food_refrigerator')
|
||||
.itemInputs(
|
||||
ChemicalHelper.get(TagPrefix.cableGtSingle, GTMaterials.Aluminium, 2),
|
||||
ChemicalHelper.get(TagPrefix.plate, GTMaterials.Polyethylene, 2),
|
||||
ChemicalHelper.get(TagPrefix.rotor, GTMaterials.StainlessSteel, 1),
|
||||
'2x gtceu:ev_electric_pump',
|
||||
'gtceu:ev_hermetic_casing',
|
||||
'#gtceu:circuits/ev'
|
||||
)
|
||||
.inputFluids(Fluid.of('tfg:isobutane', 6000))
|
||||
.itemOutputs('1x tfg:ev_food_refrigerator')
|
||||
.duration(200)
|
||||
.circuit(7)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
// Tweaks to the machine crafts that are more annoying to do in java
|
||||
event.replaceInput({id: 'gtceu:shaped/lv_food_processor'}, 'gtceu:lv_electric_piston', 'gtceu:steel_whisk')
|
||||
event.replaceInput({id: 'gtceu:shaped/mv_food_processor'}, 'gtceu:mv_electric_piston', 'gtceu:aluminium_whisk')
|
||||
@@ -774,8 +824,4 @@ function registerTFGFoodRecipes(event) {
|
||||
event.replaceInput({id: 'gtceu:shaped/mv_food_oven'}, 'gtceu:mv_electric_piston', '#tfg:metal_bars')
|
||||
event.replaceInput({id: 'gtceu:shaped/hv_food_oven'}, 'gtceu:hv_electric_piston', '#tfg:metal_bars')
|
||||
event.replaceInput({id: 'gtceu:shaped/ev_food_oven'}, 'gtceu:ev_electric_piston', '#tfg:metal_bars')
|
||||
|
||||
event.replaceInput({id: 'gtceu:shaped/mv_food_refrigerator'}, 'gtceu:mv_machine_hull', 'gtceu:mv_hermetic_casing')
|
||||
event.replaceInput({id: 'gtceu:shaped/hv_food_refrigerator'}, 'gtceu:hv_machine_hull', 'gtceu:hv_hermetic_casing')
|
||||
event.replaceInput({id: 'gtceu:shaped/ev_food_refrigerator'}, 'gtceu:ev_machine_hull', 'gtceu:ev_hermetic_casing')
|
||||
}
|
||||
@@ -17,4 +17,6 @@ const registerTFGRecipes = (event) => {
|
||||
registerTFGFoodRecipes(event)
|
||||
registerTFGSpaceRecipes(event)
|
||||
registerTFGStoneDustRecipes(event)
|
||||
registerTFGRecyclingRecipes(event)
|
||||
|
||||
}
|
||||
@@ -495,4 +495,38 @@ function registerTFGMiscellaneousRecipes(event) {
|
||||
`tfg:food/freeze_dried/${fruit.name}`
|
||||
]).id(`tfg:shapeless/emptying/freeze_dried/${fruit.name}`)
|
||||
})
|
||||
|
||||
event.recipes.gtceu.chemical_reactor('tfg:chemical_reactor/chlorodifluoromethane')
|
||||
.inputFluids(Fluid.of('gtceu:chloroform', 2000), Fluid.of('gtceu:hydrofluoric_acid', 4000))
|
||||
.outputFluids(Fluid.of('tfg:chlorodifluoromethane', 6000))
|
||||
.duration(480)
|
||||
.circuit(2)
|
||||
.EUt(GTValues.VA[GTValues.MV])
|
||||
|
||||
event.recipes.gtceu.chemical_reactor('tfg:chemical_reactor/breakdown/chlorodifluoromethane')
|
||||
.inputFluids(Fluid.of('tfg:chlorodifluoromethane', 300))
|
||||
.outputFluids(Fluid.of('gtceu:tetrafluoroethylene', 100), Fluid.of('gtceu:hydrochloric_acid', 200))
|
||||
.duration(100)
|
||||
.EUt(GTValues.VA[GTValues.HV])
|
||||
|
||||
event.recipes.gtceu.chemical_reactor('tfg:chemical_reactor/acetylene')
|
||||
.inputFluids(Fluid.of('gtceu:methane', 3000), Fluid.of('gtceu:oxygen', 3000))
|
||||
.outputFluids(Fluid.of('tfg:acetylene', 100))
|
||||
.circuit(4)
|
||||
.duration(120)
|
||||
.EUt(GTValues.VA[GTValues.MV])
|
||||
|
||||
event.recipes.gtceu.chemical_reactor('tfg:chemical_reactor/1_1_1_2_tetrafluoroethane')
|
||||
.inputFluids(Fluid.of('tfg:acetylene', 1000), Fluid.of('gtceu:chlorine', 2000), Fluid.of('gtceu:hydrofluoric_acid', 8000))
|
||||
.outputFluids(Fluid.of('tfg:1_1_1_2_tetrafluoroethane', 2000), Fluid.of('gtceu:hydrochloric_acid', 6000))
|
||||
.circuit(4)
|
||||
.duration(480)
|
||||
.EUt(GTValues.VA[GTValues.HV])
|
||||
|
||||
event.recipes.gtceu.cracker('tfg:cracker/isobutane')
|
||||
.inputFluids(Fluid.of('gtceu:butane', 4000))
|
||||
.outputFluids(Fluid.of('tfg:isobutane', 1000), Fluid.of('gtceu:lpg', 3000))
|
||||
.circuit(4)
|
||||
.duration(1400)
|
||||
.EUt(GTValues.VA[GTValues.EV])
|
||||
}
|
||||
|
||||
379
kubejs/server_scripts/tfg/recipes.recycling.js
Normal file
@@ -0,0 +1,379 @@
|
||||
// priority: 0
|
||||
|
||||
function registerTFGRecyclingRecipes(event) {
|
||||
|
||||
//MV Refrigerator
|
||||
event.recipes.gtceu.macerator('tfg:macerator/recycling/mv_food_refrigerator')
|
||||
.itemInputs('tfg:mv_food_refrigerator')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Aluminium, 5),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Bronze, 6),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Cupronickel, 4),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Polyethylene, 2)
|
||||
)
|
||||
.duration(GTMaterials.Aluminium.getMass() * 5)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.arc_furnace('tfg:arc_furnace/recycling/mv_food_refrigerator')
|
||||
.itemInputs('tfg:mv_food_refrigerator')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Aluminium, 5),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Bronze, 6),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Cupronickel, 4),
|
||||
ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.Ash, 2)
|
||||
)
|
||||
.duration(GTMaterials.Aluminium.getMass() * 5)
|
||||
.category(GTRecipeCategories.ARC_FURNACE_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
//HV Refrigerator
|
||||
event.recipes.gtceu.macerator('tfg:macerator/recycling/hv_food_refrigerator')
|
||||
.itemInputs('tfg:hv_food_refrigerator')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.StainlessSteel, 8),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Steel, 7),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Electrum, 4),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Polytetrafluoroethylene, 4)
|
||||
)
|
||||
.duration(GTMaterials.StainlessSteel.getMass() * 8)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.arc_furnace('tfg:arc_furnace/recycling/hv_food_refrigerator')
|
||||
.itemInputs('tfg:hv_food_refrigerator')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.StainlessSteel, 8),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Steel, 7),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Electrum, 4),
|
||||
ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.Ash, 4)
|
||||
)
|
||||
.duration(GTMaterials.StainlessSteel.getMass() * 8)
|
||||
.category(GTRecipeCategories.ARC_FURNACE_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
//EV Refrigerator
|
||||
event.recipes.gtceu.macerator('tfg:macerator/recycling/ev_food_refrigerator')
|
||||
.itemInputs('tfg:ev_food_refrigerator')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Titanium, 8),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.StainlessSteel, 10),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Kanthal, 4),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Aluminium, 3)
|
||||
)
|
||||
.duration(GTMaterials.Titanium.getMass() * 8)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.arc_furnace('tfg:arc_furnace/recycling/ev_food_refrigerator')
|
||||
.itemInputs('tfg:ev_food_refrigerator')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Titanium, 8),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.StainlessSteel, 10),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Kanthal, 4),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Aluminium, 3)
|
||||
)
|
||||
.duration(GTMaterials.Titanium.getMass() * 8)
|
||||
.category(GTRecipeCategories.ARC_FURNACE_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
//LV Food Processor
|
||||
event.recipes.gtceu.macerator('tfg:macerator/recycling/lv_food_processor')
|
||||
.itemInputs('tfg:lv_food_processor')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Steel, 7),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Tin, 4),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Bronze, 2),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.WroughtIron, 2)
|
||||
)
|
||||
.duration(GTMaterials.Steel.getMass() * 7)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.arc_furnace('tfg:arc_furnace/recycling/lv_food_processor')
|
||||
.itemInputs('tfg:lv_food_processor')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Steel, 7),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Tin, 4),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Bronze, 2),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.WroughtIron, 2)
|
||||
)
|
||||
.duration(GTMaterials.Steel.getMass() * 7)
|
||||
.category(GTRecipeCategories.ARC_FURNACE_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
//MV Food Processor
|
||||
event.recipes.gtceu.macerator('tfg:macerator/recycling/mv_food_processor')
|
||||
.itemInputs('tfg:mv_food_processor')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Aluminium, 6),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Cupronickel, 6),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Copper, 3),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.SiliconeRubber, 3)
|
||||
)
|
||||
.duration(GTMaterials.Aluminium.getMass() * 6)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.arc_furnace('tfg:arc_furnace/recycling/mv_food_processor')
|
||||
.itemInputs('tfg:mv_food_processor')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Aluminium, 6),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Cupronickel, 6),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Copper, 3),
|
||||
ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.Ash, 3)
|
||||
)
|
||||
.duration(GTMaterials.Aluminium.getMass() * 6)
|
||||
.category(GTRecipeCategories.ARC_FURNACE_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
//HV Food Processor
|
||||
event.recipes.gtceu.macerator('tfg:macerator/recycling/hv_food_processor')
|
||||
.itemInputs('tfg:hv_food_processor')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.StainlessSteel, 7),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Electrum, 6),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Steel, 6),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.SiliconeRubber, 3)
|
||||
)
|
||||
.duration(GTMaterials.StainlessSteel.getMass() * 7)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.arc_furnace('tfg:arc_furnace/recycling/hv_food_processor')
|
||||
.itemInputs('tfg:hv_food_processor')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.StainlessSteel, 7),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Electrum, 6),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Steel, 6),
|
||||
ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.Ash, 3)
|
||||
)
|
||||
.duration(GTMaterials.StainlessSteel.getMass() * 7)
|
||||
.category(GTRecipeCategories.ARC_FURNACE_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
//EV Food Processor
|
||||
event.recipes.gtceu.macerator('tfg:macerator/recycling/ev_food_processor')
|
||||
.itemInputs('tfg:ev_food_processor')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Titanium, 9),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Kanthal, 6),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Aluminium, 4),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Steel, 4)
|
||||
)
|
||||
.duration(GTMaterials.Titanium.getMass() * 9)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.arc_furnace('tfg:arc_furnace/recycling/ev_food_processor')
|
||||
.itemInputs('tfg:ev_food_processor')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Titanium, 9),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Kanthal, 6),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Aluminium, 4),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Steel, 4)
|
||||
)
|
||||
.duration(GTMaterials.Titanium.getMass() * 9)
|
||||
.category(GTRecipeCategories.ARC_FURNACE_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
//LV Food Oven
|
||||
event.recipes.gtceu.macerator('tfg:macerator/recycling/lv_food_oven')
|
||||
.itemInputs('tfg:lv_food_oven')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Steel, 8),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Tin, 4),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Iron, 4),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Rubber, 7)
|
||||
)
|
||||
.duration(GTMaterials.Steel.getMass() * 8)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.arc_furnace('tfg:arc_furnace/recycling/lv_food_oven')
|
||||
.itemInputs('tfg:lv_food_oven')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Steel, 8),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Tin, 4),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Iron, 4),
|
||||
ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.Ash, 7)
|
||||
)
|
||||
.duration(GTMaterials.Steel.getMass() * 8)
|
||||
.category(GTRecipeCategories.ARC_FURNACE_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
//MV Food Oven
|
||||
event.recipes.gtceu.macerator('tfg:macerator/recycling/mv_food_oven')
|
||||
.itemInputs('tfg:mv_food_oven')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Aluminium, 9),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Cupronickel, 8),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Copper, 4),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Steel, 1)
|
||||
)
|
||||
.duration(GTMaterials.Aluminium.getMass() * 9)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.arc_furnace('tfg:arc_furnace/recycling/mv_food_oven')
|
||||
.itemInputs('tfg:mv_food_oven')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Aluminium, 9),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Cupronickel, 8),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Copper, 4),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Steel, 1)
|
||||
)
|
||||
.duration(GTMaterials.Aluminium.getMass() * 9)
|
||||
.category(GTRecipeCategories.ARC_FURNACE_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
//HV Food Oven
|
||||
event.recipes.gtceu.macerator('tfg:macerator/recycling/hv_food_oven')
|
||||
.itemInputs('tfg:hv_food_oven')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.StainlessSteel, 8),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Electrum, 6),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Kanthal, 2),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Silver, 3)
|
||||
)
|
||||
.duration(GTMaterials.StainlessSteel.getMass() * 8)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.arc_furnace('tfg:arc_furnace/recycling/hv_food_oven')
|
||||
.itemInputs('tfg:hv_food_oven')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.StainlessSteel, 8),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Electrum, 6),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Kanthal, 2),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Silver, 3)
|
||||
)
|
||||
.duration(GTMaterials.StainlessSteel.getMass() * 8)
|
||||
.category(GTRecipeCategories.ARC_FURNACE_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
//EV Food Oven
|
||||
event.recipes.gtceu.macerator('tfg:macerator/recycling/ev_food_oven')
|
||||
.itemInputs('tfg:ev_food_oven')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Titanium, 10),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Aluminium, 5),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Kanthal, 6),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Nichrome, 2)
|
||||
)
|
||||
.duration(GTMaterials.Titanium.getMass() * 10)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.arc_furnace('tfg:arc_furnace/recycling/ev_food_oven')
|
||||
.itemInputs('tfg:ev_food_oven')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Titanium, 10),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Aluminium, 5),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Kanthal, 6),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Nichrome, 2)
|
||||
)
|
||||
.duration(GTMaterials.Titanium.getMass() * 10)
|
||||
.category(GTRecipeCategories.ARC_FURNACE_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
//LV Food Oven
|
||||
event.recipes.gtceu.macerator('tfg:macerator/recycling/lv_aqueous_accumulator')
|
||||
.itemInputs('tfg:lv_aqueous_accumulator')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Steel, 4),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Bronze, 2),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Tin, 6),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Rubber, 2)
|
||||
)
|
||||
.duration(GTMaterials.Steel.getMass() * 4)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.arc_furnace('tfg:arc_furnace/recycling/lv_aqueous_accumulator')
|
||||
.itemInputs('tfg:lv_aqueous_accumulator')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Steel, 4),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Bronze, 2),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Tin, 6),
|
||||
ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.Ash, 2)
|
||||
)
|
||||
.duration(GTMaterials.Steel.getMass() * 4)
|
||||
.category(GTRecipeCategories.ARC_FURNACE_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
//MV Food Oven
|
||||
event.recipes.gtceu.macerator('tfg:macerator/recycling/mv_aqueous_accumulator')
|
||||
.itemInputs('tfg:mv_aqueous_accumulator')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Aluminium, 5),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Bronze, 6),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Steel, 2),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Cupronickel, 2)
|
||||
)
|
||||
.duration(GTMaterials.Aluminium.getMass() * 5)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.arc_furnace('tfg:arc_furnace/recycling/mv_aqueous_accumulator')
|
||||
.itemInputs('tfg:mv_aqueous_accumulator')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Aluminium, 5),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Bronze, 6),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Steel, 2),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Cupronickel, 2)
|
||||
)
|
||||
.duration(GTMaterials.Aluminium.getMass() * 5)
|
||||
.category(GTRecipeCategories.ARC_FURNACE_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
//HV Food Oven
|
||||
event.recipes.gtceu.macerator('tfg:macerator/recycling/hv_aqueous_accumulator')
|
||||
.itemInputs('tfg:hv_aqueous_accumulator')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.StainlessSteel, 6),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Electrum, 2),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Steel, 6),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Gold, 1)
|
||||
)
|
||||
.duration(GTMaterials.StainlessSteel.getMass() * 6)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.arc_furnace('tfg:arc_furnace/recycling/hv_aqueous_accumulator')
|
||||
.itemInputs('tfg:hv_aqueous_accumulator')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.StainlessSteel, 6),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Electrum, 2),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Steel, 6),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Gold, 1)
|
||||
)
|
||||
.duration(GTMaterials.StainlessSteel.getMass() * 6)
|
||||
.category(GTRecipeCategories.ARC_FURNACE_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
//EV Food Oven
|
||||
event.recipes.gtceu.macerator('tfg:macerator/recycling/ev_aqueous_accumulator')
|
||||
.itemInputs('tfg:ev_aqueous_accumulator')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Titanium, 6),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.StainlessSteel, 6),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Kanthal, 2),
|
||||
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Aluminium, 1)
|
||||
)
|
||||
.duration(GTMaterials.Titanium.getMass() * 6)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.arc_furnace('tfg:arc_furnace/recycling/ev_aqueous_accumulator')
|
||||
.itemInputs('tfg:ev_aqueous_accumulator')
|
||||
.itemOutputs(
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Titanium, 6),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.StainlessSteel, 6),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Kanthal, 2),
|
||||
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Aluminium, 1)
|
||||
)
|
||||
.duration(GTMaterials.Titanium.getMass() * 6)
|
||||
.category(GTRecipeCategories.ARC_FURNACE_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
}
|
||||
@@ -81,4 +81,24 @@ const registerTFGMaterials = (event) => {
|
||||
.gas()
|
||||
.components('5x nitrogen', '3x oxygen', '2x helium_3')
|
||||
.color(0xa3ed95)
|
||||
|
||||
event.create('tfg:chlorodifluoromethane')
|
||||
.gas()
|
||||
.components('1x carbon', '1x hydrogen', '1x chlorine', '2x fluorine')
|
||||
.color(0x66ffa3)
|
||||
|
||||
event.create('tfg:acetylene')
|
||||
.gas()
|
||||
.components('2x carbon', '2x hydrogen')
|
||||
.color(0x1a1212)
|
||||
|
||||
event.create('tfg:isobutane')
|
||||
.gas()
|
||||
.components('4x carbon', '10x hydrogen')
|
||||
.color(0x7d0f00)
|
||||
|
||||
event.create('tfg:1_1_1_2_tetrafluoroethane')
|
||||
.gas()
|
||||
.components('2x carbon', '2x hydrogen', '4x fluorine')
|
||||
.color(0x46702e)
|
||||
}
|
||||
|
||||