added hemp block

This commit is contained in:
TenPlus1 2018-03-08 15:44:44 +00:00
parent 021677931b
commit dc604a3915
2 changed files with 17 additions and 0 deletions

View File

@ -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",

Binary file not shown.

After

Width:  |  Height:  |  Size: 149 B