* everything should be fine * Balance early power (#6) * balance update * Add textures * last balance tweaks * more balance * Fix conflicts * Balance early power (#8) * balance update * Add textures * last balance tweaks * Oupsi * more fixes * add changed quests * push latest balance * fix tallow * add btx * Update quests * Oups * Adding some nuclear stuffs so I can merge my branches * Isotopic solvent stuff (#10) * push * fix iconset issue * adding all the textures change * add more stuffs * Push recipes * new stuffs * add stuffs * more changes * add textures and some recipes * tons of change * fix texture * add textures and other stuffs * more recipes * add recycling for fission rods * more recipes * fix fluid textures * comment out FLiBe again and balance rods * fix fluids * some latest fix * fix more texture * more recipe changes * more recipes * some last minute balance changes * add quests * fix conflict * more fixes * fix components * var to const --------- Co-authored-by: Spicy Noodles <93035068+SpicyNoodle5@users.noreply.github.com>
94 lines
2.6 KiB
JavaScript
94 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)
|
|
registerTFGPowerGenBalance(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)
|
|
}
|