Skip to content

Commit

Permalink
Default: Add metal sound table function and metal sounds
Browse files Browse the repository at this point in the history
  • Loading branch information
sofar authored and paramat committed Oct 25, 2016
1 parent f7325d2 commit fa9a345
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 0 deletions.
11 changes: 11 additions & 0 deletions mods/default/README.txt
Expand Up @@ -231,3 +231,14 @@ Mito551 (sounds) (CC BY-SA 3.0):
default_dirt_footstep.1.ogg
default_dirt_footstep.2.ogg
default_glass_footstep.ogg

Metal sounds:
default_dig_metal.ogg - yadronoff - CC-BY-3.0
- https://www.freesound.org/people/yadronoff/sounds/320397/
default_dug_metal.*.ogg - Iwan Gabovitch - qubodup - CC0
- http://opengameart.org/users/qubodup
default_metal_footstep.*.ogg - Ottomaani138 - CC0
- https://www.freesound.org/people/Ottomaani138/sounds/232692/
default_place_node_metal.*.ogg - Ogrebane - CC0
- http://opengameart.org/content/wood-and-metal-sound-effects-volume-2

13 changes: 13 additions & 0 deletions mods/default/functions.lua
Expand Up @@ -95,6 +95,19 @@ function default.node_sound_glass_defaults(table)
return table
end

function default.node_sound_metal_defaults(table)
table = table or {}
table.footstep = table.footstep or
{name = "default_metal_footstep", gain = 0.5}
table.dig = table.dig or
{name = "default_dig_metal", gain = 0.5}
table.dug = table.dug or
{name = "default_dug_metal", gain = 0.5}
table.place = table.place or
{name = "default_place_node_metal", gain = 0.5}
default.node_sound_defaults(table)
return table
end

--
-- Lavacooling
Expand Down
Binary file added mods/default/sounds/default_dig_metal.ogg
Binary file not shown.
Binary file added mods/default/sounds/default_dug_metal.1.ogg
Binary file not shown.
Binary file added mods/default/sounds/default_dug_metal.2.ogg
Binary file not shown.
Binary file added mods/default/sounds/default_metal_footstep.1.ogg
Binary file not shown.
Binary file added mods/default/sounds/default_metal_footstep.2.ogg
Binary file not shown.
Binary file added mods/default/sounds/default_metal_footstep.3.ogg
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit fa9a345

Please sign in to comment.