mirror of
https://github.com/minetest-mods/ropes.git
synced 2024-11-24 16:33:48 +01:00
added rope-climbing sound
This commit is contained in:
parent
8e80a8eefd
commit
6fbda62ccf
@ -226,6 +226,11 @@ local rope_def = {
|
|||||||
tiles = { "ropes_3.png", "ropes_3.png", "ropes_3.png", "ropes_3.png", "ropes_5.png", "ropes_5.png" },
|
tiles = { "ropes_3.png", "ropes_3.png", "ropes_3.png", "ropes_3.png", "ropes_5.png", "ropes_5.png" },
|
||||||
groups = {choppy=2, flammable=2, not_in_creative_inventory=1},
|
groups = {choppy=2, flammable=2, not_in_creative_inventory=1},
|
||||||
sounds = default.node_sound_leaves_defaults(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
|
sounds = {
|
||||||
|
footstep = "ropes_creak",
|
||||||
|
dig = "__group",
|
||||||
|
dug = "__group",
|
||||||
|
},
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
node_box = {
|
node_box = {
|
||||||
type = "connected",
|
type = "connected",
|
||||||
@ -256,7 +261,11 @@ local rope_bottom_def = {
|
|||||||
tiles = { "ropes_3.png", "ropes_3.png", "ropes_3.png", "ropes_3.png", "ropes_5.png", "ropes_5.png" },
|
tiles = { "ropes_3.png", "ropes_3.png", "ropes_3.png", "ropes_3.png", "ropes_5.png", "ropes_5.png" },
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
groups = {choppy=2, flammable=2, not_in_creative_inventory=1},
|
groups = {choppy=2, flammable=2, not_in_creative_inventory=1},
|
||||||
sounds = default.node_sound_leaves_defaults(),
|
sounds = {
|
||||||
|
footstep = "ropes_creak",
|
||||||
|
dig = "__group",
|
||||||
|
dug = "__group",
|
||||||
|
},
|
||||||
node_box = {
|
node_box = {
|
||||||
type = "connected",
|
type = "connected",
|
||||||
fixed = {
|
fixed = {
|
||||||
|
1
sounds/license.txt
Normal file
1
sounds/license.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
ropes_creak.ogg - by jergonda from https://www.freesound.org/people/jergonda/sounds/254735/ under public domain via CC 0
|
BIN
sounds/ropes_creak.1.ogg
Normal file
BIN
sounds/ropes_creak.1.ogg
Normal file
Binary file not shown.
BIN
sounds/ropes_creak.2.ogg
Normal file
BIN
sounds/ropes_creak.2.ogg
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user