From a4e78be3cc96cb7bdc3b50e516ea2fb9b2e65474 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Fri, 30 Jan 2015 21:44:40 -0500 Subject: [PATCH] Damage Nerf --- code/modules/mob/mob.dm | 2 +- code/modules/organs/organ_external.dm | 2 +- code/modules/surgery/implant.dm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index 0f008d9f81a..4c9608945c0 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -1200,7 +1200,7 @@ mob/proc/yank_out_object() H.shock_stage+=10 if(prob(10)) //I'M SO ANEMIC I COULD JUST -DIE-. - var/datum/wound/internal_bleeding/I = new (15) + var/datum/wound/internal_bleeding/I = new () affected.wounds += I H.custom_pain("Something tears wetly in your [affected] as [selection] is pulled free!", 1) diff --git a/code/modules/organs/organ_external.dm b/code/modules/organs/organ_external.dm index 1f7da7049b2..6eb7897b10e 100644 --- a/code/modules/organs/organ_external.dm +++ b/code/modules/organs/organ_external.dm @@ -230,7 +230,7 @@ This function completely restores a damaged organ to perfect condition. //Possibly trigger an internal wound, too. var/local_damage = brute_dam + burn_dam + damage if(damage > 15 && type != BURN && local_damage > 30 && prob(damage) && !(status & ORGAN_ROBOT)) - var/datum/wound/internal_bleeding/I = new (15) + var/datum/wound/internal_bleeding/I = new () wounds += I owner.custom_pain("You feel something rip in your [display_name]!", 1) diff --git a/code/modules/surgery/implant.dm b/code/modules/surgery/implant.dm index 6697c4cfc56..251f182610a 100644 --- a/code/modules/surgery/implant.dm +++ b/code/modules/surgery/implant.dm @@ -129,7 +129,7 @@ "\blue You put \the [tool] inside [target]'s [get_cavity(affected)] cavity." ) if (tool.w_class > get_max_wclass(affected)/2 && prob(50)) user << "\red You tear some vessels trying to fit such big object in this cavity." - var/datum/wound/internal_bleeding/I = new (15) + var/datum/wound/internal_bleeding/I = new () affected.wounds += I affected.owner.custom_pain("You feel something rip in your [affected.display_name]!", 1) user.drop_item()