From 67cafffac5e5acd55a0c2fbcf1dee8f02b9b1afc Mon Sep 17 00:00:00 2001 From: Razgriz Date: Sun, 26 May 2019 12:50:21 -0700 Subject: [PATCH 1/2] Teshari Security Cloak armor Teshari Security Cloak has 1:1 stats with security armor vest. --- code/modules/clothing/suits/aliens/seromi.dm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/code/modules/clothing/suits/aliens/seromi.dm b/code/modules/clothing/suits/aliens/seromi.dm index 801ee05709..3c969a1a6d 100644 --- a/code/modules/clothing/suits/aliens/seromi.dm +++ b/code/modules/clothing/suits/aliens/seromi.dm @@ -227,9 +227,14 @@ /obj/item/clothing/suit/storage/seromi/cloak/jobs/sec name = "Security cloak" - desc = "A soft teshari cloak made for the Security department" + desc = "A soft teshari cloak made for the Security department. This one is made with stronger fibers." icon_state = "tesh_cloak_sec" item_state = "tesh_cloak_sec" + allowed = list(/obj/item/weapon/gun/energy,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/weapon/gun/projectile,/obj/item/ammo_magazine,/obj/item/ammo_casing,/obj/item/weapon/melee/baton,/obj/item/weapon/handcuffs,/obj/item/device/flashlight/maglight,/obj/item/clothing/head/helmet) + body_parts_covered = UPPER_TORSO|LOWER_TORSO + item_flags = THICKMATERIAL + siemens_coefficient = 0.6 + armor = list(melee = 40, bullet = 30, laser = 30, energy = 10, bomb = 10, bio = 0, rad = 0) /obj/item/clothing/suit/storage/seromi/cloak/jobs/qm name = "Quartermaster's cloak" From 57760acd0926c73004bfdae3f8a99b5c78240078 Mon Sep 17 00:00:00 2001 From: Razgriz Date: Sun, 26 May 2019 12:52:07 -0700 Subject: [PATCH 2/2] Teshari Security Undercloak armor Teshari Security Undercloak has 1:1 stats with security jumpsuits. --- code/modules/clothing/under/xenos/seromi.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/clothing/under/xenos/seromi.dm b/code/modules/clothing/under/xenos/seromi.dm index ec79ac5e6d..766cdb8169 100644 --- a/code/modules/clothing/under/xenos/seromi.dm +++ b/code/modules/clothing/under/xenos/seromi.dm @@ -262,9 +262,12 @@ /obj/item/clothing/under/seromi/undercoat/jobs/sec name = "Security undercoat" - desc = "A traditional teshari garb made for the Security department" + desc = "A traditional teshari garb made for the Security department. Made with slightly sturdier materials" icon_state = "tesh_uniform_sec" item_state = "tesh_uniform_sec" + armor = list(melee = 10, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0) + siemens_coefficient = 0.9 + body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS /obj/item/clothing/under/seromi/undercoat/jobs/qm name = "Quartermaster's undercoat"