Bob's Plates has a setting that allows cheaper Steel Plate (2 Iron=1 Steel, instead of 5)
Can you add compatibility for that?
The setting is "bobmods-plates-cheapersteel"
Relevant Code:
-- Reduce cost of Steel
if settings.startup["bobmods-plates-cheapersteel"].value == true then
data.raw.recipe["steel-plate"].normal.energy_required = 7
data.raw.recipe["steel-plate"].normal.ingredients = {{"iron-plate", 2}}
data.raw.recipe["steel-plate"].expensive.energy_required = 14
data.raw.recipe["steel-plate"].expensive.ingredients = {{"iron-plate", 4}}
if data.raw.recipe["metallurgy-steel-plate"] then
if data.raw.fluid["molten-carbonated-iron"] then
data.raw.recipe["metallurgy-steel-plate"].energy_required = 0.4
data.raw.recipe["metallurgy-steel-plate"].ingredients = {{type="fluid", name="molten-carbonated-iron", amount=15},{type="fluid", name="water", amount=20}}
end
end
end