_TarkFrench
2019-10-26 c41f6509cf2758945fbc0810ff9d7ab0fc077228
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")
2e7859 16 dofile(path.."/hydro_turbine.lua")
d55ecc 17
N 18 -- Machines
19 dofile(path.."/alloy_furnace.lua")
20 dofile(path.."/electric_furnace.lua")
21 dofile(path.."/grinder.lua")
95fcc4 22 dofile(path.."/extractor.lua")
CK 23 dofile(path.."/compressor.lua")
dd65a6 24 dofile(path.."/centrifuge.lua")
5d470c 25
d55ecc 26 dofile(path.."/tool_workshop.lua")
N 27
e1a71a 28 dofile(path.."/freezer.lua")
U 29
5d470c 30 -- The power radiator supplies appliances with inductive coupled power:
S 31 -- Lighting and associated textures is taken directly from VanessaE's homedecor and made electric.
5cf765 32 -- This is currently useless, slow, and mostly copied
S 33 --dofile(path.."/power_radiator.lua")
34 --dofile(path.."/lighting.lua")
5d470c 35