* require black steel plates before the forge hammer, add some blue steel things post-deployer that require a colored steel anvil, start refractory clay dust * first draft of bakelite, new phenolic boards, new cupro coils * add another page to the medicine quest * cl * backup of lv quests * quest stuff and some recipe tweaks * tweak --------- Co-authored-by: Redeix <redeix.m@gmail.com>
93 lines
2.6 KiB
JavaScript
93 lines
2.6 KiB
JavaScript
"use strict";
|
|
|
|
/**
|
|
*
|
|
* @param {Internal.RecipesEventJS} event
|
|
*/
|
|
const registerTFGRecipes = (event) => {
|
|
|
|
registerTFGMaterialRecipes(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)
|
|
registerTFGArtisanTableRecipes(event)
|
|
|
|
registerTFGCasingRecipes(event)
|
|
registerTFGEnderPearlRecipes(event)
|
|
registerTFGMultiblockRecipes(event)
|
|
registerTFGSteamBloomeryRecipes(event)
|
|
registerTFGElectronicComponentsRecipes(event)
|
|
registerTFGBakeliteRecipes(event)
|
|
registerTFGCoilRecipes(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)
|
|
}
|