25 lines
668 B
JavaScript
25 lines
668 B
JavaScript
"use strict";
|
|
|
|
/**
|
|
*
|
|
* @param {Internal.RecipesEventJS} event
|
|
*/
|
|
const registerTFGRecipes = (event) => {
|
|
|
|
registerTFGPapermakingRecipes(event)
|
|
registerTFGRockRecipes(event)
|
|
registerTFGCollapseRecipes(event)
|
|
registerTFGMoldRecipes(event)
|
|
registerTFGMedicineRecipes(event)
|
|
registerTFGMiscellaneousRecipes(event)
|
|
registerTFGSupportRecipes(event)
|
|
registerTFGFishingNetsRecipes(event)
|
|
registerTFGConvertingRecipes(event)
|
|
registerTFGFoodRecipes(event)
|
|
registerTFGSpaceRecipes(event)
|
|
registerTFGStoneDustRecipes(event)
|
|
registerTFGRecyclingRecipes(event)
|
|
registerTFGNuclearRecipes(event)
|
|
registerTFGBioreactorRecipes(event)
|
|
registerTFGSpaceOres(event)
|
|
}
|