2015-02-28 13:42:39 +01:00
|
|
|
-- Sticky blocks can be used together with pistons or movestones to push / pull
|
|
|
|
-- structures that are "glued" together using sticky blocks
|
|
|
|
|
|
|
|
-- All sides sticky block
|
|
|
|
minetest.register_node("mesecons_stickyblocks:sticky_block_all", {
|
2018-01-18 20:01:53 +01:00
|
|
|
-- TODO: Rename to “All-Faces Sticky Block” when other sticky blocks become available
|
|
|
|
description = "Sticky Block",
|
|
|
|
tiles = {"mesecons_stickyblocks_sticky.png"},
|
2017-10-31 22:50:39 +01:00
|
|
|
is_ground_content = false,
|
2018-01-18 20:01:53 +01:00
|
|
|
groups = {choppy=3, oddly_breakable_by_hand=2},
|
2022-02-12 20:12:12 +01:00
|
|
|
mvps_sticky = function (pos)
|
2015-02-28 13:42:39 +01:00
|
|
|
local connected = {}
|
|
|
|
for _, r in ipairs(mesecon.rules.alldirs) do
|
|
|
|
table.insert(connected, vector.add(pos, r))
|
|
|
|
end
|
|
|
|
return connected
|
2018-01-18 20:01:53 +01:00
|
|
|
end,
|
2022-05-05 16:57:53 +02:00
|
|
|
sounds = mesecon.node_sound.wood,
|
2015-02-28 13:42:39 +01:00
|
|
|
})
|