* - 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>
22 lines
No EOL
590 B
JavaScript
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)
|
|
|
|
} |