1
0
mirror of https://codeberg.org/tenplus1/farming.git synced 2025-07-01 07:40:41 +02:00

add gingerbread man, tweak pineapple drops

This commit is contained in:
tenplus1
2023-07-13 18:54:02 +01:00
parent 8717625d0c
commit 2f461785d6
5 changed files with 20 additions and 2 deletions

View File

@ -782,3 +782,20 @@ minetest.register_craft({
{"farming:glass_water", "vessels:drinking_glass"}
}
})
-- Gingerbread Man
minetest.register_craftitem("farming:gingerbread_man", {
description = S("Gingerbread Man"),
inventory_image = "farming_gingerbread_man.png",
on_use = minetest.item_eat(2)
})
minetest.register_craft({
output = "farming:gingerbread_man 3",
recipe = {
{"", "group:food_egg", ""},
{"group:food_wheat", "group:food_ginger", "group:food_wheat"},
{"group:food_sugar", "", "group:food_sugar"}
}
})