diff --git a/code/datums/components/footstep.dm b/code/datums/components/footstep.dm index 2ee01a29..7bac1106 100644 --- a/code/datums/components/footstep.dm +++ b/code/datums/components/footstep.dm @@ -46,6 +46,12 @@ //begin playsound shenanigans// + //for big characters, add alittle boom + if(LM.size_multiplier > 1.5) + var/stompsound = pick( 'sound/effects/footstep/giant1.ogg','sound/effects/footstep/giant2.ogg') + var/giantvolume = LM.size_multiplier * 9 + playsound(T, stompsound, giantvolume) + //for barefooted non-clawed mobs like monkeys if(isbarefoot(LM)) playsound(T, pick(GLOB.barefootstep[T.barefootstep][1]), diff --git a/sound/effects/footstep/giant1.ogg b/sound/effects/footstep/giant1.ogg new file mode 100644 index 00000000..ce35e4c4 Binary files /dev/null and b/sound/effects/footstep/giant1.ogg differ diff --git a/sound/effects/footstep/giant2.ogg b/sound/effects/footstep/giant2.ogg new file mode 100644 index 00000000..42b0273f Binary files /dev/null and b/sound/effects/footstep/giant2.ogg differ