summaryrefslogtreecommitdiff
path: root/technic/machines/HV/generator.lua
blob: 3fb494b46b179ac5c3f5e8d5905745939417af75 (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_cable',       'technic:stainless_steel_ingot'},
	}
})

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