neuralgia/kubejs/server_scripts/tfg/recipes.js
Redeix ac7e57387a
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>
2025-06-23 08:40:17 +01:00

22 lines
No EOL
590 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)
registerTFGSpaceRecipes(event)
registerTFGStoneDustRecipes(event)
registerTFGRecyclingRecipes(event)
}