2013-07-17 15:34:35 -04:00
|
|
|
|
|
|
|
technic.register_tier("HV", "High Voltage")
|
|
|
|
|
|
|
|
local path = technic.modpath.."/machines/HV"
|
|
|
|
|
2014-07-03 15:57:39 +02:00
|
|
|
-- Wiring stuff
|
2013-07-17 15:34:35 -04:00
|
|
|
dofile(path.."/cables.lua")
|
|
|
|
dofile(path.."/battery_box.lua")
|
2014-07-03 15:57:39 +02:00
|
|
|
|
|
|
|
-- Generators
|
2013-07-17 15:34:35 -04:00
|
|
|
dofile(path.."/solar_array.lua")
|
|
|
|
dofile(path.."/nuclear_reactor.lua")
|
2013-07-23 14:43:14 +02:00
|
|
|
dofile(path.."/generator.lua")
|
2013-07-17 15:34:35 -04:00
|
|
|
|
2014-07-03 15:57:39 +02:00
|
|
|
-- Machines
|
|
|
|
dofile(path.."/quarry.lua")
|
|
|
|
dofile(path.."/forcefield.lua")
|
|
|
|
|