This commit is contained in:
Pyritie 2025-05-28 22:29:57 +01:00
parent d521b0e6d4
commit a4d8c8ba6d
2 changed files with 27 additions and 1 deletions

View file

@ -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

View file

@ -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) {