diff --git a/CREDITS.md b/CREDITS.md index 5989e1c..355d4db 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -28,7 +28,14 @@ Sounds: - Mirror rotation sound comes from - by killanm97 (CC0) - `screwdriver2_rotate.ogg` comes from - - by el\_boss (CC0) + - by `el_boss` (CC0) +- Glass sounds: + - Footstep: Derivate work from + - by `deleted_user_2104797` (CC0) + - Dig: Derivate work from + - by `kelsey_w` (CC BY 3.0) + - Place: Derivate work of + - by kbnevel (CC0) - All other sounds come from Minetest Game (see license of Minetest Game 5.4.1 for details) Code: diff --git a/mods/lzr_sounds/init.lua b/mods/lzr_sounds/init.lua index fe1b630..d1ad564 100644 --- a/mods/lzr_sounds/init.lua +++ b/mods/lzr_sounds/init.lua @@ -46,11 +46,13 @@ end function lzr_sounds.node_sound_glass_defaults(table) table = table or {} table.footstep = table.footstep or - {name = "default_glass_footstep", gain = 0.3} + {name = "lzr_sounds_footstep_glass", gain = 0.3} + table.place = table.place or + {name = "lzr_sounds_place_glass", gain = 0.3} table.dig = table.dig or - {name = "default_glass_footstep", gain = 0.5} + {name = "lzr_sounds_footstep_glass", gain = 0.5} table.dug = table.dug or - {name = "default_break_glass", gain = 1.0} + {name = "lzr_sounds_dig_glass", gain = 1.0} lzr_sounds.node_sound_defaults(table) return table end diff --git a/mods/lzr_sounds/sounds/default_break_glass.1.ogg b/mods/lzr_sounds/sounds/default_break_glass.1.ogg deleted file mode 100644 index b1ccc5f..0000000 Binary files a/mods/lzr_sounds/sounds/default_break_glass.1.ogg and /dev/null differ diff --git a/mods/lzr_sounds/sounds/default_break_glass.2.ogg b/mods/lzr_sounds/sounds/default_break_glass.2.ogg deleted file mode 100644 index b6cc9e8..0000000 Binary files a/mods/lzr_sounds/sounds/default_break_glass.2.ogg and /dev/null differ diff --git a/mods/lzr_sounds/sounds/default_break_glass.3.ogg b/mods/lzr_sounds/sounds/default_break_glass.3.ogg deleted file mode 100644 index ae6a6bf..0000000 Binary files a/mods/lzr_sounds/sounds/default_break_glass.3.ogg and /dev/null differ diff --git a/mods/lzr_sounds/sounds/default_glass_footstep.ogg b/mods/lzr_sounds/sounds/default_glass_footstep.ogg deleted file mode 100644 index 191287a..0000000 Binary files a/mods/lzr_sounds/sounds/default_glass_footstep.ogg and /dev/null differ diff --git a/mods/lzr_sounds/sounds/lzr_sounds_dig_glass.ogg b/mods/lzr_sounds/sounds/lzr_sounds_dig_glass.ogg new file mode 100644 index 0000000..68b9ac3 Binary files /dev/null and b/mods/lzr_sounds/sounds/lzr_sounds_dig_glass.ogg differ diff --git a/mods/lzr_sounds/sounds/lzr_sounds_footstep_glass.1.ogg b/mods/lzr_sounds/sounds/lzr_sounds_footstep_glass.1.ogg new file mode 100644 index 0000000..237d341 Binary files /dev/null and b/mods/lzr_sounds/sounds/lzr_sounds_footstep_glass.1.ogg differ diff --git a/mods/lzr_sounds/sounds/lzr_sounds_footstep_glass.2.ogg b/mods/lzr_sounds/sounds/lzr_sounds_footstep_glass.2.ogg new file mode 100644 index 0000000..f9ae354 Binary files /dev/null and b/mods/lzr_sounds/sounds/lzr_sounds_footstep_glass.2.ogg differ diff --git a/mods/lzr_sounds/sounds/lzr_sounds_footstep_glass.3.ogg b/mods/lzr_sounds/sounds/lzr_sounds_footstep_glass.3.ogg new file mode 100644 index 0000000..d55d6a4 Binary files /dev/null and b/mods/lzr_sounds/sounds/lzr_sounds_footstep_glass.3.ogg differ diff --git a/mods/lzr_sounds/sounds/lzr_sounds_footstep_glass.4.ogg b/mods/lzr_sounds/sounds/lzr_sounds_footstep_glass.4.ogg new file mode 100644 index 0000000..44f5e5a Binary files /dev/null and b/mods/lzr_sounds/sounds/lzr_sounds_footstep_glass.4.ogg differ diff --git a/mods/lzr_sounds/sounds/lzr_sounds_place_glass.1.ogg b/mods/lzr_sounds/sounds/lzr_sounds_place_glass.1.ogg new file mode 100644 index 0000000..fa86b5c Binary files /dev/null and b/mods/lzr_sounds/sounds/lzr_sounds_place_glass.1.ogg differ diff --git a/mods/lzr_sounds/sounds/lzr_sounds_place_glass.2.ogg b/mods/lzr_sounds/sounds/lzr_sounds_place_glass.2.ogg new file mode 100644 index 0000000..3555571 Binary files /dev/null and b/mods/lzr_sounds/sounds/lzr_sounds_place_glass.2.ogg differ diff --git a/mods/lzr_sounds/sounds/lzr_sounds_place_glass.3.ogg b/mods/lzr_sounds/sounds/lzr_sounds_place_glass.3.ogg new file mode 100644 index 0000000..04b169e Binary files /dev/null and b/mods/lzr_sounds/sounds/lzr_sounds_place_glass.3.ogg differ