Mods Used: Space Age (v2.0.28),
Issue Description:
I’ve noticed an imbalance in the recipe for creating copper cables from molten copper using the casting-copper-cable recipe. When comparing this recipe to the standard recipe for copper cables and other casting recipes, it seems to produce disproportionate results.
Below are the details and comparisons:
1. Standard Recipe for Copper Cable (Screenshot Attached)
This is the typical recipe for creating copper cables using copper plates:From this, we can see that 1 copper plate produces 2 copper cables.{
type = "recipe",
name = "copper-cable",
enabled = false,
ingredients = {{type = "item", name = "copper-plate", amount = 1}},
results = {{type="item", name="copper-cable", amount=2}},
allow_productivity = true
}
2. Casting Copper Plate Recipe
The casting machine allows molten copper to be converted into copper plates as follows:Thus, 20 molten copper produces 2 copper plates, which aligns with the typical balance in Factorio recipes.{
type = "recipe",
name = "casting-copper",
category = "metallurgy",
subgroup = "vulcanus-processes",
order = "b[casting]-b[casting-copper]",
icon = "__space-age__/graphics/icons/casting-copper.png",
enabled = false,
ingredients =
{
{type = "fluid", name = "molten-copper", amount = 20, fluidbox_multiplier = 10},
},
energy_required = 3.2,
allow_decomposition = false,
results = {{type = "item", name = "copper-plate", amount = 2}},
allow_productivity = true
}
3. Casting Copper Cable Recipe
Here is the recipe for creating copper cables directly from molten copper using the casting machine:Here, 5 molten copper produces 2 copper cables, which appears unusually high compared to the molten copper → copper plate → copper cable chain.{
type = "recipe",
name = "casting-copper-cable",
category = "metallurgy",
subgroup = "vulcanus-processes",
order = "b[casting]-h[casting-copper-cable]",
icon = "__space-age__/graphics/icons/casting-copper-cable.png",
enabled = false,
ingredients =
{
{type = "fluid", name = "molten-copper", amount = 5, fluidbox_multiplier = 5},
},
energy_required = 1,
allow_decomposition = false,
results = {{type = "item", name = "copper-cable", amount = 2}},
allow_productivity = true
}
Expected Behavior:
If following the standard recipe balance:
• Based on the recipe for **molten copper → copper plate**, 20 molten copper produces 2 copper plates. This means 20 molten copper should equivalently produce 4 copper cables, which simplifies to **5 molten copper producing 1 copper cable**.
• However, in the current recipe, 5 molten copper produces 2 copper cables, which is twice the expected output.
Questions for the Community and Developers:
1. Is this recipe intentionally designed to provide a bonus for using casting machines for copper cables?
2. If this is a balancing bonus, could we get clarification on the rationale?
Additional Notes:
• I couldn’t find related discussions in the forum. If this has been addressed elsewhere, please share the link.
• While this could be an intentional design, the discrepancy might cause confusion for players optimizing production chains.
**Thank you for your time and any insights you can provide!**