commit | author | age
|
5d470c
|
1 |
|
ee0765
|
2 |
technic.register_tier("MV", "Medium Voltage") |
S |
3 |
|
|
4 |
local path = technic.modpath.."/machines/MV" |
|
5 |
|
5d470c
|
6 |
dofile(path.."/alloy_furnace.lua") |
ee0765
|
7 |
dofile(path.."/battery_box.lua") |
S |
8 |
dofile(path.."/cables.lua") |
|
9 |
dofile(path.."/electric_furnace.lua") |
d37cf7
|
10 |
dofile(path.."/grinder.lua") |
ee0765
|
11 |
dofile(path.."/solar_array.lua") |
S |
12 |
dofile(path.."/tool_workshop.lua") |
363f03
|
13 |
if technic.config:get_bool("enable_wind_mill") then |
S |
14 |
dofile(path.."/wind_mill.lua") |
|
15 |
end |
704925
|
16 |
dofile(path.."/generator.lua") |
5d470c
|
17 |
|
S |
18 |
-- The power radiator supplies appliances with inductive coupled power: |
|
19 |
-- Lighting and associated textures is taken directly from VanessaE's homedecor and made electric. |
5cf765
|
20 |
-- This is currently useless, slow, and mostly copied |
S |
21 |
--dofile(path.."/power_radiator.lua") |
|
22 |
--dofile(path.."/lighting.lua") |
5d470c
|
23 |
|