diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2018-03-21 17:34:34 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-03-21 17:34:34 +0000 |
commit | c553d1732d667ce35fd9a46fe19c2e04e8d076b5 (patch) | |
tree | 8cdd79f481c12b605d354d6bcb5d9f405ce5b5e6 | |
parent | 719e3b1d74e6b7bc7933b4645ff7d2cb426c9f0c (diff) |
added utensils for easier food crafting.
-rw-r--r-- | README.txt | 1 | ||||
-rw-r--r-- | init.lua | 2 | ||||
-rw-r--r-- | pineapple.lua | 11 | ||||
-rw-r--r-- | textures/farming_baking_tray.png | bin | 0 -> 149 bytes | |||
-rw-r--r-- | textures/farming_cutting_board.png | bin | 0 -> 189 bytes | |||
-rw-r--r-- | textures/farming_juicer.png | bin | 0 -> 155 bytes | |||
-rw-r--r-- | textures/farming_mixing_bowl.png | bin | 0 -> 133 bytes | |||
-rw-r--r-- | textures/farming_mortar_pestle.png | bin | 0 -> 173 bytes | |||
-rw-r--r-- | textures/farming_pot.png | bin | 0 -> 162 bytes | |||
-rw-r--r-- | textures/farming_saucepan.png | bin | 0 -> 170 bytes | |||
-rw-r--r-- | textures/farming_skillet.png | bin | 0 -> 172 bytes | |||
-rw-r--r-- | utensils.lua | 132 |
12 files changed, 143 insertions, 3 deletions
@@ -13,6 +13,7 @@ This mod works by adding your new plant to the {growing=1} group and numbering t Changelog: +1.33 - Added cooking utensils (wooden bowl, saucepan, cooking pot, baking tray, skillet, cutting board, mortar & pestle, glass mixing bowl) for easier food crafts. 1.32 - Added Pea plant (textures by Andrey01) - also added Wooden Bowl and Pea Soup crafts 1.31 - Added Pineapple which can be found growing in savannah areas (place pineapple in crafting to obtain 5x rings to eat and a top for re-planting), also Salt which is made from cooking a bucket of water, added food groups so it's more compatible with Ruben's food mods. 1.30 - Added Garlic, Pepper and Onions thanks to Grizzly Adam for sharing textures @@ -7,7 +7,7 @@ farming = {} farming.mod = "redo" -farming.version = "1.32" +farming.version = "1.33" farming.path = minetest.get_modpath("farming") farming.select = { type = "fixed", diff --git a/pineapple.lua b/pineapple.lua index 73cef29..6376f2f 100644 --- a/pineapple.lua +++ b/pineapple.lua @@ -53,13 +53,20 @@ minetest.register_craft({ output = "farming:pineapple_juice", type = "shapeless", recipe = {"vessels:drinking_glass", "group:food_pineapple_ring", - "group:food_pineapple_ring", "group:food_pineapple_ring"}, + "group:food_pineapple_ring", "group:food_pineapple_ring", + "farming:juicer"}, + replacements = { + {"farming:juicer", "farming:juicer"}, + }, }) minetest.register_craft({ output = "farming:pineapple_juice 2", type = "shapeless", - recipe = {"vessels:drinking_glass", "group:food_pineapple"}, + recipe = {"vessels:drinking_glass", "group:food_pineapple", "farming:juicer"}, + replacements = { + {"farming:juicer", "farming:juicer"}, + }, }) -- crop definition diff --git a/textures/farming_baking_tray.png b/textures/farming_baking_tray.png Binary files differnew file mode 100644 index 0000000..be1711c --- /dev/null +++ b/textures/farming_baking_tray.png diff --git a/textures/farming_cutting_board.png b/textures/farming_cutting_board.png Binary files differnew file mode 100644 index 0000000..90b3f9c --- /dev/null +++ b/textures/farming_cutting_board.png diff --git a/textures/farming_juicer.png b/textures/farming_juicer.png Binary files differnew file mode 100644 index 0000000..46265e4 --- /dev/null +++ b/textures/farming_juicer.png diff --git a/textures/farming_mixing_bowl.png b/textures/farming_mixing_bowl.png Binary files differnew file mode 100644 index 0000000..e96edf0 --- /dev/null +++ b/textures/farming_mixing_bowl.png diff --git a/textures/farming_mortar_pestle.png b/textures/farming_mortar_pestle.png Binary files differnew file mode 100644 index 0000000..abfeb9e --- /dev/null +++ b/textures/farming_mortar_pestle.png diff --git a/textures/farming_pot.png b/textures/farming_pot.png Binary files differnew file mode 100644 index 0000000..d28411d --- /dev/null +++ b/textures/farming_pot.png diff --git a/textures/farming_saucepan.png b/textures/farming_saucepan.png Binary files differnew file mode 100644 index 0000000..2625d45 --- /dev/null +++ b/textures/farming_saucepan.png diff --git a/textures/farming_skillet.png b/textures/farming_skillet.png Binary files differnew file mode 100644 index 0000000..60d26a1 --- /dev/null +++ b/textures/farming_skillet.png diff --git a/utensils.lua b/utensils.lua index 4b378e2..0de296f 100644 --- a/utensils.lua +++ b/utensils.lua @@ -2,6 +2,7 @@ local S = farming.intllib -- wooden bowl + minetest.register_craftitem("farming:bowl", { description = S("Wooden Bowl"), inventory_image = "farming_bowl.png", @@ -15,3 +16,134 @@ minetest.register_craft({ {"", "group:wood", ""}, } }) + +-- saucepan + +minetest.register_craftitem("farming:saucepan", { + description = S("Saucepan"), + inventory_image = "farming_saucepan.png", + groups = {food_saucepan = 1, flammable = 2}, +}) + +minetest.register_craft({ + output = "farming:saucepan", + recipe = { + {"default:steel_ingot", "", ""}, + {"", "group:stick", ""}, + } +}) + +-- cooking pot + +minetest.register_craftitem("farming:pot", { + description = S("Cooking Pot"), + inventory_image = "farming_pot.png", + groups = {food_pot = 1, flammable = 2}, +}) + +minetest.register_craft({ + output = "farming:pot", + recipe = { + {"group:stick", "default:steel_ingot", "default:steel_ingot"}, + {"", "default:steel_ingot", "default:steel_ingot"}, + } +}) + +-- baking tray + +minetest.register_craftitem("farming:baking_tray", { + description = S("Baking Tray"), + inventory_image = "farming_baking_tray.png", + groups = {food_baking_tray = 1, flammable = 2}, +}) + +minetest.register_craft({ + output = "farming:baking_tray", + recipe = { + {"default:clay_brick", "default:clay_brick", "default:clay_brick"}, + {"default:clay_brick", "", "default:clay_brick"}, + {"default:clay_brick", "default:clay_brick", "default:clay_brick"}, + } +}) + +-- skillet + +minetest.register_craftitem("farming:skillet", { + description = S("Skillet"), + inventory_image = "farming_skillet.png", + groups = {food_baking_tray = 1, flammable = 2}, +}) + +minetest.register_craft({ + output = "farming:skillet", + recipe = { + {"default:steel_ingot", "", ""}, + {"", "default:steel_ingot", ""}, + {"", "", "group:stick"}, + } +}) + +-- mortar and pestle + +minetest.register_craftitem("farming:mortar_pestle", { + description = S("Mortal and Pestle"), + inventory_image = "farming_mortar_pestle.png", + groups = {food_mortar_pestle = 1, flammable = 2}, +}) + +minetest.register_craft({ + output = "farming:mortar_pestle", + recipe = { + {"default:stone", "group:stick", "default:stone"}, + {"", "default:stone", ""}, + } +}) + +-- cutting board + +minetest.register_craftitem("farming:cutting_board", { + description = S("Cutting Board"), + inventory_image = "farming_cutting_board.png", + groups = {food_cutting_board = 1, flammable = 2}, +}) + +minetest.register_craft({ + output = "farming:cutting_board", + recipe = { + {"default:steel_ingot", "", ""}, + {"", "group:stick", ""}, + {"", "", "group:wood"}, + } +}) + +-- juicer + +minetest.register_craftitem("farming:juicer", { + description = S("Juicer"), + inventory_image = "farming_juicer.png", + groups = {food_juicer = 1, flammable = 2}, +}) + +minetest.register_craft({ + output = "farming:juicer", + recipe = { + {"", "default:stone", ""}, + {"default:stone", "", "default:stone"}, + } +}) + +-- glass mixing bowl + +minetest.register_craftitem("farming:mixing_bowl", { + description = S("Glass Mixing Bowl"), + inventory_image = "farming_mixing_bowl.png", + groups = {food_mixing_bowl = 1, flammable = 2}, +}) + +minetest.register_craft({ + output = "farming:mixing_bowl", + recipe = { + {"default:glass", "group:stick", "default:glass"}, + {"", "default:glass", ""}, + } +}) |