Add MV and HV generators and make coal dust a fuel

This commit is contained in:
pagliaccio
2013-07-23 14:43:14 +02:00
committed by ShadowNinja
parent 4a35d5dd98
commit 704925aa7b
22 changed files with 159 additions and 126 deletions

View File

@ -0,0 +1,14 @@
minetest.register_alias("hv_generator", "technic:hv_generator")
minetest.register_craft({
output = 'technic:hv_generator',
recipe = {
{'technic:stainless_steel_ingot', 'technic:mv_generator', 'technic:stainless_steel_ingot'},
{'pipeworks:tube_000000', 'technic:hv_transformer', 'pipeworks:tube_000000'},
{'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'},
}
})
technic.register_generator({tier="HV", supply=1200})

View File

@ -9,4 +9,5 @@ dofile(path.."/forcefield.lua")
dofile(path.."/battery_box.lua")
dofile(path.."/solar_array.lua")
dofile(path.."/nuclear_reactor.lua")
dofile(path.."/generator.lua")