diff --git a/modular_darkpack/modules/werewolf_the_apocalypse/code/species/fera_organs.dm b/modular_darkpack/modules/werewolf_the_apocalypse/code/species/fera_organs.dm index bb36476f87c3..c3053d883dbe 100644 --- a/modular_darkpack/modules/werewolf_the_apocalypse/code/species/fera_organs.dm +++ b/modular_darkpack/modules/werewolf_the_apocalypse/code/species/fera_organs.dm @@ -53,14 +53,17 @@ unarmed_sharpness = SHARP_EDGED // limb_id = SPECIES_FERA footprint_sprite = FOOTPRINT_SPRITE_CLAWS - footstep_type = FOOTSTEP_MOB_CLAW + +/obj/item/bodypart/leg/left/fera/heavy + special_footstep_sounds = list(list('modular_darkpack/modules/werewolf_the_apocalypse/sounds/hefty_step.ogg'), 60, 15) /obj/item/bodypart/leg/right/fera unarmed_sharpness = SHARP_EDGED // limb_id = SPECIES_FERA footprint_sprite = FOOTPRINT_SPRITE_CLAWS - footstep_type = FOOTSTEP_MOB_CLAW +/obj/item/bodypart/leg/right/fera/heavy + special_footstep_sounds = list(list('modular_darkpack/modules/werewolf_the_apocalypse/sounds/hefty_step.ogg'), 60, 15) // Specificly to restrict use of tools... because that was moved to the brain.. /obj/item/organ/brain/fera diff --git a/modular_darkpack/modules/werewolf_the_apocalypse/code/species/fera_species.dm b/modular_darkpack/modules/werewolf_the_apocalypse/code/species/fera_species.dm index 90ed73d3c5c8..fa78725b2bab 100644 --- a/modular_darkpack/modules/werewolf_the_apocalypse/code/species/fera_species.dm +++ b/modular_darkpack/modules/werewolf_the_apocalypse/code/species/fera_species.dm @@ -221,8 +221,8 @@ BODY_ZONE_L_ARM = /obj/item/bodypart/arm/left/fera/aggravated, BODY_ZONE_R_ARM = /obj/item/bodypart/arm/right/fera/aggravated, BODY_ZONE_HEAD = /obj/item/bodypart/head/fera/aggravated, - BODY_ZONE_L_LEG = /obj/item/bodypart/leg/left/fera, - BODY_ZONE_R_LEG = /obj/item/bodypart/leg/right/fera, + BODY_ZONE_L_LEG = /obj/item/bodypart/leg/left/fera/heavy, + BODY_ZONE_R_LEG = /obj/item/bodypart/leg/right/fera/heavy, BODY_ZONE_CHEST = /obj/item/bodypart/chest/fera, ) @@ -259,8 +259,8 @@ BODY_ZONE_L_ARM = /obj/item/bodypart/arm/left/fera/aggravated, BODY_ZONE_R_ARM = /obj/item/bodypart/arm/right/fera/aggravated, BODY_ZONE_HEAD = /obj/item/bodypart/head/fera/aggravated, - BODY_ZONE_L_LEG = /obj/item/bodypart/leg/left/fera, - BODY_ZONE_R_LEG = /obj/item/bodypart/leg/right/fera, + BODY_ZONE_L_LEG = /obj/item/bodypart/leg/left/fera/heavy, + BODY_ZONE_R_LEG = /obj/item/bodypart/leg/right/fera/heavy, BODY_ZONE_CHEST = /obj/item/bodypart/chest/fera, ) diff --git a/modular_darkpack/modules/werewolf_the_apocalypse/sounds/hefty_step.ogg b/modular_darkpack/modules/werewolf_the_apocalypse/sounds/hefty_step.ogg new file mode 100644 index 000000000000..89377d5f3b34 Binary files /dev/null and b/modular_darkpack/modules/werewolf_the_apocalypse/sounds/hefty_step.ogg differ