diff --git a/code/modules/client/preferences_gear.dm b/code/modules/client/preferences_gear.dm index 5be7e2dcde7..a3d9d3078b6 100644 --- a/code/modules/client/preferences_gear.dm +++ b/code/modules/client/preferences_gear.dm @@ -378,6 +378,13 @@ var/global/list/gear_datums = list() slot = slot_w_uniform cost = 1 +/datum/gear/roboticist_skirt + display_name = "skirt, roboticist" + path = /obj/item/clothing/under/rank/roboticist/skirt + slot = slot_w_uniform + cost = 1 + allowed_roles = list("Roboticist") + /datum/gear/amishsuit display_name = "suit, amish" path = /obj/item/clothing/under/sl_suit diff --git a/code/modules/clothing/under/jobs/engineering.dm b/code/modules/clothing/under/jobs/engineering.dm index 8be9807e1f4..4592ed8e229 100644 --- a/code/modules/clothing/under/jobs/engineering.dm +++ b/code/modules/clothing/under/jobs/engineering.dm @@ -23,8 +23,14 @@ armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 10) /obj/item/clothing/under/rank/roboticist - desc = "It's a slimming black with reinforced seams; great for industrial work." + desc = "It's a slimming black jumpsuit with reinforced seams; great for industrial work." name = "roboticist's jumpsuit" icon_state = "robotics" item_state = "bl_suit" - worn_state = "robotics" \ No newline at end of file + worn_state = "robotics" + +/obj/item/clothing/under/rank/roboticist/skirt + desc = "It's a slimming black jumpskirt with reinforced seams; great for industrial work." + name = "roboticist's jumpskirt" + icon_state = "roboticsf" + worn_state = "roboticsf" diff --git a/icons/mob/uniform.dmi b/icons/mob/uniform.dmi index de2bd284c7c..045220744bd 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 b20992ad573..7fc6a1c121e 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ