* gt7 removed credits/coins * port gregtech additions to java * add eslint locally * add style linting * switch target ECMA standard * run linter * clean up a bunch of linter errors * remove outdated greate API calls * forgot about the TFC multi compat issue * reverted greate recipe removals * some more linting stuff * fix some issues with greenhouse recipes * fix up some material stuff * fix recipe types * - Fixed single block machine rendering (#1465) * minor fixes and changes --------- Signed-off-by: Pyritie <pyritie@gmail.com> Co-authored-by: Pyritie <pyritie@gmail.com> Co-authored-by: Redeix <59435925+Redeix@users.noreply.github.com>
31 lines
No EOL
1.2 KiB
JavaScript
31 lines
No EOL
1.2 KiB
JavaScript
"use strict";
|
|
|
|
/**
|
|
*
|
|
* @param {Internal.RecipesEventJS} event
|
|
*/
|
|
const registerTFCBetterBFRecipes = (event) => {
|
|
event.remove("tfcbetterbf:heating/metal/insulation")
|
|
|
|
event.recipes.tfc.heating('tfcbetterbf:insulation', 1535)
|
|
.resultFluid(Fluid.of('gtceu:iron', 432))
|
|
.id(`tfcbetterbf:heating/insulation`)
|
|
|
|
event.recipes.tfc.heating('tfcbetterbf:insulated_fire_bricks', 1535)
|
|
.resultFluid(Fluid.of('gtceu:iron', 432))
|
|
.id(`tfcbetterbf:heating/insulated_fire_bricks`)
|
|
|
|
event.recipes.gtceu.macerator('tfcbetterbf:insulated_fire_bricks')
|
|
.itemInputs('tfcbetterbf:insulated_fire_bricks')
|
|
.itemOutputs(ChemicalHelper.get(TagPrefix.dust, GTMaterials.WroughtIron, 3))
|
|
.duration(GTMaterials.WroughtIron.getMass() * 3)
|
|
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
|
.EUt(GTValues.VA[GTValues.ULV])
|
|
|
|
event.recipes.gtceu.arc_furnace('tfcbetterbf:insulated_fire_bricks')
|
|
.itemInputs('tfcbetterbf:insulated_fire_bricks')
|
|
.itemOutputs(ChemicalHelper.get(TagPrefix.ingot, GTMaterials.WroughtIron, 3))
|
|
.duration(GTMaterials.Steel.getMass() * 3)
|
|
.category(GTRecipeCategories.ARC_FURNACE_RECYCLING)
|
|
.EUt(GTValues.VA[GTValues.LV])
|
|
} |