diff --git a/code/defines/obj/clothing/jumpsuit.dm b/code/defines/obj/clothing/jumpsuit.dm index dc4ca23c7a5..c4e10760604 100644 --- a/code/defines/obj/clothing/jumpsuit.dm +++ b/code/defines/obj/clothing/jumpsuit.dm @@ -174,9 +174,18 @@ /obj/item/clothing/under/rank/chemist desc = "Made of a special fiber that gives special protection against biohazards. Has a chemist rank stripe on it." name = "Chemist Jumpsuit" - icon_state = "genetics" + icon_state = "chemistry" item_state = "w_suit" - color = "geneticswhite" + color = "chemistrywhite" + permeability_coefficient = 0.50 + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 10, rad = 0) + +/obj/item/clothing/under/rank/virologist + desc = "Made of a special fiber that gives special protection against biohazards. Has a virologist rank stripe on it." + name = "Virologist Jumpsuit" + icon_state = "virology" + item_state = "w_suit" + color = "virologywhite" permeability_coefficient = 0.50 armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 10, rad = 0) diff --git a/code/game/jobs/job/medical.dm b/code/game/jobs/job/medical.dm index 303b1621591..0107374c7f6 100644 --- a/code/game/jobs/job/medical.dm +++ b/code/game/jobs/job/medical.dm @@ -91,7 +91,7 @@ H.equip_if_possible(new /obj/item/device/radio/headset/headset_medsci(H), H.slot_ears) H.equip_if_possible(new /obj/item/weapon/storage/backpack/medic (H), H.slot_back) H.equip_if_possible(new /obj/item/weapon/storage/box/survival(H.back), H.slot_in_backpack) - H.equip_if_possible(new /obj/item/clothing/under/rank/medical(H), H.slot_w_uniform) + H.equip_if_possible(new /obj/item/clothing/under/rank/virologist(H), H.slot_w_uniform) H.equip_if_possible(new /obj/item/device/pda/medical(H), H.slot_belt) H.equip_if_possible(new /obj/item/clothing/mask/surgical(H), H.slot_wear_mask) H.equip_if_possible(new /obj/item/clothing/shoes/white(H), H.slot_shoes) diff --git a/code/game/jobs/job/science.dm b/code/game/jobs/job/science.dm index 016ada28f6e..72ba19f13bb 100644 --- a/code/game/jobs/job/science.dm +++ b/code/game/jobs/job/science.dm @@ -44,7 +44,7 @@ return 1 - +//Chemist is a medical job damnit /datum/job/chemist title = "Chemist" flag = CHEMIST diff --git a/icons/mob/uniform.dmi b/icons/mob/uniform.dmi index 6f87248d903..abe2ae1481a 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 ed3c939347b..9aaf68a9818 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ