Tim
2015-01-18 00f61dfb81100094b64de06ca4e1ef73ef8bcd47
commit | author | age
5d470c 1
ee0765 2 technic.register_tier("LV", "Low Voltage")
S 3
4 local path = technic.modpath.."/machines/LV"
5
d55ecc 6 -- Wiring stuff
ee0765 7 dofile(path.."/cables.lua")
5d470c 8 dofile(path.."/battery_box.lua")
d55ecc 9
N 10 -- Generators
5d470c 11 dofile(path.."/solar_panel.lua")
S 12 dofile(path.."/solar_array.lua")
13 dofile(path.."/geothermal.lua")
14 dofile(path.."/water_mill.lua")
15 dofile(path.."/generator.lua")
d55ecc 16
N 17 -- Coal-powered machines (TODO -> move to somewhere else?)
18 dofile(path.."/coal_alloy_furnace.lua")
19 dofile(path.."/coal_furnace.lua")
20
21 -- Machines
22 dofile(path.."/alloy_furnace.lua")
5d470c 23 dofile(path.."/electric_furnace.lua")
S 24 dofile(path.."/grinder.lua")
d55ecc 25 dofile(path.."/extractor.lua")
N 26 dofile(path.."/compressor.lua")
27
28 dofile(path.."/music_player.lua")
29
5d470c 30 dofile(path.."/cnc.lua")
S 31 dofile(path.."/cnc_api.lua")
32 dofile(path.."/cnc_nodes.lua")
d55ecc 33