diff --git a/code/datums/supplypacks/voidsuits.dm b/code/datums/supplypacks/voidsuits.dm index 2d1ae7c99a..c28b3e9559 100644 --- a/code/datums/supplypacks/voidsuits.dm +++ b/code/datums/supplypacks/voidsuits.dm @@ -266,4 +266,13 @@ cost = 150 containertype = /obj/structure/closet/crate/oculum containername = "Vox Engineering Hardsuit" + +/datum/supply_pack/voidsuits/voxsec + name = "Vox Security Hardsuit" + contains = list (/obj/item/weapon/rig/vox/security) + cost = 90 + containertype = /obj/structure/closet/crate/secure/heph + containername = "Vox security Rigsuit Crate" + access = access_security + //ChompEdit End diff --git a/code/modules/clothing/spacesuits/rig/suits/alien.dm b/code/modules/clothing/spacesuits/rig/suits/alien.dm index 95fbe88ca3..96a3c731a7 100644 --- a/code/modules/clothing/spacesuits/rig/suits/alien.dm +++ b/code/modules/clothing/spacesuits/rig/suits/alien.dm @@ -189,3 +189,32 @@ ) //ChompEdit Ends + + +//Chompedit Begins + +/obj/item/weapon/rig/vox/security + name = "sturdy alien control module" + suit_type = "dense alien" + icon_state = "vox_rig" + desc = "A medium weight, alien control module. Built sturdy for security engagements." + armor = list (melee = 60, bullet = 50, laser = 40, energy = 10, bomb = 20, bio = 100, rad = 50) //CE suit values but shuffled to a tighter focus on the job hazards + flags = PHORONGUARD + item_flags = THICKMATERIAL + siemens_coefficient = 0.5 + offline_slowdown = 5 + slowdown = 0 + emp_protection = 40 //change this to 30 if too high. + + req_one_access = list() + allowed = list(/obj/item/device/flashlight,/obj/item/weapon/tank,/obj/item/device/suit_cooling_unit,/obj/item/weapon/storage) + offline_vision_restriction = 1 + + initial_modules = list( + ) + + air_type = /obj/item/weapon/tank/vox + + max_heat_protection_temperature = FIRE_HELMET_MAX_HEAT_PROTECTION_TEMPERATURE + + //ChompEdit Ends