diff --git a/init.lua b/init.lua index 994d2f7..67dc867 100644 --- a/init.lua +++ b/init.lua @@ -428,6 +428,9 @@ local sound_sand_coarse = {footstep = {name="pedology_sand_footstep", gain=0.3}} local sound_gravel_fine = {footstep = {name="pedology_gravel_footstep", gain=1}} local sound_gravel_medium = {footstep = {name="pedology_gravel_footstep", gain=1}} local sound_gravel_coarse = {footstep = {name="pedology_gravel_footstep", gain=1}} +local sound_turf_sapric = {footstep = {name="pedology_turf_footstep", gain=0.2}} +local sound_turf_hemic = {footstep = {name="pedology_turf_footstep", gain=0.24}} +local sound_turf_fibric = {footstep = {name="pedology_turf_footstep", gain=0.28}} --[[ register sucky and oozing nodes ]] --[[ ground nodes ]] @@ -539,11 +542,11 @@ pedology.register_liquid("clay_5", "slurry clay", 128, 2, 5, 0, {a=128, r=146, g --[[ turf ]] pedology.register_sucky_group("turf_fibric", "fibric turf", "fibric turf cutting", - 2, 2, 120, 1.25, {1000, 1100, 1200}, 4, sound_silt_coarse, { [0] = { crumbly = 3, flammable = 1 }, { crumbly = 3 }, {crumbly = 3} } ) + 2, 2, 120, 1.25, {1000, 1100, 1200}, 4, sound_turf_fibric, { [0] = { crumbly = 3, flammable = 1 }, { crumbly = 3 }, {crumbly = 3} } ) pedology.register_sucky_group("turf_hemic", "hemic turf", "hemic turf cutting", - 2, 2, 180, 1.225, {1100, 1200, 1300}, 3, sound_silt_coarse, { [0] = { crumbly = 3, flammable = 1 }, { crumbly = 3 }, { crumbly = 3 } } ) + 2, 2, 180, 1.225, {1100, 1200, 1300}, 3, sound_turf_hemic, { [0] = { crumbly = 3, flammable = 1 }, { crumbly = 3 }, { crumbly = 3 } } ) pedology.register_sucky_group("turf_sapric", "sapric turf", "sapric turf cutting", - 2, 2, 240, 1.2, {1200, 1300, 1400}, 2, sound_silt_coarse, { [0] = { crumbly = 3, flammable = 1 }, { crumbly = 3 }, { crumbly = 3 } } ) + 2, 2, 240, 1.2, {1200, 1300, 1400}, 2, sound_turf_sapric, { [0] = { crumbly = 3, flammable = 1 }, { crumbly = 3 }, { crumbly = 3 } } ) minetest.register_craft({ type = "fuel", diff --git a/sounds/pedology_turf_footstep.1.ogg b/sounds/pedology_turf_footstep.1.ogg new file mode 100644 index 0000000..63464c0 Binary files /dev/null and b/sounds/pedology_turf_footstep.1.ogg differ diff --git a/sounds/pedology_turf_footstep.2.ogg b/sounds/pedology_turf_footstep.2.ogg new file mode 100644 index 0000000..4519e7f Binary files /dev/null and b/sounds/pedology_turf_footstep.2.ogg differ diff --git a/sounds/pedology_turf_footstep.3.ogg b/sounds/pedology_turf_footstep.3.ogg new file mode 100644 index 0000000..d15f739 Binary files /dev/null and b/sounds/pedology_turf_footstep.3.ogg differ diff --git a/sounds/pedology_turf_footstep.4.ogg b/sounds/pedology_turf_footstep.4.ogg new file mode 100644 index 0000000..2b00b8c Binary files /dev/null and b/sounds/pedology_turf_footstep.4.ogg differ diff --git a/sounds/pedology_turf_footstep.5.ogg b/sounds/pedology_turf_footstep.5.ogg new file mode 100644 index 0000000..d963014 Binary files /dev/null and b/sounds/pedology_turf_footstep.5.ogg differ