technic/technic/machines/MV/init.lua

33 lines
881 B
Lua
Raw Normal View History

2013-07-11 18:19:09 +02:00
2013-07-17 21:34:35 +02:00
technic.register_tier("MV", "Medium Voltage")
local path = technic.modpath.."/machines/MV"
-- Wiring stuff
2013-07-17 21:34:35 +02:00
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")
2014-07-03 04:46:06 +02:00
dofile(path.."/extractor.lua")
dofile(path.."/compressor.lua")
dofile(path.."/centrifuge.lua")
2013-07-11 18:19:09 +02:00
dofile(path.."/tool_workshop.lua")
2013-07-11 18:19:09 +02:00
-- The power radiator supplies appliances with inductive coupled power:
-- Lighting and associated textures is taken directly from VanessaE's homedecor and made electric.
2013-12-17 19:56:37 +01:00
-- This is currently useless, slow, and mostly copied
--dofile(path.."/power_radiator.lua")
--dofile(path.."/lighting.lua")
2013-07-11 18:19:09 +02:00