summaryrefslogtreecommitdiff
path: root/farming/sugar.lua
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2018-02-13 14:05:34 -0500
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2018-02-13 14:05:34 -0500
commit335d9a3eddcb590c3ca5de9cba9b152e5e560af1 (patch)
tree1b95d73b945fbc9924438c28a35d7f1019fa255f /farming/sugar.lua
parent1d0f113f4c5afcf8479973f2e01786fb9a1fbbb7 (diff)
downloaddreambuilder_modpack-335d9a3eddcb590c3ca5de9cba9b152e5e560af1.tar
dreambuilder_modpack-335d9a3eddcb590c3ca5de9cba9b152e5e560af1.tar.gz
dreambuilder_modpack-335d9a3eddcb590c3ca5de9cba9b152e5e560af1.tar.bz2
dreambuilder_modpack-335d9a3eddcb590c3ca5de9cba9b152e5e560af1.tar.xz
dreambuilder_modpack-335d9a3eddcb590c3ca5de9cba9b152e5e560af1.zip
removed boost_cart and carbone_mobs -- too many crashes
updated blox, homedecor, plantlifed, cottages, farming_redo, framedglass, gloopblocks, mesecons, moreblocks, moretrees, pipeworks, player_textures, replacer, signs_lib, stained_glass, technic, travelnet, unified_inventory, unifieddyes, and worldedit.
Diffstat (limited to 'farming/sugar.lua')
-rw-r--r--farming/sugar.lua28
1 files changed, 27 insertions, 1 deletions
diff --git a/farming/sugar.lua b/farming/sugar.lua
index 97efc67..012a987 100644
--- a/farming/sugar.lua
+++ b/farming/sugar.lua
@@ -13,4 +13,30 @@ minetest.register_craft({
cooktime = 3,
output = "farming:sugar 2",
recipe = "default:papyrus",
-}) \ No newline at end of file
+})
+
+
+--= Salt
+
+minetest.register_node("farming:salt", {
+ description = ("Salt"),
+ inventory_image = "farming_salt.png",
+ wield_image = "farming_salt.png",
+ drawtype = "plantlike",
+ paramtype = "light",
+ tiles = {"farming_salt.png"},
+ groups = {vessel = 1, salt = 1, dig_immediate = 3, attached_node = 1},
+ sounds = default.node_sound_glass_defaults(),
+ selection_box = {
+ type = "fixed",
+ fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
+ },
+})
+
+minetest.register_craft({
+ type = "cooking",
+ cooktime = 15,
+ output = "farming:salt",
+ recipe = "bucket:bucket_water",
+ replacements = {{"bucket:bucket_water", "bucket:bucket_empty"}}
+})