Biosuit Code Cleanup and Tweaks (#15233)

This commit is contained in:
SleepyGemmy
2022-12-08 21:33:05 +01:00
committed by GitHub
parent c6b2930176
commit df52af42ca
49 changed files with 236 additions and 341 deletions

View File

@@ -95,12 +95,12 @@ proc/GetAnomalySusceptibility(var/mob/living/carbon/human/H)
var/protected = 0
if(istype(H.wear_suit,/obj/item/clothing/suit/bio_suit/anomaly))
if(istype(H.wear_suit,/obj/item/clothing/suit/hazmat/anomaly))
protected += 0.6
else if(istype(H.wear_suit,/obj/item/clothing/suit/space/anomaly))
protected += 0.5
if(istype(H.head,/obj/item/clothing/head/bio_hood/anomaly))
if(istype(H.head,/obj/item/clothing/head/hazmat/anomaly))
protected += 0.3
else if(istype(H.head,/obj/item/clothing/head/helmet/space/anomaly))
protected += 0.2

View File

@@ -1,13 +1,13 @@
//changes: rad protection up to 100 from 20/50 respectively
/obj/item/clothing/suit/bio_suit/anomaly
/obj/item/clothing/suit/hazmat/anomaly
name = "anomaly suit"
desc = "A sealed bio suit capable of insulating against exotic alien energies."
icon_state = "engspace_suit"
item_state = "engspace_suit"
armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 100)
/obj/item/clothing/head/bio_hood/anomaly
/obj/item/clothing/head/hazmat/anomaly
name = "anomaly hood"
desc = "A sealed bio hood capable of insulating against exotic alien energies."
icon_state = "engspace_helmet"