This commit is contained in:
Dmitry 2024-04-27 20:56:09 +07:00
commit c2d2ebeb24
3 changed files with 6 additions and 6 deletions

View file

@ -524,7 +524,7 @@
"30A6EDDF25A5E5F8"
]
description: [
"&aTungstensteel Coils&r raise the Heat Capacity to a scorching &d4,500K&r."
"&aRuthenium-tungsten-molybdenum (RTM) Alloy Coils&r raise the Heat Capacity to a scorching &d4,500K&r."
""
"This will be required in &1IV&r, but as always, you should still get this earlier for the &6Coil bonuses&r."
]
@ -538,7 +538,7 @@
item: "gtceu:rtm_alloy_coil_block"
type: "item"
}]
title: "Tungstensteel Coils"
title: "RTM Alloy Coils"
x: 9.0d
y: 2.25d
}

View file

@ -502,7 +502,7 @@ const registerTFCRecipes = (event) => {
// Болт -> Металл
event.recipes.tfc.heating(boltItem, tfcProperty.getMeltTemp())
.resultFluid(Fluid.of(outputMaterial.getFluid(), 36))
.resultFluid(Fluid.of(outputMaterial.getFluid(), 18))
.id(`tfc:heating/metal/${material.getName()}_bolt`)
// Стержень -> Болт
@ -518,7 +518,7 @@ const registerTFCRecipes = (event) => {
// Винт -> Металл
event.recipes.tfc.heating(screwItem, tfcProperty.getMeltTemp())
.resultFluid(Fluid.of(outputMaterial.getFluid(), 72))
.resultFluid(Fluid.of(outputMaterial.getFluid(), 16))
.id(`tfc:heating/metal/${material.getName()}_screw`)
// Стержень -> Винт
@ -533,7 +533,7 @@ const registerTFCRecipes = (event) => {
// Кольцо -> Металл
event.recipes.tfc.heating(ringItem, tfcProperty.getMeltTemp())
.resultFluid(Fluid.of(outputMaterial.getFluid(), 72))
.resultFluid(Fluid.of(outputMaterial.getFluid(), 36))
.id(`tfc:heating/metal/${material.getName()}_ring`)
// Стержень -> Кольцо

View file

@ -448,4 +448,4 @@ const registerTFCPlacedFeatures = (event) => {
event.add('tfc:in_biome/veins', 'tfg:vein/surface_sphalerite')
event.add('tfc:in_biome/veins', 'tfg:vein/surface_tetrahedrite')
event.add('tfc:in_biome/veins', 'tfg:geode')
}
}