From f0f8a89a346864ac554a9ca3c2b33795b89a5155 Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Mon, 21 May 2018 14:40:25 -0400 Subject: [PATCH] Reduce armor on industrial rig Now that we hand them out like candy, they probably shouldn't have way better stats than the security and exploration armors (Also labeled the reasons for the other things being in there while I was in there --- code/modules/clothing/spacesuits/rig/suits/station_vr.dm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/code/modules/clothing/spacesuits/rig/suits/station_vr.dm b/code/modules/clothing/spacesuits/rig/suits/station_vr.dm index f8ef7976d7..58376d36a6 100644 --- a/code/modules/clothing/spacesuits/rig/suits/station_vr.dm +++ b/code/modules/clothing/spacesuits/rig/suits/station_vr.dm @@ -1,3 +1,4 @@ +//Drill added for hazmat suit /obj/item/weapon/rig/hazmat/equipped req_access = list(access_xenoarch) initial_modules = list( @@ -7,8 +8,8 @@ /obj/item/rig_module/device/drill //The suit has nothing to mine with otherwise. ) +//Access restriction and seal delay, plus pat_module and rescue_pharm for medical suit /obj/item/weapon/rig/medical/equipped - req_access = list(access_medical) seal_delay = 5 @@ -19,6 +20,10 @@ /obj/item/rig_module/rescue_pharm ) +//Armor reduction for industrial suit +/obj/item/weapon/rig/industrial + armor = list(melee = 50, bullet = 10, laser = 20, energy = 15, bomb = 30, bio = 100, rad = 50) + //Area allowing backpacks to be placed on rigsuits. /obj/item/weapon/rig/vox allowed = list(/obj/item/weapon/gun,/obj/item/device/flashlight,/obj/item/weapon/tank,/obj/item/device/suit_cooling_unit,/obj/item/weapon/storage/backpack)