* 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
27 lines
737 B
JavaScript
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)
|
|
}
|