mylandscaping/recipes.lua

23 lines
720 B
Lua
Raw Normal View History

minetest.register_craft({
2015-05-06 11:36:47 -07:00
output = 'mylandscaping:machine 1',
recipe = {
2015-05-06 11:36:47 -07:00
{'default:shovel_steel', 'bucket:bucket_water', ''},
{'default:steel_ingot', 'mylandscaping:concrete_bag', 'default:steel_ingot'},
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
}
})
2015-05-06 11:36:47 -07:00
minetest.register_craft({
output = 'mylandscaping:mixer 1',
recipe = {
2015-05-06 11:36:47 -07:00
{'default:pick_steel', 'default:paper', 'default:chest'},
{'group:stick', 'default:paper', 'group:stick'},
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
}
2015-05-06 11:36:47 -07:00
})
minetest.register_craftitem('mylandscaping:concrete_bag', {
2015-05-08 18:01:15 -07:00
description = 'Bag of Concrete Mix',
inventory_image = 'mylandscaping_cement_bag.png',
})