mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-15 23:10:41 +01:00
28 lines
624 B
Lua
28 lines
624 B
Lua
|
|
technic.register_tier("LV", "Low Voltage")
|
|
|
|
local path = technic.modpath.."/machines/LV"
|
|
|
|
-- Wiring stuff
|
|
dofile(path.."/cables.lua")
|
|
dofile(path.."/battery_box.lua")
|
|
|
|
-- Generators
|
|
dofile(path.."/solar_panel.lua")
|
|
dofile(path.."/solar_array.lua")
|
|
dofile(path.."/geothermal.lua")
|
|
dofile(path.."/water_mill.lua")
|
|
dofile(path.."/generator.lua")
|
|
|
|
-- 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.."/music_player.lua")
|
|
-- NEW LV LAMPS
|
|
dofile(path.."/led.lua")
|
|
dofile(path.."/lamp.lua")
|