IPCs, prosthetics, suits

Fixes suit cooling units so they no longer have infinite power.  Made
their batteries last much longer, too.

Anom suits can now hold suit coolers.  Softsuits can now hold large o2
tanks.

Prosthetics now malfunction at brute+burn-11% chance so getting your arm
scratched doesn't turn you into humpty dumpty.

BSTs get a new verb to ruin everything.
This commit is contained in:
Duck-
2014-12-21 22:49:07 -05:00
parent 55bf1fe2eb
commit dc69cf69c0
7 changed files with 59 additions and 35 deletions
+1 -1
View File
@@ -816,7 +816,7 @@ Note that amputating the affected organ does in fact remove the infection from t
return ((status & ORGAN_BROKEN) && !(status & ORGAN_SPLINTED))
/datum/organ/external/proc/is_malfunctioning()
return ((status & ORGAN_ROBOT) && prob(brute_dam + burn_dam))
return ((status & ORGAN_ROBOT) && prob(brute_dam + burn_dam - 11))
//for arms and hands
/datum/organ/external/proc/process_grasp(var/obj/item/c_hand, var/hand_name)