2016-06-07 19:53:41 -06:00
|
|
|
-- Misc
|
2015-02-10 07:15:16 +01:00
|
|
|
|
2017-01-31 20:11:12 -07:00
|
|
|
if minetest.get_modpath("farming") then
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'ropes:ropesegment',
|
|
|
|
recipe = {
|
|
|
|
{'farming:cotton',},
|
|
|
|
{'farming:cotton',},
|
|
|
|
{'farming:cotton'}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
end
|
2015-02-10 07:15:16 +01:00
|
|
|
|
2017-01-31 19:53:16 -07:00
|
|
|
minetest.register_craftitem("ropes:ropesegment", {
|
2017-01-30 01:56:44 -07:00
|
|
|
description = "Rope",
|
2017-01-31 19:53:16 -07:00
|
|
|
_doc_items_longdesc = ropes.doc.ropesegment_longdesc,
|
|
|
|
_doc_items_usagehelp = ropes.doc.ropesegment_usage,
|
|
|
|
groups = {ropes = 1},
|
|
|
|
inventory_image = "ropes_item.png",
|
2015-02-10 07:15:16 +01:00
|
|
|
})
|
2017-01-31 19:53:16 -07:00
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "ropes:ropeladder_top",
|
|
|
|
recipe = {
|
|
|
|
{'group:ropes','default:stick','group:ropes'},
|
|
|
|
{'group:ropes','default:stick','group:ropes'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "ropes:1rope_block",
|
|
|
|
recipe = {
|
|
|
|
{'default:wood',},
|
|
|
|
{'group:ropes',},
|
|
|
|
{'group:ropes'}
|
|
|
|
}
|
|
|
|
})
|