mirror of
https://codeberg.org/tenplus1/farming.git
synced 2025-06-30 15:20:42 +02:00
Added Peas, Bowl, Pea Soup
This commit is contained in:
17
utensils.lua
Normal file
17
utensils.lua
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
local S = farming.intllib
|
||||
|
||||
-- wooden bowl
|
||||
minetest.register_craftitem("farming:bowl", {
|
||||
description = S("Wooden Bowl"),
|
||||
inventory_image = "farming_bowl.png",
|
||||
groups = {food_bowl = 1, flammable = 2},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:bowl 4",
|
||||
recipe = {
|
||||
{"group:wood", "", "group:wood"},
|
||||
{"", "group:wood", ""},
|
||||
}
|
||||
})
|
Reference in New Issue
Block a user