diff --git a/code/game/objects/structures/crates_lockers/closets/secure/scientist.dm b/code/game/objects/structures/crates_lockers/closets/secure/scientist.dm index 489e759b25f..c932b4cbd4e 100755 --- a/code/game/objects/structures/crates_lockers/closets/secure/scientist.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/scientist.dm @@ -15,6 +15,7 @@ new /obj/item/clothing/under/rank/rnd/research_director/alt/skirt(src) new /obj/item/clothing/under/rank/rnd/research_director/turtleneck(src) new /obj/item/clothing/under/rank/rnd/research_director/turtleneck/skirt(src) + new /obj/item/clothing/head/beret/science(src) new /obj/item/clothing/shoes/sneakers/brown(src) new /obj/item/cartridge/rd(src) new /obj/item/radio/headset/heads/rd(src) diff --git a/code/modules/clothing/head/jobs.dm b/code/modules/clothing/head/jobs.dm index f5dbfeabe0f..16ef8f31fe1 100644 --- a/code/modules/clothing/head/jobs.dm +++ b/code/modules/clothing/head/jobs.dm @@ -273,6 +273,13 @@ desc = "A special beret with the security insignia emblazoned on it. For officers with class." icon_state = "officerberet" +//Science + +/obj/item/clothing/head/beret/science + name = "science beret" + desc = "A science-themed beret for our hardworking scientists." + icon_state = "sciberet" + //Curator /obj/item/clothing/head/fedora/curator name = "treasure hunter's fedora" diff --git a/code/modules/vending/wardrobes.dm b/code/modules/vending/wardrobes.dm index 6a5919e6f63..0400a7c0b33 100644 --- a/code/modules/vending/wardrobes.dm +++ b/code/modules/vending/wardrobes.dm @@ -169,6 +169,7 @@ products = list(/obj/item/clothing/accessory/pocketprotector = 3, /obj/item/storage/backpack/science = 3, /obj/item/storage/backpack/satchel/tox = 3, + /obj/item/clothing/head/beret/science = 3, /obj/item/clothing/suit/hooded/wintercoat/science = 3, /obj/item/clothing/under/rank/rnd/scientist = 3, /obj/item/clothing/under/rank/rnd/scientist/skirt = 3, diff --git a/icons/mob/clothing/head.dmi b/icons/mob/clothing/head.dmi index 55be32425af..a350cafebe5 100644 Binary files a/icons/mob/clothing/head.dmi and b/icons/mob/clothing/head.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index b91b8b9228e..97e3af4767a 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ