diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm index f38de40a..92b26e2f 100644 --- a/code/modules/clothing/shoes/miscellaneous.dm +++ b/code/modules/clothing/shoes/miscellaneous.dm @@ -106,7 +106,7 @@ /obj/item/clothing/shoes/jackboots name = "jackboots" - desc = "Nanotrasen-issue Security combat boots for combat scenarios or combat situations. All combat, all the time." + desc = "Kinaris-issue Security combat boots for combat scenarios or combat situations. All combat, all the time." icon_state = "jackboots" item_state = "jackboots" lefthand_file = 'icons/mob/inhands/equipment/security_lefthand.dmi' @@ -290,6 +290,22 @@ . = ..() AddComponent(/datum/component/squeak, list('sound/machines/clockcult/integration_cog_install.ogg' = 1, 'sound/magic/clockwork/fellowship_armory.ogg' = 1), 50) +/obj/item/clothing/shoes/stompers + name = "Stompers" + desc = "Brand-new, heavy-duty jackboots with a metal cover underneath the toecap. Nicknamed 'stompers' due to their signature sound when walking." + icon = 'icons/obj/clothing/shoes.dmi' + icon_state = "jackboots" + item_state = "crusader" + strip_delay = 50 + equip_delay_other = 50 + resistance_flags = NONE + permeability_coefficient = 0.05 //Thick soles, and covers the ankle + pocket_storage_component_path = /datum/component/storage/concrete/pockets/shoes + +/obj/item/clothing/shoes/stompers/Initialize() + . = ..() + AddComponent(/datum/component/squeak, list('sound/effects/footstep/stompers1.ogg' = 1,'sound/effects/footstep/stompers2.ogg' = 1), 100) + /obj/item/clothing/shoes/wheelys name = "Wheely-Heels" desc = "Uses patented retractable wheel technology. Never sacrifice speed for style - not that this provides much of either." //Thanks Fel diff --git a/sound/effects/footstep/stompers1.ogg b/sound/effects/footstep/stompers1.ogg new file mode 100644 index 00000000..38490b05 Binary files /dev/null and b/sound/effects/footstep/stompers1.ogg differ diff --git a/sound/effects/footstep/stompers2.ogg b/sound/effects/footstep/stompers2.ogg new file mode 100644 index 00000000..77e4573b Binary files /dev/null and b/sound/effects/footstep/stompers2.ogg differ