mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Thor beach smoothing, more stepsound shoes (#8083)
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -10,7 +10,7 @@
|
||||
|
||||
// This is so shoes don't squeak every step
|
||||
var/steps = 0
|
||||
var/step_delay = 1
|
||||
var/step_delay = 0 // Changed from 0 to 1 to make the sounds more consistent with movespeed.
|
||||
|
||||
// This is to stop squeak spam from inhand usage
|
||||
var/last_use = 0
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/datum/gear/shoes/mech_shoes
|
||||
display_name = "mech shoes selection"
|
||||
display_name = "stepsound shoes selection"
|
||||
path = /obj/item/clothing/shoes/mech_shoes
|
||||
cost = 1
|
||||
|
||||
@@ -7,6 +7,8 @@
|
||||
..()
|
||||
var/list/mechshoes = list(
|
||||
"heavy mech shoes" = /obj/item/clothing/shoes/mech_shoes,
|
||||
"light mech shoes" = /obj/item/clothing/shoes/mech_shoes/light
|
||||
"light mech shoes" = /obj/item/clothing/shoes/mech_shoes/light,
|
||||
"extra large jackboots" = /obj/item/clothing/shoes/mech_shoes/mister_x,
|
||||
"visible extra large jackboots" = /obj/item/clothing/shoes/mech_shoes/mister_x/visible
|
||||
)
|
||||
gear_tweaks += new/datum/gear_tweak/path(mechshoes)
|
||||
@@ -23,6 +23,16 @@
|
||||
squeak_sound = list('modular_chomp/sound/mob/footstep_large.ogg'=1,'modular_chomp/sound/mob/footstep_large2.ogg'=1)
|
||||
step_volume_mod = 4
|
||||
|
||||
/obj/item/clothing/shoes/mech_shoes/mister_x
|
||||
name = "concealed extra large jackboots"
|
||||
desc = "Lets hope there's no evil in this residence."
|
||||
squeak_sound = list('modular_chomp/sound/mob/heavy_boots.ogg'=1)
|
||||
step_volume_mod = 5
|
||||
|
||||
/obj/item/clothing/shoes/mech_shoes/mister_x/visible
|
||||
name = "visible extra large jackboots"
|
||||
icon_state = "jackboots"
|
||||
|
||||
/obj/item/clothing/shoes/clown_shoes
|
||||
var/list/squeak_sound = list("clownstep"=1)
|
||||
|
||||
|
||||
BIN
modular_chomp/sound/mob/heavy_boots.ogg
Normal file
BIN
modular_chomp/sound/mob/heavy_boots.ogg
Normal file
Binary file not shown.
Reference in New Issue
Block a user