* Change lv chem reactor quest to require any container with rubber instead of a rubber bucket Signed-off-by: ofoxsmith <77560533+ofoxsmith@users.noreply.github.com> * Add placeholder assets for food machines (copied from gtceu) * remove greenhouse definition from kubejs * change greenhouse recipe * Rework recipes file --------- Signed-off-by: ofoxsmith <77560533+ofoxsmith@users.noreply.github.com> Signed-off-by: Pyritie <pyritie@gmail.com> Co-authored-by: Pyritie <pyritie@gmail.com>
18 lines
No EOL
484 B
JavaScript
18 lines
No EOL
484 B
JavaScript
/**
|
|
*
|
|
* @param {Internal.RecipesEventJS} event
|
|
*/
|
|
const registerTFGRecipes = (event) => {
|
|
|
|
registerTFGPapermakingRecipes(event)
|
|
registerTFGRockRecipes(event)
|
|
registerTFGCollapseRecipes(event)
|
|
registerTFGMoldRecipes(event)
|
|
registerTFGTerrariumRecipes(event)
|
|
registerTFGMedicineRecipes(event)
|
|
registerTFGMiscellaneousRecipes(event)
|
|
registerTFGSupportRecipes(event)
|
|
registerTFGFishingNetsRecipes(event)
|
|
registerTFGConvertingRecipes(event)
|
|
registerTFGFoodRecipes(event)
|
|
} |