diff --git a/code/defines/obj/clothing/head.dm b/code/defines/obj/clothing/head.dm index d8557153159..fe4d70dfe6e 100644 --- a/code/defines/obj/clothing/head.dm +++ b/code/defines/obj/clothing/head.dm @@ -116,12 +116,18 @@ icon_state = "marisa" /obj/item/clothing/head/chefhat - name = "Chef's hat" + name = "Chef's Hat" icon_state = "chef" item_state = "chef" desc = "The commander in chef's head wear." flags = FPRINT | TABLEPASS | HEADSPACE +/obj/item/clothing/head/mailman + name = "Mailman Hat" + icon_state = "mailman" + desc = "Right-on-time mail ervice head wear." + flags = FPRINT | TABLEPASS | HEADSPACE + /obj/item/clothing/head/plaguedoctorhat name = "Plague doctor's hat" desc = "Once used by Plague doctors. Now useless." diff --git a/code/defines/obj/clothing/jumpsuit.dm b/code/defines/obj/clothing/jumpsuit.dm index a294be2acf8..23aa7a6ba08 100644 --- a/code/defines/obj/clothing/jumpsuit.dm +++ b/code/defines/obj/clothing/jumpsuit.dm @@ -156,6 +156,14 @@ color = "red" armor = list(melee = 10, bullet = 5, laser = 5, taser = 5, bomb = 5, bio = 0, rad = 0) +/obj/item/clothing/under/rank/vice + name = "Vice officer Jumpsuit" + desc = "Your standard issue pretty-boy outfit, as seen on TV." + icon_state = "vice" + item_state = "gy_suit" + color = "vice" + armor = list(melee = 10, bullet = 5, laser = 5, taser = 5, bomb = 5, bio = 0, rad = 0) + /obj/item/clothing/under/rank/geneticist desc = "Made of a special fiber that gives special protection against biohazards. Has a genetics rank stripe on it." name = "Genetics Jumpsuit" @@ -283,6 +291,13 @@ item_state = "lb_suit" color = "cargo" +/obj/item/clothing/under/rank/mailman + name = "Mailman Jumpsuit" + desc = "Special delivery!" + icon_state = "mailman" + item_state = "b_suit" + color = "mailman" + /obj/item/clothing/under/sexyclown name = "Sexyclown suit" desc = "What can I do for you?" diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index 5cf1272bcd8..eb0409ec1f1 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/mob/uniform.dmi b/icons/mob/uniform.dmi index d4506af54a5..684a206801f 100644 Binary files a/icons/mob/uniform.dmi and b/icons/mob/uniform.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 35cdf49ce53..906266cd611 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/uniforms.dmi b/icons/obj/clothing/uniforms.dmi index 8a06e48cb43..c0b4ab712eb 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ diff --git a/icons/obj/computer.dmi b/icons/obj/computer.dmi index 0a22816d9c0..07ba7f4f815 100644 Binary files a/icons/obj/computer.dmi and b/icons/obj/computer.dmi differ