diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2018-03-21 10:51:12 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-03-21 10:51:12 +0000 |
commit | 719e3b1d74e6b7bc7933b4645ff7d2cb426c9f0c (patch) | |
tree | 981f4b6a90e1ae99a68ef8daf168e82f873e2e76 /utensils.lua | |
parent | 3dd1c5280ebb104822512ee32f52ffac971be9da (diff) |
Added Peas, Bowl, Pea Soup
Diffstat (limited to 'utensils.lua')
-rw-r--r-- | utensils.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/utensils.lua b/utensils.lua new file mode 100644 index 0000000..4b378e2 --- /dev/null +++ b/utensils.lua @@ -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", ""}, + } +}) |