Robolimb Durability Buff (#7827)

Instead of breaking at ten damage, robolimbs now break at around the same time as human limbs. However, more fuel and cable is required to fix them.
This commit is contained in:
ParadoxSpace
2020-01-01 15:33:32 +01:00
committed by Matt Atlas
parent f5fdc8b6ac
commit c66f1018da
3 changed files with 46 additions and 4 deletions
+1 -1
View File
@@ -1094,7 +1094,7 @@ Note that amputating the affected organ does in fact remove the infection from t
return ..() && !is_dislocated() && !(status & ORGAN_TENDON_CUT) && (!can_feel_pain() || get_pain() < pain_disability_threshold) && brute_ratio < 1 && burn_ratio < 1
/obj/item/organ/external/proc/is_malfunctioning()
return ((status & ORGAN_ROBOT) && (brute_dam + burn_dam) >= 10 && prob(brute_dam + burn_dam))
return (BP_IS_ROBOTIC(src) && (brute_ratio + burn_ratio) >= 0.3 && prob(brute_dam + burn_dam))
/obj/item/organ/external/proc/embed(var/obj/item/W, var/silent = 0, var/supplied_message)
if(!owner || loc != owner)