The centrifuge, currently only existing in an MV variety, is a machine that separates a mixed substance into its constituents. Currently the main use is to reverse alloying of metals. The alloy separation recipes intentionally only operate on the dust form of metals, making this less convenient than the original alloying. It also only recovers metal constituents, not the carbon that went into cast iron or carbon steel. This change incidentally generalises the technic recipe and machine infrastructure to handle recipes with multiple outputs. As unified_inventory's craft guide can't yet handle that, these recipes are not registered there.
31 lines
734 B
Lua
31 lines
734 B
Lua
local path = technic.modpath.."/machines/register"
|
|
|
|
dofile(path.."/common.lua")
|
|
|
|
-- Wiring stuff
|
|
dofile(path.."/cables.lua")
|
|
dofile(path.."/battery_box.lua")
|
|
|
|
-- Generators
|
|
dofile(path.."/solar_array.lua")
|
|
dofile(path.."/generator.lua")
|
|
|
|
-- API for machines
|
|
dofile(path.."/recipes.lua")
|
|
dofile(path.."/machine_base.lua")
|
|
|
|
-- Recipes
|
|
dofile(path.."/alloy_recipes.lua")
|
|
dofile(path.."/grinder_recipes.lua")
|
|
dofile(path.."/extractor_recipes.lua")
|
|
dofile(path.."/compressor_recipes.lua")
|
|
dofile(path.."/centrifuge_recipes.lua")
|
|
|
|
-- Machines
|
|
dofile(path.."/alloy_furnace.lua")
|
|
dofile(path.."/electric_furnace.lua")
|
|
dofile(path.."/grinder.lua")
|
|
dofile(path.."/extractor.lua")
|
|
dofile(path.."/compressor.lua")
|
|
dofile(path.."/centrifuge.lua")
|