1
0
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:
TenPlus1
2018-03-21 10:51:12 +00:00
parent 3dd1c5280e
commit 719e3b1d74
16 changed files with 115 additions and 3 deletions

17
utensils.lua Normal file
View 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", ""},
}
})