summaryrefslogtreecommitdiff
path: root/technic/machines/MV/generator.lua
blob: 4ae24b8c55682cf0ba0ba1475af868b1d2d48c15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
minetest.register_alias("generator_mv", "technic:generator_mv")

minetest.register_craft({
	output = 'technic:mv_generator',
	recipe = {
		{'technic:stainless_steel_ingot', 'technic:lv_generator',   'technic:stainless_steel_ingot'},
		{'pipeworks:tube_1',              'technic:mv_transformer', 'pipeworks:tube_1'},
		{'technic:stainless_steel_ingot', 'technic:mv_cable0',      'technic:stainless_steel_ingot'},
	}
})

technic.register_generator({tier="MV", tube=1, supply=600})