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 | |
parent | 1796ed169c853113de20b42019ad5a3f0438349f (diff) | |
download | freezer-98468c473c70829c1dd21d2f71905af3bcd31586.tar.gz freezer-98468c473c70829c1dd21d2f71905af3bcd31586.tar.bz2 freezer-98468c473c70829c1dd21d2f71905af3bcd31586.zip |
new juices
-rw-r--r-- | init.lua | 12 | ||||
-rw-r--r-- | juices.lua | 18 | ||||
-rw-r--r-- | textures/pineapple_juice.png | bin | 0 -> 356 bytes | |||
-rw-r--r-- | textures/pineapple_juice_inv.png | bin | 0 -> 322 bytes | |||
-rw-r--r-- | textures/pineapple_juice_popsicle.png | bin | 0 -> 293 bytes |
5 files changed, 29 insertions, 1 deletions
@@ -415,6 +415,18 @@ minetest.register_craft({ {"default:steel_ingot", "default:mese_crystal", "default:steel_ingot"} } }) + +if minetest.get_modpath("ethereal") then + minetest.register_craft({ + output = "freezer:freezer", + recipe = { + {"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"}, + {"default:steel_ingot", "", "default:steel_ingot"}, + {"default:steel_ingot", "ethereal:crystal_spike", "default:steel_ingot"} + } + }) +end + minetest.register_craft({ @@ -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 + }, } diff --git a/textures/pineapple_juice.png b/textures/pineapple_juice.png Binary files differnew file mode 100644 index 0000000..5fc8717 --- /dev/null +++ b/textures/pineapple_juice.png diff --git a/textures/pineapple_juice_inv.png b/textures/pineapple_juice_inv.png Binary files differnew file mode 100644 index 0000000..063313c --- /dev/null +++ b/textures/pineapple_juice_inv.png diff --git a/textures/pineapple_juice_popsicle.png b/textures/pineapple_juice_popsicle.png Binary files differnew file mode 100644 index 0000000..6ec3739 --- /dev/null +++ b/textures/pineapple_juice_popsicle.png |