neuralgia/kubejs/server_scripts/tfg/recipes.js
TomPlop 72ae40a2b4
Rework Early Game Fuel (#2309)
* Add materials and multiblock

* try to fix conflict

* Fix conflict

* Fix conflict

* Rework tungsten line (#5)

* fix materials

* Update Ostrum to core

* Fix conflict

* fix conflict

* Fix fucking conflict

* Upload more changes

* Add more things

* Introduce new gas fuel

* Add Anthracite

* Add Syngas early game and more modifications

* More fixes

* Add textures to fluid
2025-12-01 13:42:45 +00:00

27 lines
737 B
JavaScript

"use strict";
/**
*
* @param {Internal.RecipesEventJS} event
*/
const registerTFGRecipes = (event) => {
registerTFGPapermakingRecipes(event)
registerTFGRockRecipes(event)
registerTFGCollapseRecipes(event)
registerTFGEarlyPower(event)
registerTFGMoldRecipes(event)
registerTFGMedicineRecipes(event)
registerTFGMiscellaneousRecipes(event)
registerTFGSupportRecipes(event)
registerTFGFishingNetsRecipes(event)
registerTFGConvertingRecipes(event)
registerTFGFoodRecipes(event)
registerTFGSpaceRecipes(event)
registerTFGStoneDustRecipes(event)
registerTFGNuclearRecipes(event)
registerTFGNuclearComponentsRecipes(event)
registerTFGNOstrumRecipes(event)
registerTFGBiochemRecipes(event)
registerTFGSpaceOres(event)
}