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 | |
parent | f971ffef04b0c36f0448c5585899572d3564094c (diff) |
added blueberry pie and potato salad
-rw-r--r-- | README.txt | 2 | ||||
-rw-r--r-- | blueberry.lua | 17 | ||||
-rw-r--r-- | potato.lua | 16 | ||||
-rw-r--r-- | textures/farming_blueberry_pie.png | bin | 0 -> 195 bytes | |||
-rw-r--r-- | textures/farming_potato_salad.png | bin | 0 -> 325 bytes |
5 files changed, 34 insertions, 1 deletions
@@ -13,7 +13,7 @@ This mod works by adding your new plant to the {growing=1} group and numbering t Changelog: -1.36 - Added Beetroot, Beetroot Soup (6x beetroot, 1x bowl), fix register_plant() issue +1.36 - Added Beetroot, Beetroot Soup (6x beetroot, 1x bowl), fix register_plant() issue, add new recipes 1.35 - Deprecated bronze/mese/diamond hoe's, added hoe bomb and deprecated hoe's as lucky block prizes 1.34 - Added scarecrow Base (5x sticks in a cross shape) 1.33 - Added cooking utensils (wooden bowl, saucepan, cooking pot, baking tray, skillet, cutting board, mortar & pestle, juicer, glass mixing bowl) for easier food crafts. diff --git a/blueberry.lua b/blueberry.lua index f2f0147..500fcde 100644 --- a/blueberry.lua +++ b/blueberry.lua @@ -27,6 +27,23 @@ minetest.register_craft({ } }) +-- Blueberry Pie + +minetest.register_craftitem("farming:blueberry_pie", { + description = S("Blueberry Pie"), + inventory_image = "farming_blueberry_pie.png", + on_use = minetest.item_eat(6), +}) + +minetest.register_craft({ + output = "farming:blueberry_pie", + type = "shapeless", + recipe = { + "group:food_flour", "group:food_sugar", + "group:food_blueberries", "group:food_baking_tray" + }, +}) + -- blueberry definition local crop_def = { drawtype = "plantlike", @@ -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", diff --git a/textures/farming_blueberry_pie.png b/textures/farming_blueberry_pie.png Binary files differnew file mode 100644 index 0000000..2174686 --- /dev/null +++ b/textures/farming_blueberry_pie.png diff --git a/textures/farming_potato_salad.png b/textures/farming_potato_salad.png Binary files differnew file mode 100644 index 0000000..0028c91 --- /dev/null +++ b/textures/farming_potato_salad.png |