bztitanium2/bztitanium2/titanium-recipe-final-se.lua
Simon Brodtmann 18414e28e0 Rename mod
2025-10-21 14:26:42 +02:00

19 lines
740 B
Lua

-- Additions for Space Exploration mod.
local util = require("data-util");
if data.raw.recipe["se-space-pipe"] then
-- core mining balancing
util.add_to_product("se-core-fragment-omni", "titanium-ore", -2)
-- deadlock loaders for SE -- mods["deadlock-beltboxes-loaders"]
if mods["Deadlock-SE-bridge"] then
if data.raw.recipe["se-space-transport-belt-loader"] then
util.replace_ingredient("se-space-transport-belt-loader", "steel-plate", util.me.titanium_plate)
end
if data.raw.recipe["se-space-transport-belt-beltbox"] then
util.replace_ingredient("se-space-transport-belt-beltbox", "steel-plate", util.me.titanium_plate)
end
end
util.remove_ingredient("low-density-structure", "steel-plate")
end