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

minetest.register_craft({
	output = 'technic:hv_generator',
	recipe = {
		{'technic:carbon_plate',          'technic:mv_generator',   'technic:composite_plate'},
		{'pipeworks:tube_1',              'technic:hv_transformer', 'pipeworks:tube_1'},
		{'technic:stainless_steel_ingot', 'technic:hv_cable0',      'technic:stainless_steel_ingot'},
	}
})

technic.register_generator({tier="HV", tube=1, supply=1200})