Zefram
2014-07-06 68ea0acbd0cb6dc61b849efab4d6207bdf515853
commit | author | age
5d470c 1
ee0765 2 technic.register_tier("MV", "Medium Voltage")
S 3
4 local path = technic.modpath.."/machines/MV"
5
d55ecc 6 -- Wiring stuff
ee0765 7 dofile(path.."/cables.lua")
d55ecc 8 dofile(path.."/battery_box.lua")
N 9
10 -- Generators
363f03 11 if technic.config:get_bool("enable_wind_mill") then
S 12     dofile(path.."/wind_mill.lua")
13 end
704925 14 dofile(path.."/generator.lua")
d55ecc 15 dofile(path.."/solar_array.lua")
N 16
17 -- Machines
18 dofile(path.."/alloy_furnace.lua")
19 dofile(path.."/electric_furnace.lua")
20 dofile(path.."/grinder.lua")
95fcc4 21 dofile(path.."/extractor.lua")
CK 22 dofile(path.."/compressor.lua")
5d470c 23
d55ecc 24 dofile(path.."/tool_workshop.lua")
N 25
5d470c 26 -- The power radiator supplies appliances with inductive coupled power:
S 27 -- Lighting and associated textures is taken directly from VanessaE's homedecor and made electric.
5cf765 28 -- This is currently useless, slow, and mostly copied
S 29 --dofile(path.."/power_radiator.lua")
30 --dofile(path.."/lighting.lua")
5d470c 31