neuralgia/kubejs/server_scripts/tfg/recipes.js
ofoxsmith f822289573
custom gregtech machines and logic to handle TFC recipes (#1160)
* Change lv chem reactor quest to require any container with rubber instead of a rubber bucket

Signed-off-by: ofoxsmith <77560533+ofoxsmith@users.noreply.github.com>

* Add placeholder assets for food machines (copied from gtceu)

* remove greenhouse definition from kubejs

* change greenhouse recipe

* Rework recipes file

---------

Signed-off-by: ofoxsmith <77560533+ofoxsmith@users.noreply.github.com>
Signed-off-by: Pyritie <pyritie@gmail.com>
Co-authored-by: Pyritie <pyritie@gmail.com>
2025-06-12 13:32:10 +01:00

18 lines
No EOL
484 B
JavaScript

/**
*
* @param {Internal.RecipesEventJS} event
*/
const registerTFGRecipes = (event) => {
registerTFGPapermakingRecipes(event)
registerTFGRockRecipes(event)
registerTFGCollapseRecipes(event)
registerTFGMoldRecipes(event)
registerTFGTerrariumRecipes(event)
registerTFGMedicineRecipes(event)
registerTFGMiscellaneousRecipes(event)
registerTFGSupportRecipes(event)
registerTFGFishingNetsRecipes(event)
registerTFGConvertingRecipes(event)
registerTFGFoodRecipes(event)
}