the big furnace compatibility

This commit is contained in:
Brevven 2021-03-06 23:23:44 -08:00
parent 6fbd0e5a2b
commit f952c4b772
3 changed files with 33 additions and 2 deletions

View file

@ -71,7 +71,11 @@ data:extend(
{
type = "unlock-recipe",
recipe = util.titanium_plate
}
},
mods["TheBigFurnace"] and {
type = "unlock-recipe",
recipe = "big-titanium-plate",
} or nil,
},
unit =
{
@ -91,6 +95,28 @@ data:extend(
prerequisites = {"lubricant"},
order = "b-b"
},
mods["TheBigFurnace"] and {
type = "recipe",
name = "big-titanium-plate",
category = "big-smelting",
order = "d[titanium-plate]",
normal =
{
enabled = false,
energy_required = 8.75,
ingredients = {{"titanium-ore", 50}},
result = util.titanium_plate,
result_count = 10,
},
expensive =
{
enabled = false,
energy_required = 16,
ingredients = {{"titanium-ore", 100}},
result = util.titanium_plate,
result_count = 10,
}
} or nil,
}
)
end