Фикс: не переплавляются мелкие куски металла

This commit is contained in:
SpeeeDCraft 2023-11-17 10:12:45 +07:00
parent 907fee0524
commit 6e899486b3

View file

@ -52,6 +52,141 @@ const registerTFCRecipes = (event) => {
registerAutoTFCCastingRecipes(event)
registerAutoTFCAnvilRecipes(event)
// Small Copper -> Copper
addHeatingItemToFluidRecipe(event,
'tfc:recipes/heating/tfg/small_copper',
{ item: "tfc:ore/small_native_copper" },
{ fluid: "gtceu:copper", amount: 12 },
1080,
false
)
// Small Gold -> Gold
addHeatingItemToFluidRecipe(event,
'tfc:recipes/heating/tfg/small_gold',
{ item: "tfc:ore/small_native_gold" },
{ fluid: "gtceu:gold", amount: 12 },
1060,
false
)
// Small Hematite -> Iron
addHeatingItemToFluidRecipe(event,
'tfc:recipes/heating/tfg/small_hematite',
{ item: "tfc:ore/small_hematite" },
{ fluid: "gtceu:iron", amount: 12 },
1535,
false
)
// Small Silver -> Silver
addHeatingItemToFluidRecipe(event,
'tfc:recipes/heating/tfg/small_silver',
{ item: "tfc:ore/small_native_silver" },
{ fluid: "gtceu:silver", amount: 12 },
961,
false
)
// Small Cassiterite -> Tin
addHeatingItemToFluidRecipe(event,
'tfc:recipes/heating/tfg/small_cassiterite',
{ item: "tfc:ore/small_cassiterite" },
{ fluid: "gtceu:tin", amount: 12 },
230,
false
)
// Small Bismuth -> Bismuth
addHeatingItemToFluidRecipe(event,
'tfc:recipes/heating/tfg/small_bismuth',
{ item: "tfc:ore/small_bismuthinite" },
{ fluid: "gtceu:bismuth", amount: 12 },
270,
false
)
// Small Nickel -> Nickel
addHeatingItemToFluidRecipe(event,
'tfc:recipes/heating/tfg/small_garnierite',
{ item: "tfc:ore/small_garnierite" },
{ fluid: "gtceu:nickel", amount: 12 },
1453,
false
)
// Small Malachite -> Copper
addHeatingItemToFluidRecipe(event,
'tfc:recipes/heating/tfg/small_malachite',
{ item: "tfc:ore/small_malachite" },
{ fluid: "gtceu:copper", amount: 12 },
1453,
false
)
// Small Magnetite -> Iron
addHeatingItemToFluidRecipe(event,
'tfc:recipes/heating/tfg/small_magnetite',
{ item: "tfc:ore/small_magnetite" },
{ fluid: "gtceu:iron", amount: 12 },
1535,
false
)
// Small Limonite -> Iron
addHeatingItemToFluidRecipe(event,
'tfc:recipes/heating/tfg/small_limonite',
{ item: "tfc:ore/small_limonite" },
{ fluid: "gtceu:iron", amount: 12 },
1535,
false
)
// Small Sphalerite -> Iron
addHeatingItemToFluidRecipe(event,
'tfc:recipes/heating/tfg/small_sphalerite',
{ item: "tfc:ore/small_sphalerite" },
{ fluid: "gtceu:zinc", amount: 12 },
420,
false
)
// Small Tetrahedrite -> Iron
addHeatingItemToFluidRecipe(event,
'tfc:recipes/heating/tfg/small_tetrahedrite',
{ item: "tfc:ore/small_tetrahedrite" },
{ fluid: "gtceu:copper", amount: 12 },
1080,
false
)
// Gold Bell
addCastingRecipe(event,
'tfc:recipes/casting/tfg/gold_bell',
{ item: "tfc:ceramic/bell_mold"},
{ ingredient: "gtceu:gold", amount: 144 },
{ item: "minecraft:bell" },
1
)
// Brass Bell
addCastingRecipe(event,
'tfc:recipes/casting/tfg/brass_bell',
{ item: "tfc:ceramic/bell_mold"},
{ ingredient: "gtceu:brass", amount: 144 },
{ item: "tfc:brass_bell" },
1
)
// Bronze Bell
addCastingRecipe(event,
'tfc:recipes/casting/tfg/bronze_bell',
{ item: "tfc:ceramic/bell_mold"},
{ ingredient: "gtceu:bronze", amount: 144 },
{ item: "tfc:bronze_bell" },
1
)
// Black Steel Ingot
addAnvilRecipe(event,
'tfc:recipes/anvil/tfg/high_carbon_black_steel',
@ -178,32 +313,7 @@ const registerTFCRecipes = (event) => {
[ "draw_any", "punch_last", "punch_not_last" ]
)
// Gold Bell
addCastingRecipe(event,
'tfc:recipes/casting/tfg/gold_bell',
{ item: "tfc:ceramic/bell_mold"},
{ ingredient: "gtceu:gold", amount: 144 },
{ item: "minecraft:bell" },
1
)
// Brass Bell
addCastingRecipe(event,
'tfc:recipes/casting/tfg/brass_bell',
{ item: "tfc:ceramic/bell_mold"},
{ ingredient: "gtceu:brass", amount: 144 },
{ item: "tfc:brass_bell" },
1
)
// Bronze Bell
addCastingRecipe(event,
'tfc:recipes/casting/tfg/bronze_bell',
{ item: "tfc:ceramic/bell_mold"},
{ ingredient: "gtceu:bronze", amount: 144 },
{ item: "tfc:bronze_bell" },
1
)
// Fire Charge
event.remove({ id: 'tfc:crafting/vanilla/fire_charge' })