23 lines
459 B
Lua
Raw Normal View History

2013-07-17 15:34:35 -04:00
technic.register_tier("HV", "High Voltage")
local path = technic.modpath.."/machines/HV"
-- Wiring stuff
2013-07-17 15:34:35 -04:00
dofile(path.."/cables.lua")
dofile(path.."/battery_box.lua")
-- Generators
2013-07-17 15:34:35 -04:00
dofile(path.."/solar_array.lua")
dofile(path.."/nuclear_reactor.lua")
dofile(path.."/generator.lua")
2013-07-17 15:34:35 -04:00
-- Machines
dofile(path.."/quarry.lua")
dofile(path.."/forcefield.lua")
2018-02-19 02:58:47 +03:00
dofile(path.."/electric_furnace.lua")
2018-03-07 15:37:11 +03:00
dofile(path.."/grinder.lua")
dofile(path.."/compressor.lua")
2018-02-19 02:58:47 +03:00