From 2cc2516d25772a4daa8eb63d61c871144794391b Mon Sep 17 00:00:00 2001 From: Pyritie Date: Thu, 24 Apr 2025 23:33:12 +0100 Subject: [PATCH] added an early way to get gregtech medicine, and added some more plants for medicines --- kubejs/server_scripts/tfg/recipes.medicine.js | 8 ++++++++ kubejs/server_scripts/tfg/tags.js | 13 ++++++++++--- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/kubejs/server_scripts/tfg/recipes.medicine.js b/kubejs/server_scripts/tfg/recipes.medicine.js index d30597abe..f2bae6045 100644 --- a/kubejs/server_scripts/tfg/recipes.medicine.js +++ b/kubejs/server_scripts/tfg/recipes.medicine.js @@ -546,4 +546,12 @@ function registerTFGMedicineRecipes(event) { //#endregion + //#region Paracetamol + + event.recipes.firmalife.mixing_bowl() + .ingredients(['tfg:regeneration_pill', 'tfg:weakness_pill', 'tfg:antipoison_pill', 'tfg:slowness_pill'], Fluid.of('tfc:vinegar', 250)) + .outputItem('4x gtceu:paracetamol_pill') + .id(`tfg:mixing_bowl/paracetamol`) + + //#endregion } \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/tags.js b/kubejs/server_scripts/tfg/tags.js index 1101bef09..78a2217bc 100644 --- a/kubejs/server_scripts/tfg/tags.js +++ b/kubejs/server_scripts/tfg/tags.js @@ -56,23 +56,29 @@ const registerTFGItemTags = (event) => { event.add('tfg:speed_ingredients', 'firmalife:raw_honey') event.add('tfg:slowness_ingredients', 'tfc:plant/marigold') + event.add('tfg:slowness_ingredients', 'tfc:plant/snapdragon_red') + event.add('tfg:slowness_ingredients', 'tfc:plant/snapdragon_white') + event.add('tfg:slowness_ingredients', 'tfc:plant/snapdragon_yellow') event.add('tfg:weakness_ingredients', 'tfc:plant/laminaria') + event.add('tfg:weakness_ingredients', 'tfc:plant/sea_palm') + event.add('tfg:weakness_ingredients', 'tfc:plant/sea_lavender') - event.add('tfg:haste_ingredients', 'minecraft:sugar') - event.add('tfg:haste_ingredients', 'afc:birch_sugar') - event.add('tfg:haste_ingredients', 'afc:maple_sugar') + event.add('tfg:haste_ingredients', '#tfg:sugars') event.add('tfg:water_breathing_ingredients', 'tfc:powder/saltpeter') event.add('tfg:water_breathing_ingredients', 'tfc:powder/charcoal') event.add('tfg:night_vision_ingredients', 'tfc:food/carrot') + event.add('tfg:night_vision_ingredients', 'beneath:gleamflower') event.add('tfg:invisibility_ingredients', 'tfc:plant/calendula') + event.add('tfg:absorption_ingredients', 'beneath:burpflower') event.add('tfg:fire_resistance_ingredients', 'tfc:plant/cattail') event.add('tfg:fire_resistance_ingredients', 'tfc:plant/meads_milkweed') event.add('tfg:fire_resistance_ingredients', 'firmalife:plant/bay_laurel') + event.add('tfg:fire_resistance_ingredients', 'beneath:ghost_pepper') event.add('tfg:resistance_ingredients', 'tfc:plant/hibiscus') event.add('tfg:resistance_ingredients', 'gtceu:calcium_dust') @@ -81,6 +87,7 @@ const registerTFGItemTags = (event) => { event.add('tfg:instant_health_ingredients', 'tfc:plant/artists_conk') event.add('tfg:absorption_ingredients', 'tfc:plant/poppy') + event.add('tfg:invisibility_ingredients', 'tfc:plant/snapdragon_pink') event.add('tfg:luck_ingredients', 'tfc:plant/goldenrod') event.add('tfg:luck_ingredients', 'tfc:plant/heather')