diff options
author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-02-28 01:26:57 +0300 |
---|---|---|
committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-02-28 01:26:57 +0300 |
commit | 98468c473c70829c1dd21d2f71905af3bcd31586 (patch) | |
tree | 8d64f370ff2c2b21b240b42ccbd90b731572f860 /juices.lua | |
parent | 1796ed169c853113de20b42019ad5a3f0438349f (diff) |
new juices
Diffstat (limited to 'juices.lua')
-rw-r--r-- | juices.lua | 18 |
1 files changed, 17 insertions, 1 deletions
@@ -15,6 +15,17 @@ -- internal_name_of_the_juice_popsicle.png for the popsicle form ]] +-- clear the recipe for juice from farming redo for consistency's sake + +minetest.clear_craft({ + output = "farming:pineapple_juice", + type = "shapeless", + recipe = {"vessels:drinking_glass", "farming:pineapple_ring", + "farming:pineapple_ring", "farming:pineapple_ring"} +}) +minetest.unregister_item("farming:pineapple_juice") + + local juice_table = { orange_juice = { proper_name = "Apple juice", @@ -94,7 +105,12 @@ local juice_table = { obj_name = "tomato", orig_nutritional_value = 4 }, - + pineapple_juice = { + proper_name = "Pineapple juice", + found_in = "farming", + obj_name = "pineapple_ring", + orig_nutritional_value = 1 + }, } |