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:
17
food.lua
17
food.lua
@ -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"}
|
||||
}
|
||||
})
|
||||
|
Reference in New Issue
Block a user