technic/technic/machines/LV/grinder.lua

14 lines
538 B
Lua
Raw Normal View History

2013-07-17 21:34:35 +02:00
2015-04-26 23:56:12 +02:00
minetest.register_alias("grinder", "technic:lv_grinder")
2013-07-17 21:34:35 +02:00
minetest.register_craft({
2015-04-26 23:56:12 +02:00
output = 'technic:lv_grinder',
2013-07-17 21:34:35 +02:00
recipe = {
{technic_compat.desert_stone_ingredient, technic_compat.diamond_ingredient, technic_compat.desert_stone_ingredient},
{technic_compat.desert_stone_ingredient, 'technic:machine_casing', technic_compat.desert_stone_ingredient},
{technic_compat.granite_ingredient, 'technic:lv_cable', technic_compat.granite_ingredient},
2013-07-17 21:34:35 +02:00
}
})
technic.register_grinder({tier="LV", demand={200}, speed=1})