Thor beach smoothing, more stepsound shoes (#8083)

This commit is contained in:
Aroliacue
2024-03-27 17:55:38 +10:00
committed by GitHub
parent 0ea592a27e
commit 95f8c437c3
5 changed files with 729 additions and 576 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -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

View File

@@ -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)

View File

@@ -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)

Binary file not shown.