Live Surgery Is More Painful (#14317)

This commit is contained in:
WickedCybs
2022-06-18 13:15:29 +02:00
committed by GitHub
parent b1713a40c8
commit ebce06d383
2 changed files with 19 additions and 7 deletions
+7 -7
View File
@@ -43,7 +43,7 @@
var/obj/item/organ/external/affected = target.get_organ(target_zone)
user.visible_message("[user] starts the bloodless incision on [target]'s [affected.name] with \the [tool].", \
"You start the bloodless incision on [target]'s [affected.name] with \the [tool].")
target.custom_pain("You feel a horrible, searing pain in your [affected.name]!", 75)
target.custom_pain("You feel a horrible, searing pain in your [affected.name]!", 135)
..()
/decl/surgery_step/generic/cut_with_laser/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
@@ -86,7 +86,7 @@
var/obj/item/organ/external/affected = target.get_organ(target_zone)
user.visible_message("[user] starts to construct a prepared incision on and within [target]'s [affected.name] with \the [tool].", \
"You start to construct a prepared incision on and within [target]'s [affected.name] with \the [tool].")
target.custom_pain("You feel a horrible, searing pain in your [affected.name] as it is pushed apart!", 75)
target.custom_pain("You feel a horrible, searing pain in your [affected.name] as it is pushed apart!", 135)
..()
/decl/surgery_step/generic/incision_manager/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
@@ -133,7 +133,7 @@
var/obj/item/organ/external/affected = target.get_organ(target_zone)
user.visible_message("<b>[user]</b> starts the incision on [target]'s [affected.name] with \the [tool].", \
SPAN_NOTICE("You start the incision on [target]'s [affected.name] with \the [tool]."))
target.custom_pain("You feel a horrible pain as if from a sharp knife in your [affected.name]!", 75)
target.custom_pain("You feel a horrible pain as if from a sharp knife in your [affected.name]!", 145)
..()
/decl/surgery_step/generic/cut_open/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
@@ -177,7 +177,7 @@
var/obj/item/organ/external/affected = target.get_organ(target_zone)
user.visible_message("[user] starts drilling into [target]'s [affected.name] carapace with \the [tool].", \
"You start drilling into [target]'s [affected.name] carapace with \the [tool].")
target.custom_pain("You feel a horrible pain as if from a jackhammer in your [affected.name]!", 75)
target.custom_pain("You feel a horrible pain as if from a jackhammer in your [affected.name]!", 145)
..()
/decl/surgery_step/generic/cut_open_vaurca/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
@@ -219,7 +219,7 @@
var/obj/item/organ/external/affected = target.get_organ(target_zone)
user.visible_message("<b>[user]</b> starts clamping bleeders in [target]'s [affected.name] with \the [tool].", \
"You start clamping bleeders in [target]'s [affected.name] with \the [tool].")
target.custom_pain("The pain in your [affected.name] is maddening!", 75)
target.custom_pain("The pain in your [affected.name] is maddening!", 120)
..()
/decl/surgery_step/generic/clamp_bleeders/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
@@ -265,7 +265,7 @@
msg = "<b>[user]</b> starts to pry open the incision and rearrange the organs in [target]'s lower abdomen with \the [tool]."
self_msg = "You start to pry open the incision and rearrange the organs in [target]'s lower abdomen with \the [tool]."
user.visible_message(msg, SPAN_NOTICE(self_msg))
target.custom_pain("It feels like the skin on your [affected.name] is on fire!", 75)
target.custom_pain("It feels like the skin on your [affected.name] is on fire!", 175)
..()
/decl/surgery_step/generic/retract_skin/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
@@ -317,7 +317,7 @@
var/obj/item/organ/external/affected = target.get_organ(target_zone)
user.visible_message("<b>[user]</b> is beginning to cauterize the incision on [target]'s [affected.name] with \the [tool]." , \
SPAN_NOTICE("You are beginning to cauterize the incision on [target]'s [affected.name] with \the [tool]."))
target.custom_pain("Your [affected.name] is being burned!", 75)
target.custom_pain("Your [affected.name] is being burned!", 120)
..()
/decl/surgery_step/generic/cauterize/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)