summaryrefslogtreecommitdiff
path: root/technic/machines/HV/grinder.lua
blob: 89dfc3139be2f776341bcbb9a71c3bcd0d4fc760 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- HV grinder

minetest.register_craft({
	output = 'technic:hv_grinder',
	recipe = {
		{'technic:carbon_plate',          'technic:mv_grinder',   '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_grinder({tier="HV", demand={1200, 900, 600}, speed=5, upgrade=1, tube=1})