diff --git a/code/modules/surgery/bones.dm b/code/modules/surgery/bones.dm
index c994d6259c7..6a48eb198dd 100644
--- a/code/modules/surgery/bones.dm
+++ b/code/modules/surgery/bones.dm
@@ -31,21 +31,21 @@
/datum/surgery_step/glue_bone/begin_step(mob/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
if (affected.stage == 0)
- user.visible_message("[user] starts applying medication to the damaged bones in [target]'s [affected.name] with \the [tool]." , \
- "You start applying medication to the damaged bones in [target]'s [affected.name] with \the [tool].")
+ user.visible_message("[user] starts applying medication to the damaged bones in [target]'s [affected.name] with \the [tool]." , \
+ "You start applying medication to the damaged bones in [target]'s [affected.name] with \the [tool].")
target.custom_pain("Something in your [affected.name] is causing you a lot of pain!", 50)
..()
/datum/surgery_step/glue_bone/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user] applies some [tool] to [target]'s bone in [affected.name]", \
- "You apply some [tool] to [target]'s bone in [affected.name] with \the [tool].")
+ user.visible_message("[user] applies some [tool] to [target]'s bone in [affected.name]", \
+ "You apply some [tool] to [target]'s bone in [affected.name] with \the [tool].")
affected.stage = 1
/datum/surgery_step/glue_bone/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, smearing [tool] in the incision in [target]'s [affected.name]!" , \
- "Your hand slips, smearing [tool] in the incision in [target]'s [affected.name]!")
+ user.visible_message("[user]'s hand slips, smearing [tool] in the incision in [target]'s [affected.name]!" , \
+ "Your hand slips, smearing [tool] in the incision in [target]'s [affected.name]!")
///////////////////////////////////////////////////////////////
// Bone Setting Surgery
@@ -71,26 +71,26 @@
/datum/surgery_step/set_bone/begin_step(mob/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user] is beginning to set the bone in [target]'s [affected.name] in place with \the [tool]." , \
- "You are beginning to set the bone in [target]'s [affected.name] in place with \the [tool].")
+ user.visible_message("[user] is beginning to set the bone in [target]'s [affected.name] in place with \the [tool]." , \
+ "You are beginning to set the bone in [target]'s [affected.name] in place with \the [tool].")
target.custom_pain("The pain in your [affected.name] is going to make you pass out!", 50)
..()
/datum/surgery_step/set_bone/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
if (affected.status & ORGAN_BROKEN)
- user.visible_message("[user] sets the bone in [target]'s [affected.name] in place with \the [tool].", \
- "You set the bone in [target]'s [affected.name] in place with \the [tool].")
+ user.visible_message("[user] sets the bone in [target]'s [affected.name] in place with \the [tool].", \
+ "You set the bone in [target]'s [affected.name] in place with \the [tool].")
affected.stage = 2
else
- user.visible_message("[user] sets the bone in [target]'s [affected.name] in the WRONG place with \the [tool].", \
- "You set the bone in [target]'s [affected.name] in the WRONG place with \the [tool].")
+ user.visible_message("[user] sets the bone in [target]'s [affected.name] in the WRONG place with \the [tool].", \
+ "You set the bone in [target]'s [affected.name] in the WRONG place with \the [tool].")
affected.fracture()
/datum/surgery_step/set_bone/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, damaging the bone in [target]'s [affected.name] with \the [tool]!" , \
- "Your hand slips, damaging the bone in [target]'s [affected.name] with \the [tool]!")
+ user.visible_message("[user]'s hand slips, damaging the bone in [target]'s [affected.name] with \the [tool]!" , \
+ "Your hand slips, damaging the bone in [target]'s [affected.name] with \the [tool]!")
affected.createwound(BRUISE, 5)
///////////////////////////////////////////////////////////////
@@ -116,20 +116,20 @@
return affected && affected.organ_tag == BP_HEAD && (affected.robotic < ORGAN_ROBOT) && affected.open >= 2 && affected.stage == 1
/datum/surgery_step/mend_skull/begin_step(mob/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
- user.visible_message("[user] is beginning to piece together [target]'s skull with \the [tool]." , \
- "You are beginning to piece together [target]'s skull with \the [tool].")
+ user.visible_message("[user] is beginning to piece together [target]'s skull with \the [tool]." , \
+ "You are beginning to piece together [target]'s skull with \the [tool].")
..()
/datum/surgery_step/mend_skull/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user] sets [target]'s skull with \the [tool]." , \
- "You set [target]'s skull with \the [tool].")
+ user.visible_message("[user] sets [target]'s skull with \the [tool]." , \
+ "You set [target]'s skull with \the [tool].")
affected.stage = 2
/datum/surgery_step/mend_skull/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, damaging [target]'s face with \the [tool]!" , \
- "Your hand slips, damaging [target]'s face with \the [tool]!")
+ user.visible_message("[user]'s hand slips, damaging [target]'s face with \the [tool]!" , \
+ "Your hand slips, damaging [target]'s face with \the [tool]!")
var/obj/item/organ/external/head/h = affected
h.createwound(BRUISE, 10)
h.disfigured = 1
@@ -161,21 +161,21 @@
/datum/surgery_step/finish_bone/begin_step(mob/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user] starts to finish mending the damaged bones in [target]'s [affected.name] with \the [tool].", \
- "You start to finish mending the damaged bones in [target]'s [affected.name] with \the [tool].")
+ user.visible_message("[user] starts to finish mending the damaged bones in [target]'s [affected.name] with \the [tool].", \
+ "You start to finish mending the damaged bones in [target]'s [affected.name] with \the [tool].")
..()
/datum/surgery_step/finish_bone/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user] has mended the damaged bones in [target]'s [affected.name] with \the [tool]." , \
- "You have mended the damaged bones in [target]'s [affected.name] with \the [tool]." )
+ user.visible_message("[user] has mended the damaged bones in [target]'s [affected.name] with \the [tool]." , \
+ "You have mended the damaged bones in [target]'s [affected.name] with \the [tool]." )
affected.status &= ~ORGAN_BROKEN
affected.stage = 0
/datum/surgery_step/finish_bone/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, smearing [tool] in the incision in [target]'s [affected.name]!" , \
- "Your hand slips, smearing [tool] in the incision in [target]'s [affected.name]!")
+ user.visible_message("[user]'s hand slips, smearing [tool] in the incision in [target]'s [affected.name]!" , \
+ "Your hand slips, smearing [tool] in the incision in [target]'s [affected.name]!")
///////////////////////////////////////////////////////////////
// Bone Clamp Surgery
@@ -203,19 +203,19 @@
/datum/surgery_step/clamp_bone/begin_step(mob/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
if (affected.stage == 0)
- user.visible_message("[user] starts repairing the damaged bones in [target]'s [affected.name] with \the [tool]." , \
- "You starts repairing the damaged bones in [target]'s [affected.name] with \the [tool].")
+ user.visible_message("[user] starts repairing the damaged bones in [target]'s [affected.name] with \the [tool]." , \
+ "You starts repairing the damaged bones in [target]'s [affected.name] with \the [tool].")
target.custom_pain("Something in your [affected.name] is causing you a lot of pain!", 50)
..()
/datum/surgery_step/clamp_bone/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user] sets the bone in [target]'s [affected.name] with \the [tool].", \
- "You sets [target]'s bone in [affected.name] with \the [tool].")
+ user.visible_message("[user] sets the bone in [target]'s [affected.name] with \the [tool].", \
+ "You sets [target]'s bone in [affected.name] with \the [tool].")
affected.status &= ~ORGAN_BROKEN
/datum/surgery_step/clamp_bone/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, damaging the bone in [target]'s [affected.name] with \the [tool]!" , \
- "Your hand slips, damaging the bone in [target]'s [affected.name] with \the [tool]!")
+ user.visible_message("[user]'s hand slips, damaging the bone in [target]'s [affected.name] with \the [tool]!" , \
+ "Your hand slips, damaging the bone in [target]'s [affected.name] with \the [tool]!")
affected.createwound(BRUISE, 5)
\ No newline at end of file
diff --git a/code/modules/surgery/encased.dm b/code/modules/surgery/encased.dm
index 6111e56fc8c..d69c456f7ce 100644
--- a/code/modules/surgery/encased.dm
+++ b/code/modules/surgery/encased.dm
@@ -50,8 +50,8 @@
return
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user] has cut [target]'s [affected.encased] open with \the [tool].", \
- "You have cut [target]'s [affected.encased] open with \the [tool].")
+ user.visible_message("[user] has cut [target]'s [affected.encased] open with \the [tool].", \
+ "You have cut [target]'s [affected.encased] open with \the [tool].")
affected.open = 2.5
/datum/surgery_step/open_encased/saw/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
@@ -59,8 +59,8 @@
return
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, cracking [target]'s [affected.encased] with \the [tool]!" , \
- "Your hand slips, cracking [target]'s [affected.encased] with \the [tool]!" )
+ user.visible_message("[user]'s hand slips, cracking [target]'s [affected.encased] with \the [tool]!" , \
+ "Your hand slips, cracking [target]'s [affected.encased] with \the [tool]!" )
affected.createwound(CUT, 20)
affected.fracture()
@@ -100,8 +100,8 @@
if (!hasorgans(target))
return
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- var/msg = "[user] forces open [target]'s [affected.encased] with \the [tool]."
- var/self_msg = "You force open [target]'s [affected.encased] with \the [tool]."
+ var/msg = "[user] forces open [target]'s [affected.encased] with \the [tool]."
+ var/self_msg = "You force open [target]'s [affected.encased] with \the [tool]."
user.visible_message(msg, self_msg)
affected.open = 3
@@ -111,8 +111,8 @@
return
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- var/msg = "[user]'s hand slips, cracking [target]'s [affected.encased]!"
- var/self_msg = "Your hand slips, cracking [target]'s [affected.encased]!"
+ var/msg = "[user]'s hand slips, cracking [target]'s [affected.encased]!"
+ var/self_msg = "Your hand slips, cracking [target]'s [affected.encased]!"
user.visible_message(msg, self_msg)
affected.createwound(BRUISE, 20)
@@ -154,8 +154,8 @@
return
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- var/msg = "[user] bends [target]'s [affected.encased] back into place with \the [tool]."
- var/self_msg = "You bend [target]'s [affected.encased] back into place with \the [tool]."
+ var/msg = "[user] bends [target]'s [affected.encased] back into place with \the [tool]."
+ var/self_msg = "You bend [target]'s [affected.encased] back into place with \the [tool]."
user.visible_message(msg, self_msg)
affected.open = 2.5
@@ -165,15 +165,15 @@
return
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- var/msg = "[user]'s hand slips, bending [target]'s [affected.encased] the wrong way!"
- var/self_msg = "Your hand slips, bending [target]'s [affected.encased] the wrong way!"
+ var/msg = "[user]'s hand slips, bending [target]'s [affected.encased] the wrong way!"
+ var/self_msg = "Your hand slips, bending [target]'s [affected.encased] the wrong way!"
user.visible_message(msg, self_msg)
affected.createwound(BRUISE, 20)
affected.fracture()
/*if (prob(40)) //TODO: ORGAN REMOVAL UPDATE.
- user.visible_message(" A rib pierces the lung!")
+ user.visible_message(" A rib pierces the lung!")
target.rupture_lung()*/
///////////////////////////////////////////////////////////////
@@ -212,8 +212,8 @@
return
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- var/msg = "[user] applied \the [tool] to [target]'s [affected.encased]."
- var/self_msg = "You applied \the [tool] to [target]'s [affected.encased]."
+ var/msg = "[user] applied \the [tool] to [target]'s [affected.encased]."
+ var/self_msg = "You applied \the [tool] to [target]'s [affected.encased]."
user.visible_message(msg, self_msg)
affected.open = 2
@@ -252,8 +252,8 @@
return
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user] has cut [target]'s [affected.encased] wide open with \the [tool].", \
- "You have cut [target]'s [affected.encased] wide open with \the [tool].")
+ user.visible_message("[user] has cut [target]'s [affected.encased] wide open with \the [tool].", \
+ "You have cut [target]'s [affected.encased] wide open with \the [tool].")
affected.open = 3
/datum/surgery_step/open_encased/advancedsaw_open/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
@@ -261,8 +261,8 @@
return
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, searing [target]'s [affected.encased] with \the [tool]!" , \
- "Your hand slips, searing [target]'s [affected.encased] with \the [tool]!" )
+ user.visible_message("[user]'s hand slips, searing [target]'s [affected.encased] with \the [tool]!" , \
+ "Your hand slips, searing [target]'s [affected.encased] with \the [tool]!" )
affected.createwound(CUT, 20)
affected.createwound(BURN, 15)
@@ -302,8 +302,8 @@
return
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- var/msg = "[user] sealed \the [target]'s [affected.encased] with \the [tool]."
- var/self_msg = "You sealed \the [target]'s [affected.encased] with \the [tool]."
+ var/msg = "[user] sealed \the [target]'s [affected.encased] with \the [tool]."
+ var/self_msg = "You sealed \the [target]'s [affected.encased] with \the [tool]."
user.visible_message(msg, self_msg)
affected.open = 2
diff --git a/code/modules/surgery/face.dm b/code/modules/surgery/face.dm
index f871d84ec2e..b670497fc94 100644
--- a/code/modules/surgery/face.dm
+++ b/code/modules/surgery/face.dm
@@ -41,14 +41,14 @@
..()
/datum/surgery_step/generic/cut_face/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
- user.visible_message("[user] has cut open [target]'s face and neck with \the [tool]." , \
- " You have cut open[target]'s face and neck with \the [tool].",)
+ user.visible_message("[user] has cut open [target]'s face and neck with \the [tool]." , \
+ " You have cut open[target]'s face and neck with \the [tool].",)
target.op_stage.face = 1
/datum/surgery_step/generic/cut_face/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, slicing [target]'s throat wth \the [tool]!" , \
- "Your hand slips, slicing [target]'s throat wth \the [tool]!" )
+ user.visible_message("[user]'s hand slips, slicing [target]'s throat wth \the [tool]!" , \
+ "Your hand slips, slicing [target]'s throat wth \the [tool]!" )
affected.createwound(CUT, 60)
target.AdjustLosebreath(10)
@@ -75,13 +75,13 @@
..()
/datum/surgery_step/face/mend_vocal/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
- user.visible_message("[user] mends [target]'s vocal cords with \the [tool].", \
- "You mend [target]'s vocal cords with \the [tool].")
+ user.visible_message("[user] mends [target]'s vocal cords with \the [tool].", \
+ "You mend [target]'s vocal cords with \the [tool].")
target.op_stage.face = 2
/datum/surgery_step/face/mend_vocal/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
- user.visible_message("[user]'s hand slips, clamping [target]'s trachea shut for a moment with \the [tool]!", \
- "Your hand slips, clamping [user]'s trachea shut for a moment with \the [tool]!")
+ user.visible_message("[user]'s hand slips, clamping [target]'s trachea shut for a moment with \the [tool]!", \
+ "Your hand slips, clamping [user]'s trachea shut for a moment with \the [tool]!")
target.AdjustLosebreath(10)
///////////////////////////////////////////////////////////////
@@ -108,14 +108,14 @@
..()
/datum/surgery_step/face/fix_face/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
- user.visible_message("[user] pulls the skin on [target]'s face back in place with \the [tool].", \
- "You pull the skin on [target]'s face back in place with \the [tool].")
+ user.visible_message("[user] pulls the skin on [target]'s face back in place with \the [tool].", \
+ "You pull the skin on [target]'s face back in place with \the [tool].")
target.op_stage.face = 3
/datum/surgery_step/face/fix_face/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, tearing skin on [target]'s face with \the [tool]!", \
- "Your hand slips, tearing skin on [target]'s face with \the [tool]!")
+ user.visible_message("[user]'s hand slips, tearing skin on [target]'s face with \the [tool]!", \
+ "Your hand slips, tearing skin on [target]'s face with \the [tool]!")
target.apply_damage(10, BRUTE, affected, sharp=1, sharp=1)
///////////////////////////////////////////////////////////////
@@ -137,14 +137,14 @@
return ..() && target.op_stage.face > 0
/datum/surgery_step/face/cauterize/begin_step(mob/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
- user.visible_message("[user] is beginning to cauterize the incision on [target]'s face and neck with \the [tool]." , \
- "You are beginning to cauterize the incision on [target]'s face and neck with \the [tool].")
+ user.visible_message("[user] is beginning to cauterize the incision on [target]'s face and neck with \the [tool]." , \
+ "You are beginning to cauterize the incision on [target]'s face and neck with \the [tool].")
..()
/datum/surgery_step/face/cauterize/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user] cauterizes the incision on [target]'s face and neck with \the [tool].", \
- "You cauterize the incision on [target]'s face and neck with \the [tool].")
+ user.visible_message("[user] cauterizes the incision on [target]'s face and neck with \the [tool].", \
+ "You cauterize the incision on [target]'s face and neck with \the [tool].")
affected.open = 0
affected.status &= ~ORGAN_BLEEDING
if (target.op_stage.face == 3)
@@ -154,6 +154,6 @@
/datum/surgery_step/face/cauterize/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, leaving a small burn on [target]'s face with \the [tool]!", \
- "Your hand slips, leaving a small burn on [target]'s face with \the [tool]!")
+ user.visible_message("[user]'s hand slips, leaving a small burn on [target]'s face with \the [tool]!", \
+ "Your hand slips, leaving a small burn on [target]'s face with \the [tool]!")
target.apply_damage(4, BURN, affected)
\ No newline at end of file
diff --git a/code/modules/surgery/generic.dm b/code/modules/surgery/generic.dm
index 556b616cf53..a5ccd15050f 100644
--- a/code/modules/surgery/generic.dm
+++ b/code/modules/surgery/generic.dm
@@ -53,8 +53,8 @@
/datum/surgery_step/generic/cut_open/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user] has made an incision on [target]'s [affected.name] with \the [tool].", \
- "You have made an incision on [target]'s [affected.name] with \the [tool].",)
+ user.visible_message("[user] has made an incision on [target]'s [affected.name] with \the [tool].", \
+ "You have made an incision on [target]'s [affected.name] with \the [tool].",)
affected.open = 1
if(istype(target) && target.should_have_organ(O_HEART))
@@ -64,8 +64,8 @@
/datum/surgery_step/generic/cut_open/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, slicing open [target]'s [affected.name] in the wrong place with \the [tool]!", \
- "Your hand slips, slicing open [target]'s [affected.name] in the wrong place with \the [tool]!")
+ user.visible_message("[user]'s hand slips, slicing open [target]'s [affected.name] in the wrong place with \the [tool]!", \
+ "Your hand slips, slicing open [target]'s [affected.name] in the wrong place with \the [tool]!")
affected.createwound(CUT, 10)
///////////////////////////////////////////////////////////////
@@ -98,8 +98,8 @@
/datum/surgery_step/generic/cut_with_laser/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user] has made a bloodless incision on [target]'s [affected.name] with \the [tool].", \
- "You have made a bloodless incision on [target]'s [affected.name] with \the [tool].",)
+ user.visible_message("[user] has made a bloodless incision on [target]'s [affected.name] with \the [tool].", \
+ "You have made a bloodless incision on [target]'s [affected.name] with \the [tool].",)
//Could be cleaner ...
affected.open = 1
@@ -109,8 +109,8 @@
/datum/surgery_step/generic/cut_with_laser/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips as the blade sputters, searing a long gash in [target]'s [affected.name] with \the [tool]!", \
- "Your hand slips as the blade sputters, searing a long gash in [target]'s [affected.name] with \the [tool]!")
+ user.visible_message("[user]'s hand slips as the blade sputters, searing a long gash in [target]'s [affected.name] with \the [tool]!", \
+ "Your hand slips as the blade sputters, searing a long gash in [target]'s [affected.name] with \the [tool]!")
affected.createwound(CUT, 7.5)
affected.createwound(BURN, 12.5)
@@ -142,8 +142,8 @@
/datum/surgery_step/generic/incision_manager/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user] has constructed a prepared incision on and within [target]'s [affected.name] with \the [tool].", \
- "You have constructed a prepared incision on and within [target]'s [affected.name] with \the [tool].",)
+ user.visible_message("[user] has constructed a prepared incision on and within [target]'s [affected.name] with \the [tool].", \
+ "You have constructed a prepared incision on and within [target]'s [affected.name] with \the [tool].",)
affected.open = 1
if(istype(target) && target.should_have_organ(O_HEART))
@@ -155,8 +155,8 @@
/datum/surgery_step/generic/incision_manager/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand jolts as the system sparks, ripping a gruesome hole in [target]'s [affected.name] with \the [tool]!", \
- "Your hand jolts as the system sparks, ripping a gruesome hole in [target]'s [affected.name] with \the [tool]!")
+ user.visible_message("[user]'s hand jolts as the system sparks, ripping a gruesome hole in [target]'s [affected.name] with \the [tool]!", \
+ "Your hand jolts as the system sparks, ripping a gruesome hole in [target]'s [affected.name] with \the [tool]!")
affected.createwound(CUT, 20)
affected.createwound(BURN, 15)
@@ -188,15 +188,15 @@
/datum/surgery_step/generic/clamp_bleeders/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user] clamps bleeders in [target]'s [affected.name] with \the [tool].", \
- "You clamp bleeders in [target]'s [affected.name] with \the [tool].")
+ user.visible_message("[user] clamps bleeders in [target]'s [affected.name] with \the [tool].", \
+ "You clamp bleeders in [target]'s [affected.name] with \the [tool].")
affected.organ_clamp()
spread_germs_to_organ(affected, user)
/datum/surgery_step/generic/clamp_bleeders/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, tearing blood vessals and causing massive bleeding in [target]'s [affected.name] with \the [tool]!", \
- "Your hand slips, tearing blood vessels and causing massive bleeding in [target]'s [affected.name] with \the [tool]!",)
+ user.visible_message("[user]'s hand slips, tearing blood vessals and causing massive bleeding in [target]'s [affected.name] with \the [tool]!", \
+ "Your hand slips, tearing blood vessels and causing massive bleeding in [target]'s [affected.name] with \the [tool]!",)
affected.createwound(CUT, 10)
///////////////////////////////////////////////////////////////
@@ -235,27 +235,27 @@
/datum/surgery_step/generic/retract_skin/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- var/msg = "[user] keeps the incision open on [target]'s [affected.name] with \the [tool]."
- var/self_msg = "You keep the incision open on [target]'s [affected.name] with \the [tool]."
+ var/msg = "[user] keeps the incision open on [target]'s [affected.name] with \the [tool]."
+ var/self_msg = "You keep the incision open on [target]'s [affected.name] with \the [tool]."
if (target_zone == BP_TORSO)
- msg = "[user] keeps the ribcage open on [target]'s torso with \the [tool]."
- self_msg = "You keep the ribcage open on [target]'s torso with \the [tool]."
+ msg = "[user] keeps the ribcage open on [target]'s torso with \the [tool]."
+ self_msg = "You keep the ribcage open on [target]'s torso with \the [tool]."
if (target_zone == BP_GROIN)
- msg = "[user] keeps the incision open on [target]'s lower abdomen with \the [tool]."
- self_msg = "You keep the incision open on [target]'s lower abdomen with \the [tool]."
+ msg = "[user] keeps the incision open on [target]'s lower abdomen with \the [tool]."
+ self_msg = "You keep the incision open on [target]'s lower abdomen with \the [tool]."
user.visible_message(msg, self_msg)
affected.open = 2
/datum/surgery_step/generic/retract_skin/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- var/msg = "[user]'s hand slips, tearing the edges of the incision on [target]'s [affected.name] with \the [tool]!"
- var/self_msg = "Your hand slips, tearing the edges of the incision on [target]'s [affected.name] with \the [tool]!"
+ var/msg = "[user]'s hand slips, tearing the edges of the incision on [target]'s [affected.name] with \the [tool]!"
+ var/self_msg = "Your hand slips, tearing the edges of the incision on [target]'s [affected.name] with \the [tool]!"
if (target_zone == BP_TORSO)
- msg = "[user]'s hand slips, damaging several organs in [target]'s torso with \the [tool]!"
- self_msg = "Your hand slips, damaging several organs in [target]'s torso with \the [tool]!"
+ msg = "[user]'s hand slips, damaging several organs in [target]'s torso with \the [tool]!"
+ self_msg = "Your hand slips, damaging several organs in [target]'s torso with \the [tool]!"
if (target_zone == BP_GROIN)
- msg = "[user]'s hand slips, damaging several organs in [target]'s lower abdomen with \the [tool]!"
- self_msg = "Your hand slips, damaging several organs in [target]'s lower abdomen with \the [tool]!"
+ msg = "[user]'s hand slips, damaging several organs in [target]'s lower abdomen with \the [tool]!"
+ self_msg = "Your hand slips, damaging several organs in [target]'s lower abdomen with \the [tool]!"
user.visible_message(msg, self_msg)
target.apply_damage(12, BRUTE, affected, sharp=1)
@@ -288,16 +288,16 @@
/datum/surgery_step/generic/cauterize/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user] cauterizes the incision on [target]'s [affected.name] with \the [tool].", \
- "You cauterize the incision on [target]'s [affected.name] with \the [tool].")
+ user.visible_message("[user] cauterizes the incision on [target]'s [affected.name] with \the [tool].", \
+ "You cauterize the incision on [target]'s [affected.name] with \the [tool].")
affected.open = 0
affected.germ_level = 0
affected.status &= ~ORGAN_BLEEDING
/datum/surgery_step/generic/cauterize/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, leaving a small burn on [target]'s [affected.name] with \the [tool]!", \
- "Your hand slips, leaving a small burn on [target]'s [affected.name] with \the [tool]!")
+ user.visible_message("[user]'s hand slips, leaving a small burn on [target]'s [affected.name] with \the [tool]!", \
+ "Your hand slips, leaving a small burn on [target]'s [affected.name] with \the [tool]!")
target.apply_damage(3, BURN, affected)
///////////////////////////////////////////////////////////////
@@ -333,13 +333,13 @@
/datum/surgery_step/generic/amputate/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user] amputates [target]'s [affected.name] at the [affected.amputation_point] with \the [tool].", \
- "You amputate [target]'s [affected.name] with \the [tool].")
+ user.visible_message("[user] amputates [target]'s [affected.name] at the [affected.amputation_point] with \the [tool].", \
+ "You amputate [target]'s [affected.name] with \the [tool].")
affected.droplimb(1,DROPLIMB_EDGE)
/datum/surgery_step/generic/amputate/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, sawing through the bone in [target]'s [affected.name] with \the [tool]!", \
- "Your hand slips, sawwing through the bone in [target]'s [affected.name] with \the [tool]!")
+ user.visible_message("[user]'s hand slips, sawing through the bone in [target]'s [affected.name] with \the [tool]!", \
+ "Your hand slips, sawwing through the bone in [target]'s [affected.name] with \the [tool]!")
affected.createwound(CUT, 30)
affected.fracture()
diff --git a/code/modules/surgery/implant.dm b/code/modules/surgery/implant.dm
index d6049a0a04d..e7e6eb6b4b7 100644
--- a/code/modules/surgery/implant.dm
+++ b/code/modules/surgery/implant.dm
@@ -37,8 +37,8 @@
/datum/surgery_step/cavity/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/chest/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, scraping around inside [target]'s [affected.name] with \the [tool]!", \
- "Your hand slips, scraping around inside [target]'s [affected.name] with \the [tool]!")
+ user.visible_message("[user]'s hand slips, scraping around inside [target]'s [affected.name] with \the [tool]!", \
+ "Your hand slips, scraping around inside [target]'s [affected.name] with \the [tool]!")
affected.createwound(CUT, 20)
///////////////////////////////////////////////////////////////
@@ -70,8 +70,8 @@
/datum/surgery_step/cavity/make_space/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/chest/affected = target.get_organ(target_zone)
- user.visible_message("[user] makes some space inside [target]'s [get_cavity(affected)] cavity with \the [tool].", \
- "You make some space inside [target]'s [get_cavity(affected)] cavity with \the [tool]." )
+ user.visible_message("[user] makes some space inside [target]'s [get_cavity(affected)] cavity with \the [tool].", \
+ "You make some space inside [target]'s [get_cavity(affected)] cavity with \the [tool]." )
///////////////////////////////////////////////////////////////
// Cavity Closing Surgery
@@ -104,8 +104,8 @@
/datum/surgery_step/cavity/close_space/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/chest/affected = target.get_organ(target_zone)
- user.visible_message("[user] mends [target]'s [get_cavity(affected)] cavity walls with \the [tool].", \
- " You mend[target]'s [get_cavity(affected)] cavity walls with \the [tool]." )
+ user.visible_message("[user] mends [target]'s [get_cavity(affected)] cavity walls with \the [tool].", \
+ " You mend[target]'s [get_cavity(affected)] cavity walls with \the [tool]." )
///////////////////////////////////////////////////////////////
// Item Implantation Surgery
@@ -133,18 +133,18 @@
/datum/surgery_step/cavity/place_item/begin_step(mob/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user] starts putting \the [tool] inside [target]'s [get_cavity(affected)] cavity.", \
- "You start putting \the [tool] inside [target]'s [get_cavity(affected)] cavity." ) //Nobody will probably ever see this, but I made these two blue. ~CK
+ user.visible_message("[user] starts putting \the [tool] inside [target]'s [get_cavity(affected)] cavity.", \
+ "You start putting \the [tool] inside [target]'s [get_cavity(affected)] cavity." ) //Nobody will probably ever see this, but I made these two blue. ~CK
target.custom_pain("The pain in your chest is living hell!",1)
..()
/datum/surgery_step/cavity/place_item/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/chest/affected = target.get_organ(target_zone)
- user.visible_message("[user] puts \the [tool] inside [target]'s [get_cavity(affected)] cavity.", \
- "You put \the [tool] inside [target]'s [get_cavity(affected)] cavity." )
+ user.visible_message("[user] puts \the [tool] inside [target]'s [get_cavity(affected)] cavity.", \
+ "You put \the [tool] inside [target]'s [get_cavity(affected)] cavity." )
if (tool.w_class > get_max_wclass(affected)/2 && prob(50) && (affected.robotic < ORGAN_ROBOT))
- to_chat(user, " You tear some blood vessels trying to fit such a big object in this cavity.")
+ to_chat(user, " You tear some blood vessels trying to fit such a big object in this cavity.")
var/datum/wound/internal_bleeding/I = new (10)
affected.wounds += I
affected.owner.custom_pain("You feel something rip in your [affected.name]!", 1)
@@ -179,8 +179,8 @@
/datum/surgery_step/cavity/implant_removal/begin_step(mob/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user] starts poking around inside [target]'s [affected.name] with \the [tool].", \
- "You start poking around inside [target]'s [affected.name] with \the [tool]." )
+ user.visible_message("[user] starts poking around inside [target]'s [affected.name] with \the [tool].", \
+ "You start poking around inside [target]'s [affected.name] with \the [tool]." )
target.custom_pain("The pain in your [affected.name] is living hell!",1)
..()
@@ -203,8 +203,8 @@
find_prob +=50
if (prob(find_prob))
- user.visible_message("[user] takes something out of incision on [target]'s [affected.name] with \the [tool]!", \
- "You take [obj] out of incision on [target]'s [affected.name]s with \the [tool]!" )
+ user.visible_message("[user] takes something out of incision on [target]'s [affected.name] with \the [tool]!", \
+ "You take [obj] out of incision on [target]'s [affected.name]s with \the [tool]!" )
affected.implants -= obj
BITSET(target.hud_updateflag, IMPLOYAL_HUD)
@@ -226,11 +226,11 @@
imp.implanted = 0
else if(istype(tool,/obj/item/device/nif)){var/obj/item/device/nif/N = tool;N.unimplant(target)} //VOREStation Add - NIF support
else
- user.visible_message("[user] removes \the [tool] from [target]'s [affected.name].", \
- "There's something inside [target]'s [affected.name], but you just missed it this time." )
+ user.visible_message("[user] removes \the [tool] from [target]'s [affected.name].", \
+ "There's something inside [target]'s [affected.name], but you just missed it this time." )
else
- user.visible_message("[user] could not find anything inside [target]'s [affected.name], and pulls \the [tool] out.", \
- "You could not find anything inside [target]'s [affected.name]." )
+ user.visible_message("[user] could not find anything inside [target]'s [affected.name], and pulls \the [tool] out.", \
+ "You could not find anything inside [target]'s [affected.name]." )
/datum/surgery_step/cavity/implant_removal/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
..()
@@ -240,7 +240,7 @@
fail_prob += 100 - tool_quality(tool)
if (prob(fail_prob))
var/obj/item/weapon/implant/imp = affected.implants[1]
- user.visible_message(" Something beeps inside [target]'s [affected.name]!")
+ user.visible_message(" Something beeps inside [target]'s [affected.name]!")
playsound(imp.loc, 'sound/items/countdown.ogg', 75, 1, -3)
spawn(25)
imp.activate()
diff --git a/code/modules/surgery/neck.dm b/code/modules/surgery/neck.dm
index 88d5053afe3..6b970ad4c2c 100644
--- a/code/modules/surgery/neck.dm
+++ b/code/modules/surgery/neck.dm
@@ -41,14 +41,14 @@
..()
/datum/surgery_step/brainstem/mend_vessels/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
- user.visible_message("[user] has mended the blood vessels on [target]'s brainstem with \the [tool]." , \
- " You have mended the blood vessels on [target]'s brainstem with \the [tool].",)
+ user.visible_message("[user] has mended the blood vessels on [target]'s brainstem with \the [tool]." , \
+ " You have mended the blood vessels on [target]'s brainstem with \the [tool].",)
target.op_stage.brainstem = 1
/datum/surgery_step/brainstem/mend_vessels/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, tearing at [target]'s brainstem with \the [tool]!" , \
- "Your hand slips, tearing at [target]'s brainstem with \the [tool]!" )
+ user.visible_message("[user]'s hand slips, tearing at [target]'s brainstem with \the [tool]!" , \
+ "Your hand slips, tearing at [target]'s brainstem with \the [tool]!" )
affected.createwound(PIERCE, 10)
target.AdjustParalysis(10)
@@ -79,16 +79,16 @@
/datum/surgery_step/brainstem/drill_vertebrae/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user] has drilled around [target]'s brainstem with \the [tool]." , \
- " You have drilled around [target]'s brainstem with \the [tool].",)
+ user.visible_message("[user] has drilled around [target]'s brainstem with \the [tool]." , \
+ " You have drilled around [target]'s brainstem with \the [tool].",)
target.AdjustParalysis(10) //We're getting Invasive here. This only ticks down when the person is alive, so it's a good side-effect for this step. Rattling the braincase with a drill is not optimal.
target.op_stage.brainstem = 2
affected.fracture() //Does not apply damage, simply breaks it if it wasn't already. Doesn't stop a defib on its own.
/datum/surgery_step/brainstem/drill_vertebrae/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, shredding [target]'s brainstem with \the [tool]!" , \
- "Your hand slips, shredding [target]'s brainstem with \the [tool]!" )
+ user.visible_message("[user]'s hand slips, shredding [target]'s brainstem with \the [tool]!" , \
+ "Your hand slips, shredding [target]'s brainstem with \the [tool]!" )
affected.createwound(PIERCE, 10)
target.AdjustParalysis(15)
spawn()
@@ -119,15 +119,15 @@
..()
/datum/surgery_step/brainstem/clean_chips/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
- user.visible_message("[user] has cleaned around [target]'s brainstem with \the [tool]." , \
- " You have cleaned around [target]'s brainstem with \the [tool].",)
+ user.visible_message("[user] has cleaned around [target]'s brainstem with \the [tool]." , \
+ " You have cleaned around [target]'s brainstem with \the [tool].",)
target.AdjustParalysis(10) //Still invasive.
target.op_stage.brainstem = 3
/datum/surgery_step/brainstem/clean_chips/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, gouging [target]'s brainstem with \the [tool]!" , \
- "Your hand slips, gouging [target]'s brainstem with \the [tool]!" )
+ user.visible_message("[user]'s hand slips, gouging [target]'s brainstem with \the [tool]!" , \
+ "Your hand slips, gouging [target]'s brainstem with \the [tool]!" )
affected.createwound(CUT, 5)
target.AdjustParalysis(10)
spawn()
@@ -158,16 +158,16 @@
..()
/datum/surgery_step/brainstem/mend_cord/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
- user.visible_message("[user] has fused [target]'s spinal cord with \the [tool]." , \
- " You have fused [target]'s spinal cord with \the [tool].",)
+ user.visible_message("[user] has fused [target]'s spinal cord with \the [tool]." , \
+ " You have fused [target]'s spinal cord with \the [tool].",)
target.op_stage.brainstem = 4
target.AdjustParalysis(5)
target.add_modifier(/datum/modifier/franken_sickness, 20 MINUTES)
/datum/surgery_step/brainstem/mend_cord/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, tearing at [target]'s spinal cord with \the [tool]!" , \
- "Your hand slips, tearing at [target]'s spinal cord with \the [tool]!" )
+ user.visible_message("[user]'s hand slips, tearing at [target]'s spinal cord with \the [tool]!" , \
+ "Your hand slips, tearing at [target]'s spinal cord with \the [tool]!" )
affected.createwound(PIERCE, 5)
target.AdjustParalysis(20)
spawn()
@@ -197,15 +197,15 @@
..()
/datum/surgery_step/brainstem/mend_vertebrae/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
- user.visible_message("[user] has mended [target]'s vertebrae with \the [tool]." , \
- " You have mended [target]'s vertebrae with \the [tool].",)
+ user.visible_message("[user] has mended [target]'s vertebrae with \the [tool]." , \
+ " You have mended [target]'s vertebrae with \the [tool].",)
target.can_defib = 1
target.op_stage.brainstem = 5
/datum/surgery_step/brainstem/mend_vertebrae/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, tearing at [target]'s spinal cord with \the [tool]!" , \
- "Your hand slips, tearing at [target]'s spinal cord with \the [tool]!" )
+ user.visible_message("[user]'s hand slips, tearing at [target]'s spinal cord with \the [tool]!" , \
+ "Your hand slips, tearing at [target]'s spinal cord with \the [tool]!" )
affected.createwound(PIERCE, 5)
target.AdjustParalysis(15)
spawn()
@@ -236,15 +236,15 @@
..()
/datum/surgery_step/brainstem/realign_tissue/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
- user.visible_message("[user] has realigned the tissues in [target]'s skull back into place with \the [tool]." , \
- " You have realigned the tissues in [target]'s skull back into place with \the [tool].",)
+ user.visible_message("[user] has realigned the tissues in [target]'s skull back into place with \the [tool]." , \
+ " You have realigned the tissues in [target]'s skull back into place with \the [tool].",)
target.AdjustParalysis(5) //I n v a s i v e
target.op_stage.brainstem = 0 //The cycle begins anew.
/datum/surgery_step/brainstem/realign_tissue/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, gouging [target]'s brainstem with \the [tool]!" , \
- "Your hand slips, gouging [target]'s brainstem with \the [tool]!" )
+ user.visible_message("[user]'s hand slips, gouging [target]'s brainstem with \the [tool]!" , \
+ "Your hand slips, gouging [target]'s brainstem with \the [tool]!" )
affected.createwound(CUT, 5)
target.AdjustParalysis(30)
spawn()
diff --git a/code/modules/surgery/other.dm b/code/modules/surgery/other.dm
index b6ec121adf6..fe7d004dc4d 100644
--- a/code/modules/surgery/other.dm
+++ b/code/modules/surgery/other.dm
@@ -43,8 +43,8 @@
/datum/surgery_step/fix_vein/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user] has patched the damaged vein in [target]'s [affected.name] with \the [tool].", \
- "You have patched the damaged vein in [target]'s [affected.name] with \the [tool].")
+ user.visible_message("[user] has patched the damaged vein in [target]'s [affected.name] with \the [tool].", \
+ "You have patched the damaged vein in [target]'s [affected.name] with \the [tool].")
for(var/datum/wound/W in affected.wounds) if(W.internal)
affected.wounds -= W
@@ -53,8 +53,8 @@
/datum/surgery_step/fix_vein/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, smearing [tool] in the incision in [target]'s [affected.name]!" , \
- "Your hand slips, smearing [tool] in the incision in [target]'s [affected.name]!")
+ user.visible_message("[user]'s hand slips, smearing [tool] in the incision in [target]'s [affected.name]!" , \
+ "Your hand slips, smearing [tool] in the incision in [target]'s [affected.name]!")
affected.take_damage(5, 0)
///////////////////////////////////////////////////////////////
@@ -96,14 +96,14 @@
/datum/surgery_step/fix_dead_tissue/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user] has cut away necrotic tissue in [target]'s [affected.name] with \the [tool].", \
- "You have cut away necrotic tissue in [target]'s [affected.name] with \the [tool].")
+ user.visible_message("[user] has cut away necrotic tissue in [target]'s [affected.name] with \the [tool].", \
+ "You have cut away necrotic tissue in [target]'s [affected.name] with \the [tool].")
affected.open = 3
/datum/surgery_step/fix_dead_tissue/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
- user.visible_message("[user]'s hand slips, slicing an artery inside [target]'s [affected.name] with \the [tool]!", \
- "Your hand slips, slicing an artery inside [target]'s [affected.name] with \the [tool]!")
+ user.visible_message("[user]'s hand slips, slicing an artery inside [target]'s [affected.name] with \the [tool]!", \
+ "Your hand slips, slicing an artery inside [target]'s [affected.name] with \the [tool]!")
affected.createwound(CUT, 20, 1)
///////////////////////////////////////////////////////////////
@@ -164,8 +164,8 @@
affected.status &= ~ORGAN_DEAD
affected.owner.update_icons_body()
- user.visible_message("[user] applies [trans] units of the solution to affected tissue in [target]'s [affected.name].", \
- "You apply [trans] units of the solution to affected tissue in [target]'s [affected.name] with \the [tool].")
+ user.visible_message("[user] applies [trans] units of the solution to affected tissue in [target]'s [affected.name].", \
+ "You apply [trans] units of the solution to affected tissue in [target]'s [affected.name] with \the [tool].")
/datum/surgery_step/treat_necrosis/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
@@ -177,8 +177,8 @@
var/trans = container.reagents.trans_to_mob(target, container.amount_per_transfer_from_this, CHEM_BLOOD)
- user.visible_message("[user]'s hand slips, applying [trans] units of the solution to the wrong place in [target]'s [affected.name] with the [tool]!" , \
- "Your hand slips, applying [trans] units of the solution to the wrong place in [target]'s [affected.name] with the [tool]!")
+ user.visible_message("[user]'s hand slips, applying [trans] units of the solution to the wrong place in [target]'s [affected.name] with the [tool]!" , \
+ "Your hand slips, applying [trans] units of the solution to the wrong place in [target]'s [affected.name] with the [tool]!")
//no damage or anything, just wastes medicine
diff --git a/code/modules/surgery/slimes.dm b/code/modules/surgery/slimes.dm
index e049349f83b..e73633397a0 100644
--- a/code/modules/surgery/slimes.dm
+++ b/code/modules/surgery/slimes.dm
@@ -29,13 +29,13 @@
"You start cutting through [target]'s flesh with \the [tool].")
/datum/surgery_step/slime/cut_flesh/end_step(mob/living/user, mob/living/simple_mob/slime/target, target_zone, obj/item/tool)
- user.visible_message("[user] cuts through [target]'s flesh with \the [tool].", \
- "You cut through [target]'s flesh with \the [tool], revealing its silky innards.")
+ user.visible_message("[user] cuts through [target]'s flesh with \the [tool].", \
+ "You cut through [target]'s flesh with \the [tool], revealing its silky innards.")
target.core_removal_stage = 1
/datum/surgery_step/slime/cut_flesh/fail_step(mob/living/user, mob/living/simple_mob/slime/target, target_zone, obj/item/tool)
- user.visible_message("[user]'s hand slips, tearing [target]'s flesh with \the [tool]!", \
- "Your hand slips, tearing [target]'s flesh with \the [tool]!")
+ user.visible_message("[user]'s hand slips, tearing [target]'s flesh with \the [tool]!", \
+ "Your hand slips, tearing [target]'s flesh with \the [tool]!")
@@ -57,13 +57,13 @@
"You start cutting [target]'s silky innards apart with \the [tool].")
/datum/surgery_step/slime/cut_innards/end_step(mob/living/user, mob/living/simple_mob/slime/target, target_zone, obj/item/tool)
- user.visible_message("[user] cuts [target]'s innards apart with \the [tool], exposing the cores.", \
- "You cut [target]'s innards apart with \the [tool], exposing the cores.")
+ user.visible_message("[user] cuts [target]'s innards apart with \the [tool], exposing the cores.", \
+ "You cut [target]'s innards apart with \the [tool], exposing the cores.")
target.core_removal_stage = 2
/datum/surgery_step/slime/cut_innards/fail_step(mob/living/user, mob/living/simple_mob/slime/target, target_zone, obj/item/tool)
- user.visible_message("[user]'s hand slips, tearing [target]'s innards with \the [tool]!", \
- "Your hand slips, tearing [target]'s innards with \the [tool]!")
+ user.visible_message("[user]'s hand slips, tearing [target]'s innards with \the [tool]!", \
+ "Your hand slips, tearing [target]'s innards with \the [tool]!")
@@ -85,8 +85,8 @@
/datum/surgery_step/slime/saw_core/end_step(mob/living/user, mob/living/simple_mob/slime/target, target_zone, obj/item/tool)
target.cores--
- user.visible_message("[user] cuts out one of [target]'s cores with \the [tool].",, \
- "You cut out one of [target]'s cores with \the [tool]. [target.cores] cores left.")
+ user.visible_message("[user] cuts out one of [target]'s cores with \the [tool].",, \
+ "You cut out one of [target]'s cores with \the [tool]. [target.cores] cores left.")
if(target.cores >= 0)
new target.coretype(target.loc)
@@ -96,5 +96,5 @@
/datum/surgery_step/slime/saw_core/fail_step(mob/living/user, mob/living/simple_mob/slime/target, target_zone, obj/item/tool)
var/datum/gender/T = gender_datums[user.get_visible_gender()]
- user.visible_message("[user]'s hand slips, causing [T.him] to miss the core!", \
- "Your hand slips, causing you to miss the core!")
\ No newline at end of file
+ user.visible_message("[user]'s hand slips, causing [T.him] to miss the core!", \
+ "Your hand slips, causing you to miss the core!")
\ No newline at end of file