From a4d8c8ba6d86d3704c64d39fe76f8de42666adc8 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Wed, 28 May 2025 22:29:57 +0100 Subject: [PATCH] fixes #1083 --- CHANGELOG.md | 3 ++- .../vintage_improvements/recipes.js | 25 +++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e56c9c45..6d9a12d32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,8 +19,9 @@ - Added some more medicinal plants. @Pyritie - Added lathe recipes to strip logs. @Pyritie - Iron flask now accepts any cloth, red steel flask now requires phantom silk. @Pyritie -- Make food jars and firmalife jars stacks by 16. (#1081) #Zeropol +- Make food jars and firmalife jars stack to 16. (#1081) @Zeropol - Fixed medicine not working with cheats disabled. (#1084) @Redeix +- Added recipes for strings to the coiling machine (#1083) @Pyritie ## [0.9.8] - 19.05.2025 ### Changes diff --git a/kubejs/server_scripts/vintage_improvements/recipes.js b/kubejs/server_scripts/vintage_improvements/recipes.js index bb74c3452..2aa7f2704 100644 --- a/kubejs/server_scripts/vintage_improvements/recipes.js +++ b/kubejs/server_scripts/vintage_improvements/recipes.js @@ -610,6 +610,31 @@ function registerVintageImprovementsRecipes(event) { }).id('tfg:vi/vacuumizing/vulcanized_latex_to_raw_rubber') // #endregion + + // #region Coiling + + event.custom({ + type: 'vintageimprovements:coiling', + ingredients: [{ item: 'tfc:wool' }], + results: [{ item: 'tfc:wool_yarn', count: 8 }], + processingTime: 100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER + }).id(`tfg:vi/coiling/wool_yarn`) + + event.custom({ + type: 'vintageimprovements:coiling', + ingredients: [{ item: 'minecraft:phantom_membrane' }], + results: [{ item: 'tfg:phantom_thread', count: 16 }], + processingTime: 100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER + }).id(`tfg:vi/coiling/phantom_thread`) + + event.custom({ + type: 'vintageimprovements:coiling', + ingredients: [ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Polycaprolactam, 1)], + results: [{ item: 'tfg:polycaprolactam_string', count: 32 }], + processingTime: 100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER + }).id(`tfg:vi/coiling/nylon_string`) + + // #endregion } function generateHammeringRecipe(event, material, blows, anvil) {