2016-04-01 20:02:19 -04:00
|
|
|
|
|
|
|
technic.register_tier("MV", "Medium Voltage")
|
|
|
|
|
|
|
|
local path = technic.modpath.."/machines/MV"
|
|
|
|
|
|
|
|
-- Wiring stuff
|
|
|
|
dofile(path.."/cables.lua")
|
|
|
|
dofile(path.."/battery_box.lua")
|
|
|
|
|
|
|
|
-- Generators
|
2018-08-26 09:15:59 -04:00
|
|
|
if technic.config:get_bool("enable_wind_mill") then
|
|
|
|
dofile(path.."/wind_mill.lua")
|
2016-04-01 20:02:19 -04:00
|
|
|
end
|
2018-08-26 09:15:59 -04:00
|
|
|
dofile(path.."/generator.lua")
|
|
|
|
dofile(path.."/solar_array.lua")
|
|
|
|
dofile(path.."/hydro_turbine.lua")
|
2016-04-01 20:02:19 -04:00
|
|
|
|
|
|
|
-- Machines
|
|
|
|
dofile(path.."/alloy_furnace.lua")
|
|
|
|
dofile(path.."/electric_furnace.lua")
|
|
|
|
dofile(path.."/grinder.lua")
|
|
|
|
dofile(path.."/extractor.lua")
|
|
|
|
dofile(path.."/compressor.lua")
|
|
|
|
dofile(path.."/centrifuge.lua")
|
|
|
|
|
|
|
|
dofile(path.."/tool_workshop.lua")
|
|
|
|
|
update biome_lib, digilines, hotbar, mesecons, pipeworks,
ropes, technic, unified inventory, unified dyes, vines, and worldedit
2018-12-17 02:20:30 -05:00
|
|
|
dofile(path.."/freezer.lua")
|
|
|
|
|
2016-04-01 20:02:19 -04:00
|
|
|
-- The power radiator supplies appliances with inductive coupled power:
|
|
|
|
-- Lighting and associated textures is taken directly from VanessaE's homedecor and made electric.
|
|
|
|
-- This is currently useless, slow, and mostly copied
|
|
|
|
--dofile(path.."/power_radiator.lua")
|
|
|
|
--dofile(path.."/lighting.lua")
|
|
|
|
|