add garlic bread

This commit is contained in:
TenPlus1 2018-06-02 12:18:01 +01:00
parent 20f827f4fb
commit 0999177f88
2 changed files with 15 additions and 0 deletions

View File

@ -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"},
})

Binary file not shown.

After

Width:  |  Height:  |  Size: 188 B