mirror of
https://github.com/minetest-mods/technic.git
synced 2025-03-23 21:00:28 +01:00
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.
33 lines
881 B
Lua
33 lines
881 B
Lua
|
|
technic.register_tier("MV", "Medium Voltage")
|
|
|
|
local path = technic.modpath.."/machines/MV"
|
|
|
|
-- Wiring stuff
|
|
dofile(path.."/cables.lua")
|
|
dofile(path.."/battery_box.lua")
|
|
|
|
-- Generators
|
|
if technic.config:get_bool("enable_wind_mill") then
|
|
dofile(path.."/wind_mill.lua")
|
|
end
|
|
dofile(path.."/generator.lua")
|
|
dofile(path.."/solar_array.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")
|
|
|
|
dofile(path.."/tool_workshop.lua")
|
|
|
|
-- The power radiator supplies appliances with inductive coupled power:
|
|
-- Lighting and associated textures is taken directly from VanessaE's homedecor and made electric.
|
|
-- This is currently useless, slow, and mostly copied
|
|
--dofile(path.."/power_radiator.lua")
|
|
--dofile(path.."/lighting.lua")
|
|
|