summaryrefslogtreecommitdiff
path: root/farming/hemp.lua
diff options
context:
space:
mode:
authorVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-05-11 10:22:53 -0400
committerVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-05-11 10:22:53 -0400
commit249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3 (patch)
tree915217a9657158d2a02eb8d93507944f618d5142 /farming/hemp.lua
parentaf2fedcf9998bb4a854c2cfd63e4cdad91a6dd5d (diff)
downloaddreambuilder_modpack-249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3.tar
dreambuilder_modpack-249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3.tar.gz
dreambuilder_modpack-249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3.tar.bz2
dreambuilder_modpack-249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3.tar.xz
dreambuilder_modpack-249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3.zip
Add readme.md mostly taken from the forum thread (and markdown-ified)
Updated several mods: castles, homedecor, digilines, farming redo, jumping, maptools, mesecons, moreblocks, moretrees, pipeworks, signs_lib, technic, unified_dyes Deleted the peaceful_npc mod, as it is broken and unmaintained.
Diffstat (limited to 'farming/hemp.lua')
-rw-r--r--farming/hemp.lua19
1 files changed, 18 insertions, 1 deletions
diff --git a/farming/hemp.lua b/farming/hemp.lua
index 29b6a42..34dd56d 100644
--- a/farming/hemp.lua
+++ b/farming/hemp.lua
@@ -39,7 +39,7 @@ minetest.register_node("farming:hemp_oil", {
type = "fixed",
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
},
- groups = {vessel = 1, dig_immediate = 3, attached_node = 1},
+ groups = {food_oil = 1, vessel = 1, dig_immediate = 3, attached_node = 1},
sounds = default.node_sound_glass_defaults(),
})
@@ -94,6 +94,23 @@ minetest.register_craft( {
replacements = {{ "bucket:bucket_river_water", "bucket:bucket_empty"}}
})
+-- hemp block
+minetest.register_node("farming:hemp_block", {
+ description = S("Hemp Block"),
+ tiles = {"farming_hemp_block.png"},
+ paramtype = "light",
+ groups = {snappy = 1, oddly_breakable_by_hand = 1, flammable = 2}
+})
+
+minetest.register_craft( {
+ output = "farming:hemp_block",
+ recipe = {
+ {"farming:hemp_fibre", "farming:hemp_fibre", "farming:hemp_fibre"},
+ {"farming:hemp_fibre", "farming:hemp_fibre", "farming:hemp_fibre"},
+ {"farming:hemp_fibre", "farming:hemp_fibre", "farming:hemp_fibre"}
+ },
+})
+
-- paper
minetest.register_craft( {
output = "default:paper",