mirror of
https://github.com/minetest-mods/technic.git
synced 2025-07-01 07:40:37 +02:00
14 lines
451 B
Lua
14 lines
451 B
Lua
-- 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})
|
|
|