diff --git a/code/modules/clothing/spacesuits/rig/suits/station.dm b/code/modules/clothing/spacesuits/rig/suits/station.dm index c5e860a21a..f918abe0d8 100644 --- a/code/modules/clothing/spacesuits/rig/suits/station.dm +++ b/code/modules/clothing/spacesuits/rig/suits/station.dm @@ -18,7 +18,7 @@ /obj/item/clothing/head/helmet/space/rig/hazard light_overlay = "helmet_light_dual" camera_networks = list(NETWORK_SECURITY) - + /obj/item/clothing/head/helmet/space/rig/pursuit light_overlay = "helmet_light_dual" camera_networks = list(NETWORK_SECURITY) @@ -310,7 +310,7 @@ /obj/item/rig_module/grenade_launcher, /obj/item/rig_module/mounted/taser ) - + //A second security suit. Removes the maneuvering jets and nerfs the grenade launcher, and adds the sprinter and flash modules. I removed the maneuvering jets to discourage lone-wolf style gameplay because other sec officers don't get jetpacks very easily. /obj/item/weapon/rig/pursuit name = "pursuit hardsuit control module" @@ -346,3 +346,32 @@ /obj/item/rig_module/grenade_launcher/nerfed, /obj/item/rig_module/mounted/taser ) + +//Civilian EVA RIG. +/obj/item/weapon/rig/civ + name = "KWI control module" + suit_type = "civilan hardsuit" + desc = "A Kai Wan Innovations civilian light EVA RIG." + icon_state = "kwi_rig" + armor = list(melee = 10, bullet = 5, laser = 5, energy = 0, bomb = 5, bio = 100, rad = 30) + slowdown = 1 + offline_vision_restriction = 1 + siemens_coefficient= 0.75 + + helm_type = /obj/item/clothing/head/helmet/space/rig/eva + + allowed = list( + /obj/item/device/flashlight, + /obj/item/weapon/tank, + /obj/item/device/suit_cooling_unit, + /obj/item/weapon/storage/backpack, + ) + + req_access = list() + req_one_access = list() + +/obj/item/weapon/rig/civ/equipped + + initial_modules = list( + /obj/item/rig_module/maneuvering_jets, + )