From 2a46b83dce7a4b4f9da9d6106c249c8ef57f076e Mon Sep 17 00:00:00 2001 From: PsiOmega Date: Wed, 13 Aug 2014 09:35:04 +0200 Subject: [PATCH] Adds new items. Source: https://github.com/Baystation12/Baystation12/pull/5928 --- .../crates_lockers/closets/secure/security.dm | 2 ++ code/modules/clothing/head/jobs.dm | 15 +++++++++++++++ 2 files changed, 17 insertions(+) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security.dm b/code/game/objects/structures/crates_lockers/closets/secure/security.dm index 30d6c758a3..8252934c1e 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/security.dm @@ -123,6 +123,7 @@ new /obj/item/weapon/gun/energy/gun(src) new /obj/item/clothing/tie/holster/waist(src) new /obj/item/weapon/melee/telebaton(src) + new /obj/item/clothing/head/beret/sec/hos(src) return @@ -160,6 +161,7 @@ new /obj/item/weapon/melee/baton/loaded(src) new /obj/item/weapon/gun/energy/taser(src) new /obj/item/weapon/storage/box/holobadge(src) + new /obj/item/clothing/head/beret/sec/warden(src) return diff --git a/code/modules/clothing/head/jobs.dm b/code/modules/clothing/head/jobs.dm index 83a34e5c9a..8ec2ef98ed 100644 --- a/code/modules/clothing/head/jobs.dm +++ b/code/modules/clothing/head/jobs.dm @@ -63,6 +63,21 @@ desc = "A beret with the security insignia emblazoned on it. For officers that are more inclined towards style than safety." icon_state = "beret_badge" flags = FPRINT | TABLEPASS +/obj/item/clothing/head/beret/sec/alt + name = "officer beret" + desc = "A navy blue beret with an officer's rank emblem. For officers that are more inclined towards style than safety." + icon_state = "officerberet" + flags = FPRINT | TABLEPASS +/obj/item/clothing/head/beret/sec/hos + name = "officer beret" + desc = "A navy blue beret with a commander's rank emblem. For officers that are more inclined towards style than safety." + icon_state = "hosberet" + flags = FPRINT | TABLEPASS +/obj/item/clothing/head/beret/sec/warden + name = "warden beret" + desc = "A navy blue beret with a warden's rank emblem. For officers that are more inclined towards style than safety." + icon_state = "wardenberet" + flags = FPRINT | TABLEPASS /obj/item/clothing/head/beret/eng name = "engineering beret" desc = "A beret with the engineering insignia emblazoned on it. For engineers that are more inclined towards style than safety."