diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2018-05-24 14:41:48 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-05-24 14:41:48 +0100 |
commit | 7cf215badb086fd032c3a4f509792ce7326a99a6 (patch) | |
tree | 9465069357f638996c3b97a13bcfdfc317de7610 /potato.lua | |
parent | f971ffef04b0c36f0448c5585899572d3564094c (diff) |
added blueberry pie and potato salad
Diffstat (limited to 'potato.lua')
-rw-r--r-- | potato.lua | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -31,6 +31,22 @@ minetest.register_craft({ recipe = "group:food_potato" }) +-- Potato and cucumber Salad +minetest.register_craftitem("farming:potato_salad", { + description = S("Cucumber and Potato Salad"), + inventory_image = "farming_potato_salad.png", + on_use = minetest.item_eat(10, "farming:bowl"), +}) + +minetest.register_craft({ + output = "farming:potato_salad", + recipe = { + {"group:food_cucumber"}, + {"farming:baked_potato"}, + {"group:food_bowl"}, + } +}) + -- potato definition local crop_def = { drawtype = "plantlike", |