Zefram
2014-07-15 dd65a68ce9f494717faffc98c45814f9a9d67fa4
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")
dd65a6 23 dofile(path.."/centrifuge.lua")
5d470c 24
d55ecc 25 dofile(path.."/tool_workshop.lua")
N 26
5d470c 27 -- The power radiator supplies appliances with inductive coupled power:
S 28 -- Lighting and associated textures is taken directly from VanessaE's homedecor and made electric.
5cf765 29 -- This is currently useless, slow, and mostly copied
S 30 --dofile(path.."/power_radiator.lua")
31 --dofile(path.."/lighting.lua")
5d470c 32