forked from Mirrorlandia_minetest/mesecons
Sticky block: Add texture, sounds and groups (#397)
This commit is contained in:
parent
02f8d29170
commit
fec82ab246
@ -3,15 +3,17 @@
|
|||||||
|
|
||||||
-- All sides sticky block
|
-- All sides sticky block
|
||||||
minetest.register_node("mesecons_stickyblocks:sticky_block_all", {
|
minetest.register_node("mesecons_stickyblocks:sticky_block_all", {
|
||||||
description = "All-Sides Sticky Block",
|
-- TODO: Rename to “All-Faces Sticky Block” when other sticky blocks become available
|
||||||
tiles = {"default_grass.png^default_footprint.png"},
|
description = "Sticky Block",
|
||||||
|
tiles = {"mesecons_stickyblocks_sticky.png"},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {dig_immediate=2},
|
groups = {choppy=3, oddly_breakable_by_hand=2},
|
||||||
mvps_sticky = function (pos, node)
|
mvps_sticky = function (pos, node)
|
||||||
local connected = {}
|
local connected = {}
|
||||||
for _, r in ipairs(mesecon.rules.alldirs) do
|
for _, r in ipairs(mesecon.rules.alldirs) do
|
||||||
table.insert(connected, vector.add(pos, r))
|
table.insert(connected, vector.add(pos, r))
|
||||||
end
|
end
|
||||||
return connected
|
return connected
|
||||||
end
|
end,
|
||||||
|
sounds = default.node_sound_wood_defaults(),
|
||||||
})
|
})
|
||||||
|
BIN
mesecons_stickyblocks/textures/mesecons_stickyblocks_sticky.png
Normal file
BIN
mesecons_stickyblocks/textures/mesecons_stickyblocks_sticky.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 661 B |
Loading…
Reference in New Issue
Block a user