_TarkFrench
2019-10-26 c41f6509cf2758945fbc0810ff9d7ab0fc077228
commit | author | age
ee0765 1 local path = technic.modpath.."/machines/register"
S 2
3 dofile(path.."/common.lua")
d55ecc 4
N 5 -- Wiring stuff
6 dofile(path.."/cables.lua")
7 dofile(path.."/battery_box.lua")
8
9 -- Generators
ee0765 10 dofile(path.."/solar_array.lua")
704925 11 dofile(path.."/generator.lua")
ee0765 12
d55ecc 13 -- API for machines
N 14 dofile(path.."/recipes.lua")
15 dofile(path.."/machine_base.lua")
16
17 -- Recipes
18 dofile(path.."/alloy_recipes.lua")
19 dofile(path.."/grinder_recipes.lua")
20 dofile(path.."/extractor_recipes.lua")
21 dofile(path.."/compressor_recipes.lua")
dd65a6 22 dofile(path.."/centrifuge_recipes.lua")
e1a71a 23 dofile(path.."/freezer_recipes.lua")
d55ecc 24
56e96b 25 -- Multi-Machine Recipes
T 26 dofile(path.."/grindings.lua")
27
d55ecc 28 -- Machines
N 29 dofile(path.."/alloy_furnace.lua")
30 dofile(path.."/electric_furnace.lua")
31 dofile(path.."/grinder.lua")
32 dofile(path.."/extractor.lua")
33 dofile(path.."/compressor.lua")
dd65a6 34 dofile(path.."/centrifuge.lua")
e1a71a 35 dofile(path.."/freezer.lua")