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)