mirror of
https://github.com/minetest-mods/ropes.git
synced 2024-11-24 16:33:48 +01:00
2a5a536fd6
I did a bunch of work enhancing the rope blocks in this. I gave them a nodebox model, limited the length the rope will extend to, allowed blocks with rope of varying length to be crafted, and fixed a couple of problems with ropes - namely that removing the block wouldn't necessarily remove the whole rope (now there's a "rope top" that eats its way down to ensure the whole rope is removed) and that a rope couldn't be cut once it was in place. I also added a rope ladder variant, and made it possible to craft ropes using cotton as well as vines. I may have broken the vines part of this mod in the process, I'll do further testing and code cleanup soon.
17 lines
293 B
Lua
17 lines
293 B
Lua
-- Misc
|
|
|
|
minetest.register_craft({
|
|
output = 'vines:ropesegment',
|
|
recipe = {
|
|
{'farming:cotton',},
|
|
{'farming:cotton',},
|
|
{'farming:cotton'}
|
|
}
|
|
})
|
|
|
|
minetest.register_craftitem("vines:ropesegment", {
|
|
description = "Rope",
|
|
groups = {vines = 1},
|
|
inventory_image = "vines_item.png",
|
|
})
|