diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index 7f6a81b8b79..7afaf54640a 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -434,6 +434,65 @@ /obj/item/clothing/under/bane name = "Bane Harness" desc = "Wear this harness to become the bane of the station." - icon_state = "bane_harness" + icon_state = "bane" item_state = "bane" - _color = "bane" \ No newline at end of file + _color = "bane" + +/obj/item/clothing/under/vox_grey + name = "Grey Vox Jumpsuit" + desc = "An assistant's jumpsuit ripped to better fit a vox." + icon_state = "vgrey" + item_state = "vgrey" + _color = "vgrey" + +/obj/item/clothing/under/vox_robotics + name = "Vox Robotics Jumpsuit" + desc = "A roboticist's jumpsuit ripped to better fit a vox." + icon_state = "vrobotics" + item_state = "vrobotics" + _color = "vrobotics" + +/obj/item/clothing/under/vox_toxins + name = "Vox Toxins Jumpsuit" + desc = "A Toxin Researcher's jumpsuit ripped to better fit a vox." + icon_state = "vtoxinswhite" + item_state = "vtoxinswhite" + _color = "vtoxinswhite" + +/obj/item/clothing/under/vox_atmos + name = "Vox Atmos Jumpsuit" + desc = "An Atmos Tech's jumpsuit ripped to better fit a vox." + icon_state = "vatmos" + item_state = "vatmos" + _color = "vatmos" + +/obj/item/clothing/under/vox_engi + name = "Vox Engineer Jumpsuit" + desc = "An Engineer's jumpsuit ripped to better fit a vox." + icon_state = "vengine" + item_state = "vengine" + _color = "vengine" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 10) + +/obj/item/clothing/under/vox_toxins + name = "Vox Security Jumpsuit" + desc = "A Security Uniform ripped to better fit a vox." + icon_state = "vred" + item_state = "vred" + _color = "vred" + armor = list(melee = 10, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0) + +/obj/item/clothing/under/vox_toxins + name = "Vox Chemist Jumpsuit" + desc = "A Security Uniform ripped to better fit a vox." + icon_state = "vchem" + item_state = "vchem" + _color = "vchem" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 10, rad = 0) + +/obj/item/clothing/under/psyjump + name = "Psychic Amp Jumpsuit" + desc = "A suit made of strange materials." + icon_state = "psyamp" + item_state = "psyamp" + _color = "psyamp" \ No newline at end of file diff --git a/icons/mob/uniform.dmi b/icons/mob/uniform.dmi index 5a4d4a69f8d..a827c82f0fd 100644 Binary files a/icons/mob/uniform.dmi and b/icons/mob/uniform.dmi differ diff --git a/icons/obj/clothing/uniforms.dmi b/icons/obj/clothing/uniforms.dmi index 69b99a1568e..b37a4a0b58a 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ