mirror of
https://github.com/minetest-mods/ropes.git
synced 2024-11-28 02:13:43 +01:00
38 lines
761 B
Lua
38 lines
761 B
Lua
-- Misc
|
|
|
|
if minetest.get_modpath("farming") then
|
|
minetest.register_craft({
|
|
output = 'ropes:ropesegment',
|
|
recipe = {
|
|
{'farming:cotton',},
|
|
{'farming:cotton',},
|
|
{'farming:cotton'}
|
|
}
|
|
})
|
|
end
|
|
|
|
minetest.register_craftitem("ropes:ropesegment", {
|
|
description = "Rope",
|
|
_doc_items_longdesc = ropes.doc.ropesegment_longdesc,
|
|
_doc_items_usagehelp = ropes.doc.ropesegment_usage,
|
|
groups = {vines = 1},
|
|
inventory_image = "ropes_item.png",
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "ropes:ropeladder_top",
|
|
recipe = {
|
|
{'group:vines','group:stick','group:vines'},
|
|
{'group:vines','group:stick','group:vines'},
|
|
}
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "ropes:1rope_block",
|
|
recipe = {
|
|
{'group:wood',},
|
|
{'group:vines',},
|
|
{'group:vines'}
|
|
}
|
|
})
|