neuralgia/kubejs/server_scripts/tfg/recipes.js
Redeix 900e1de8e9
The big green PR (#2694)
* blocks

* more textures

* more textures more textures

* blocks

* more textures

* more textures more textures

* blocks

* more textures

* more textures more textures

* blocks

* more textures

* more textures more textures

* firmalife gh stuff

* chloroplasts and brick regex

* gh recipes

* pisciculture fishery

* I am going insane

* more casings = more gooder

* rotten voiding cover

* greenhouse glory

* Is this it chat

* not needed

Signed-off-by: Redeix <redeix.m@gmail.com>

* missed in conflicts

Signed-off-by: Redeix <redeix.m@gmail.com>

* consumerism

* re-add tag import

* remove unused object map

* id normalizer function

---------

Signed-off-by: Redeix <redeix.m@gmail.com>
2026-01-10 19:30:46 -06:00

89 lines
2.5 KiB
JavaScript

"use strict";
/**
*
* @param {Internal.RecipesEventJS} event
*/
const registerTFGRecipes = (event) => {
registerTFGMoldRecipes(event)
registerTFGMiscellaneousRecipes(event)
registerTFGTemporaryRecipes(event)
registerTFGFoodRecipes(event)
registerTFGRefrigeratorRecipes(event)
registerTFGMealBagRecipes(event)
registerTFGBiomassRecipes(event)
// Greenhouse needs to register before pisciculture.
registerTFGGreenhouseRecipes(event)
registerTFGPiscicultureRecipes(event)
// TFC stone types
registerTFCStoneRecipes(event)
// Non-TFC stone types
registerTFGRockRecipes(event)
registerTFGCollapseRecipes(event)
registerTFGStoneDustRecipes(event)
registerTFGConcreteRecipes(event)
registerTFGAlabasterRecipes(event)
registerTFGDirtRecipes(event)
registerTFGSandRecipes(event)
registerTFGPapermakingRecipes(event)
registerTFGMedicineRecipes(event)
registerTFGFishingNetsRecipes(event)
registerTFGSupportRecipes(event)
registerTFGVaseRecipes(event)
registerTFGIceRecipes(event)
registerTFGBasketRecipes(event)
registerTFGArrowRecipes(event)
registerTFGCompostRecipes(event)
registerTFGClothRecipes(event)
registerTFGChipboardRecipes(event)
registerTFGWaxRecipes(event)
registerTFGRubberRecipes(event)
registerTFGWoodRecipes(event)
registerTFGKnappingRecipes(event)
registerTFGLeatherRecipes(event)
registerTFGClayRecipes(event)
registerTFGEquipmentRecipes(event)
registerTFGDyeRecipes(event)
registerTFGCasingRecipes(event)
registerTFGEnderPearlRecipes(event)
registerTFGMultiblockRecipes(event)
registerTFGSteamBloomeryRecipes(event)
registerTFGElectronicComponentsRecipes(event)
registerTFGEarlyGasRecipes(event)
registerTFGBoilerRecipes(event)
registerTFGBiodieselRecipes(event)
registerTFGNuclearRecipes(event)
registerTFGSMRAdditives(event)
registerTFGNuclearComponentsRecipes(event)
registerTFGSolarRecipes(event)
registerTFGCoalRecipes(event)
registerTFGZirconiumRecipes(event)
registerTFGBromineRecipes(event)
registerTFGTungstenRecipes(event)
registerTFGAlloyingRecipes(event)
registerTFGQuartzRecipes(event)
registerTFGSpaceRecipes(event)
registerTFGRailgunRecipes(event)
registerTFGRocketRecipes(event)
registerTFGSpaceSuitRecipes(event)
registerTFGInsulationRecipes(event)
registerTFGMoonRecipes(event)
registerTFGMoonPlantRecipes(event)
registerTFGMoonRegolithRecipes(event)
registerTFGMarsRecipes(event)
registerTFGMarsIodineRecipes(event)
registerTFGMarsOstrumRecipes(event)
registerTFGVenusRecipes(event)
registerTFGBiochemRecipes(event)
}