diff --git a/code/game/machinery/vending.dm b/code/game/machinery/vending.dm index 0efe847e342..0a9755f49e1 100644 --- a/code/game/machinery/vending.dm +++ b/code/game/machinery/vending.dm @@ -1985,6 +1985,8 @@ var/global/num_vending_terminals = 1 /obj/item/clothing/suit/clownpiece = 3, /obj/item/clothing/head/clownpiece = 3, /obj/item/clothing/head/cowboy = 3, + /obj/item/clothing/under/rottensuit = 5, + /obj/item/clothing/shoes/rottenshoes = 5, ) //Pretty much everything that had a chance to spawn. contraband = list( /obj/item/clothing/suit/cardborg = 3, diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm index 3146ac78f1e..f93d129c0b7 100644 --- a/code/modules/clothing/shoes/miscellaneous.dm +++ b/code/modules/clothing/shoes/miscellaneous.dm @@ -391,3 +391,10 @@ item_state = "workboots" species_fit = list(VOX_SHAPED) footprint_type = /obj/effect/decal/cleanable/blood/tracks/footprints/boots + +/obj/item/clothing/shoes/rottenshoes + name = "rotten shoes" + desc = "These shoes seem perfect for sneaking around." + icon_state = "rottenshoes" + item_state = "rottenshoes" + inhand_states = list("left_hand" = 'icons/mob/in-hand/left/clothing.dmi', "right_hand" = 'icons/mob/in-hand/right/clothing.dmi') diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index 2b5d96d7d01..8e5c6079efc 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -699,3 +699,11 @@ _color = "vox-skelesuit" species_restricted = list(VOX_SHAPED) species_fit = list(VOX_SHAPED) + +/obj/item/clothing/under/rottensuit + name = "rotten suit" + desc = "This suit seems perfect for wearing underneath a disguise." + icon_state = "rottensuit" + item_state = "rottensuit" + inhand_states = list("left_hand" = 'icons/mob/in-hand/left/clothing.dmi', "right_hand" = 'icons/mob/in-hand/right/clothing.dmi') + _color = "rottensuit" diff --git a/icons/mob/feet.dmi b/icons/mob/feet.dmi index 098e2fc8603..de0122fe887 100644 Binary files a/icons/mob/feet.dmi and b/icons/mob/feet.dmi differ diff --git a/icons/mob/in-hand/left/clothing.dmi b/icons/mob/in-hand/left/clothing.dmi new file mode 100644 index 00000000000..a8953feb330 Binary files /dev/null and b/icons/mob/in-hand/left/clothing.dmi differ diff --git a/icons/mob/in-hand/right/clothing.dmi b/icons/mob/in-hand/right/clothing.dmi new file mode 100644 index 00000000000..ef207249a58 Binary files /dev/null and b/icons/mob/in-hand/right/clothing.dmi differ diff --git a/icons/mob/uniform.dmi b/icons/mob/uniform.dmi index 5e85e3ebdf7..d0031760efc 100644 Binary files a/icons/mob/uniform.dmi and b/icons/mob/uniform.dmi differ diff --git a/icons/obj/clothing/shoes.dmi b/icons/obj/clothing/shoes.dmi index 3e82eebb5cb..32440d815d3 100644 Binary files a/icons/obj/clothing/shoes.dmi and b/icons/obj/clothing/shoes.dmi differ diff --git a/icons/obj/clothing/uniforms.dmi b/icons/obj/clothing/uniforms.dmi index 99995448ee6..3a8121e1c8d 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ