Adds the meown shoes to the contraband section of the AutoDrobe. (#69572)

Adds the "meown shoes" to the contraband section of AutoDrobes. "Meown shoes" are cute little cat slippers that meow every single time you step.
This commit is contained in:
dopamiin0
2022-09-07 17:51:45 -07:00
committed by GitHub
parent 1aa5089a36
commit d672aade35
5 changed files with 10 additions and 1 deletions
+9 -1
View File
@@ -5,6 +5,8 @@
inhand_icon_state = "clown_shoes"
slowdown = SHOES_SLOWDOWN+1
var/enabled_waddle = TRUE
///List of possible sounds for the squeak component to use, allows for different clown shoe subtypes to have different sounds.
var/list/squeak_sound = list('sound/effects/clownstep1.ogg'=1,'sound/effects/clownstep2.ogg'=1)
lace_time = 20 SECONDS // how the hell do these laces even work??
species_exception = list(/datum/species/golem/bananium)
@@ -12,7 +14,7 @@
. = ..()
create_storage(type = /datum/storage/pockets/shoes/clown)
LoadComponent(/datum/component/squeak, list('sound/effects/clownstep1.ogg'=1,'sound/effects/clownstep2.ogg'=1), 50, falloff_exponent = 20) //die off quick please
LoadComponent(/datum/component/squeak, squeak_sound, 50, falloff_exponent = 20) //die off quick please
AddElement(/datum/element/swabable, CELL_LINE_TABLE_CLOWN, CELL_VIRUS_TABLE_GENERIC, rand(2,3), 0)
/obj/item/clothing/shoes/clown_shoes/equipped(mob/living/user, slot)
@@ -46,3 +48,9 @@
name = "jester shoes"
desc = "A court jester's shoes, updated with modern squeaking technology."
icon_state = "jester_shoes"
/obj/item/clothing/shoes/clown_shoes/meown_shoes
name = "meown shoes"
desc = "The adorable sound they make when you walk will mean making friends is more likely."
icon_state = "meown_shoes"
squeak_sound = list('sound/effects/meowstep1.ogg'=1) //mew mew mew mew
+1
View File
@@ -156,6 +156,7 @@
/obj/item/clothing/glasses/blindfold = 1,
/obj/item/clothing/mask/muzzle = 2,
/obj/item/clothing/head/tv_head = 1,
/obj/item/clothing/shoes/clown_shoes/meown_shoes = 1,
)
premium = list(
/obj/item/clothing/suit/costume/pirate/captain = 2,
Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.