forked from mtcontrib/farming
add garlic bread
This commit is contained in:
parent
20f827f4fb
commit
0999177f88
15
food.lua
15
food.lua
@ -97,3 +97,18 @@ minetest.register_craft({
|
||||
{"farming:rose_water", "vessels:glass_bottle"},
|
||||
},
|
||||
})
|
||||
|
||||
--= Garlic Bread
|
||||
|
||||
minetest.register_craftitem("farming:garlic_bread", {
|
||||
description = S("Garlic Bread"),
|
||||
inventory_image = "farming_garlic_bread.png",
|
||||
groups = {flammable = 3},
|
||||
on_use = minetest.item_eat(2),
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "farming:garlic_bread",
|
||||
recipe = {"group:food_toast", "group:food_garlic_clove", "group:food_garlic_clove"},
|
||||
})
|
||||
|
BIN
textures/farming_garlic_bread.png
Normal file
BIN
textures/farming_garlic_bread.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 188 B |
Loading…
Reference in New Issue
Block a user