diff --git a/code/modules/clothing/spacesuits/rig.dm b/code/modules/clothing/spacesuits/rig.dm index 3b120ac067c..1981273058e 100644 --- a/code/modules/clothing/spacesuits/rig.dm +++ b/code/modules/clothing/spacesuits/rig.dm @@ -3,6 +3,7 @@ desc = "A special helmet designed for work in a hazardous, low-pressure environment. Has radiation shielding." icon_state = "rig-engineering" item_state = "rig_helm" + radiation_protection = 0.25 armor = list(melee = 40, bullet = 5, laser = 20, taser = 5, bomb = 35, bio = 50, rad = 50) allowed = list(/obj/item/device/flashlight) @@ -13,6 +14,13 @@ desc = "A special helmet designed for work in a hazardous, low-pressure environment. Has extra protection against common mining hazards." armor = list(melee = 45, bullet = 10, laser = 20, taser = 5, bomb = 35, bio = 50, rad = 25) //Slightly more robust since it doesn't have extra radiation shielding. +/obj/item/clothing/head/helmet/space/rig/elite + name = "Elite RIG helmet" + icon_state = "whiterig" + item_state = "whiterig" + desc = "A special armored helmet designed for work in space battlefield conditions." + armor = list(melee = 60, bullet = 50, laser = 30, taser = 15, bomb = 40, bio = 50, rad = 30) + /obj/item/clothing/suit/space/rig name = "engineer RIG suit" desc = "A special suit that protects against hazardous, low pressure environments. Has radiation shielding." @@ -29,4 +37,13 @@ item_state = "rig_suit" name = "mining RIG suit" desc = "A special suit that protects against hazardous, low pressure environments. Has extra protection against common mining hazards." - armor = list(melee = 45, bullet = 10, laser = 20, taser = 5, bomb = 35, bio = 50, rad = 25) //Slightly more robust since it doesn't have extra radiation shielding. \ No newline at end of file + armor = list(melee = 45, bullet = 10, laser = 20, taser = 5, bomb = 35, bio = 50, rad = 25) //Slightly more robust since it doesn't have extra radiation shielding. + +/obj/item/clothing/suit/space/rig/elite + icon_state = "whiterig" + item_state = "whiterig" + name = "Elite RIG suit" + desc = "A special suit that protects against hazardous, low pressure battlefield enviroments. Designed to hold larger oxygen tanks and advanced Nanotrasen tools." + protective_temperature = 10000 + armor = list(melee = 60, bullet = 50, laser = 30, taser = 15, bomb = 40, bio = 50, rad = 30) + allowed = list(/obj/item/device/flashlight,/obj/item/weapon/tank,/obj/item/weapon/satchel,/obj/item/device/t_scanner,/obj/item/weapon/satchel/pickaxe, /obj/item/weapon/rcd) \ No newline at end of file diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index 338c427738d..62b06e9de3f 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index e5ec477f0a7..c48a6f143ba 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 4bddd9e8e6f..561d9dc78a6 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index e8859491122..2c82dedba2e 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ