35 lines
1.3 KiB
Lua
35 lines
1.3 KiB
Lua
-- Additions for Space Exploration mod.
|
|
local util = require("__bztitanium__.data-util");
|
|
|
|
if data.raw.recipe["se-space-pipe"] then
|
|
-- Space Exploration space stuff
|
|
util.steel_to_titanium("se-space-pipe")
|
|
util.steel_to_titanium("se-space-transport-belt")
|
|
util.steel_to_titanium("se-space-underground-belt")
|
|
util.steel_to_titanium("se-space-splitter")
|
|
util.steel_to_titanium("se-space-rail")
|
|
util.add_titanium_ingredient(1, "se-space-platform-scaffold")
|
|
|
|
-- Space Exploration alternative LDS
|
|
util.steel_to_titanium("se-low-density-structure-beryllium")
|
|
|
|
-- Space Exploration buildings
|
|
util.add_titanium_ingredient(20, "se-condenser-turbine")
|
|
|
|
-- A couple more deeper tech thematic items to use titanium in.
|
|
util.add_titanium_ingredient(2, "se-lattice-pressure-vessel")
|
|
util.add_titanium_ingredient(2, "se-aeroframe-bulkhead")
|
|
|
|
-- Organization
|
|
data.raw.item["titanium-plate"].subgroup = "plates"
|
|
|
|
-- 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.steel_to_titanium("se-space-transport-belt-loader")
|
|
end
|
|
if data.raw.recipe["se-space-transport-belt-beltbox"] then
|
|
util.steel_to_titanium("se-space-transport-belt-beltbox")
|
|
end
|
|
end
|
|
end
|