neuralgia/kubejs/server_scripts/tfcbetterbf/recipes.js
Pyritie f324e7e6da
New content for ULV + LV (#2873)
* require black steel plates before the forge hammer, add some blue steel things post-deployer that require a colored steel anvil, start refractory clay dust

* first draft of bakelite, new phenolic boards, new cupro coils

* add another page to the medicine quest

* cl

* backup of lv quests

* quest stuff and some recipe tweaks

* tweak

---------

Co-authored-by: Redeix <redeix.m@gmail.com>
2026-01-26 18:10:22 -06:00

27 lines
No EOL
923 B
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`)
TFGHelpers.registerMaterialInfo('tfcbetterbf:insulation', [GTMaterials.WroughtIron, 3])
event.recipes.tfc.heating('tfcbetterbf:insulated_fire_bricks', 1535)
.resultFluid(Fluid.of('gtceu:iron', 432))
.id(`tfcbetterbf:heating/insulated_fire_bricks`)
TFGHelpers.registerMaterialInfo('tfcbetterbf:insulated_fire_bricks', [GTMaterials.get('tfg:refractory_clay'), 5, GTMaterials.WroughtIron, 3])
event.recipes.gtceu.packer('tfcbetterbf:insulated_fire_bricks')
.itemInputs('tfcbetterbf:insulated_fire_bricks')
.itemOutputs('tfc:fire_bricks', '3x tfcbetterbf:insulation')
.duration(20)
.EUt(2)
}