diff --git a/hyperstation/code/obj/kinkyclothes.dm b/hyperstation/code/obj/kinkyclothes.dm index 9c6c2e5f..b6ab978d 100644 --- a/hyperstation/code/obj/kinkyclothes.dm +++ b/hyperstation/code/obj/kinkyclothes.dm @@ -24,9 +24,14 @@ /obj/item/clothing/shoes/highheels name = "high heels" - desc = "They make the wearer appear taller, and noisey!" + desc = "They make the wearer appear taller, and more noisey!" icon_state = "highheels" item_state = "highheels" icon = 'hyperstation/icons/obj/clothing/shoes.dmi' alternate_worn_icon = 'hyperstation/icons/mobs/feet.dmi' mutantrace_variation = NO_MUTANTRACE_VARIATION + +/obj/item/clothing/shoes/highheels/Initialize() + . = ..() + AddComponent(/datum/component/squeak, list('sound/effects/footstep/highheel1.ogg' = 1,'sound/effects/footstep/highheel2.ogg' = 1), 20) +//the classic click clack \ No newline at end of file diff --git a/sound/effects/footstep/highheel1.ogg b/sound/effects/footstep/highheel1.ogg new file mode 100644 index 00000000..8f66ac29 Binary files /dev/null and b/sound/effects/footstep/highheel1.ogg differ diff --git a/sound/effects/footstep/highheel2.ogg b/sound/effects/footstep/highheel2.ogg new file mode 100644 index 00000000..3c5c7796 Binary files /dev/null and b/sound/effects/footstep/highheel2.ogg differ