mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 16:12:19 +00:00
388 lines
20 KiB
Plaintext
388 lines
20 KiB
Plaintext
//Procedures in this file: Gneric surgery steps
|
|
//////////////////////////////////////////////////////////////////
|
|
// COMMON STEPS //
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
/datum/surgery_step/generic
|
|
can_infect = 1
|
|
|
|
/datum/surgery_step/generic/can_use(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
|
|
if(isslime(target))
|
|
return 0
|
|
if(target_zone == BP_EYES) //there are specific steps for eye surgery
|
|
return 0
|
|
if(!hasorgans(target))
|
|
return 0
|
|
var/obj/item/organ/external/affected = target.get_organ(target_zone)
|
|
if(affected == null)
|
|
return 0
|
|
if(affected.is_stump())
|
|
return 0
|
|
if(affected.status & ORGAN_ROBOT)
|
|
return 0
|
|
return 1
|
|
|
|
/datum/surgery_step/generic/cut_with_laser
|
|
allowed_tools = list(
|
|
/obj/item/scalpel/laser3 = 95, \
|
|
/obj/item/scalpel/laser2 = 85, \
|
|
/obj/item/scalpel/laser1 = 75
|
|
)
|
|
priority = 2
|
|
min_duration = 90
|
|
max_duration = 110
|
|
|
|
/datum/surgery_step/generic/cut_with_laser/can_use(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
|
|
if(..())
|
|
var/obj/item/organ/external/affected = target.get_organ(target_zone)
|
|
return affected && affected.open == 0 && target_zone != "mouth"
|
|
|
|
/datum/surgery_step/generic/cut_with_laser/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 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]!",1)
|
|
..()
|
|
|
|
/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("<span class='notice'>[user] has made a bloodless incision on [target]'s [affected.name] with \the [tool].</span>", \
|
|
"<span class='notice'>You have made a bloodless incision on [target]'s [affected.name] with \the [tool].</span>",)
|
|
affected.open = 1
|
|
|
|
if(istype(target) && !(target.species.flags & NO_BLOOD))
|
|
affected.status |= ORGAN_BLEEDING
|
|
playsound(target.loc, 'sound/weapons/bladeslice.ogg', 50, 1)
|
|
|
|
target.apply_damage(1, BRUTE, target_zone, 0)
|
|
affected.clamp()
|
|
spread_germs_to_organ(affected, user)
|
|
|
|
/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("<span class='warning'>[user]'s hand slips as the blade sputters, searing a long gash in [target]'s [affected.name] with \the [tool]!</span>", \
|
|
"<span class='warning'>Your hand slips as the blade sputters, searing a long gash in [target]'s [affected.name] with \the [tool]!</span>")
|
|
target.apply_damage(7.5, BRUTE, target_zone, 0, tool, tool.sharp, tool.edge)
|
|
target.apply_damage(12.5, BURN, target_zone, 0, tool)
|
|
|
|
/datum/surgery_step/generic/incision_manager
|
|
allowed_tools = list(
|
|
/obj/item/scalpel/manager = 100
|
|
)
|
|
priority = 2
|
|
min_duration = 80
|
|
max_duration = 120
|
|
|
|
/datum/surgery_step/generic/incision_manager/can_use(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
|
|
if(..())
|
|
var/obj/item/organ/external/affected = target.get_organ(target_zone)
|
|
return affected && affected.open == 0 && target_zone != "mouth"
|
|
|
|
/datum/surgery_step/generic/incision_manager/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 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!",1)
|
|
..()
|
|
|
|
/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("<span class='notice'>[user] has constructed a prepared incision on and within [target]'s [affected.name] with \the [tool].</span>", \
|
|
"<span class='notice'>You have constructed a prepared incision on and within [target]'s [affected.name] with \the [tool].</span>",)
|
|
affected.open = 1
|
|
|
|
if(istype(target) && !(target.species.flags & NO_BLOOD))
|
|
affected.status |= ORGAN_BLEEDING
|
|
|
|
target.apply_damage(1, BRUTE, target_zone, 0)
|
|
affected.clamp()
|
|
affected.open = 2
|
|
|
|
/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("<span class='warning'>[user]'s hand jolts as the system sparks, ripping a gruesome hole in [target]'s [affected.name] with \the [tool]!</span>", \
|
|
"<span class='warning'>Your hand jolts as the system sparks, ripping a gruesome hole in [target]'s [affected.name] with \the [tool]!</span>")
|
|
target.apply_damage(20, BRUTE, target_zone, 0, tool, tool.sharp, tool.edge)
|
|
target.apply_damage(15, BURN, target_zone, 0, tool)
|
|
|
|
/datum/surgery_step/generic/cut_open
|
|
allowed_tools = list(
|
|
/obj/item/scalpel = 100,
|
|
/obj/item/material/knife = 75,
|
|
/obj/item/material/shard = 50
|
|
)
|
|
|
|
min_duration = 90
|
|
max_duration = 110
|
|
|
|
/datum/surgery_step/generic/cut_open/can_use(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
|
|
if(isvaurca(target))
|
|
return 0
|
|
else
|
|
if(..())
|
|
var/obj/item/organ/external/affected = target.get_organ(target_zone)
|
|
return affected && affected.open == 0 && target_zone != "mouth"
|
|
|
|
|
|
/datum/surgery_step/generic/cut_open/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 the incision on [target]'s [affected.name] with \the [tool].", \
|
|
"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]!",1)
|
|
..()
|
|
|
|
/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("<span class='notice'>[user] has made an incision on [target]'s [affected.name] with \the [tool].</span>", \
|
|
"<span class='notice'>You have made an incision on [target]'s [affected.name] with \the [tool].</span>",)
|
|
affected.open = 1
|
|
|
|
if(istype(target) && !(target.species.flags & NO_BLOOD))
|
|
affected.status |= ORGAN_BLEEDING
|
|
|
|
target.apply_damage(1, BRUTE, target_zone, 0)
|
|
playsound(target.loc, 'sound/weapons/bladeslice.ogg', 15, 1)
|
|
|
|
/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("<span class='warning'>[user]'s hand slips, slicing open [target]'s [affected.name] in the wrong place with \the [tool]!</span>", \
|
|
"<span class='warning'>Your hand slips, slicing open [target]'s [affected.name] in the wrong place with \the [tool]!</span>")
|
|
target.apply_damage(10, BRUTE, target_zone, 0, tool, tool.sharp, tool.edge)
|
|
|
|
/datum/surgery_step/generic/cut_open_vaurca
|
|
allowed_tools = list(
|
|
/obj/item/surgicaldrill = 85,
|
|
/obj/item/pickaxe/ = 15
|
|
)
|
|
|
|
min_duration = 110
|
|
max_duration = 130
|
|
|
|
/datum/surgery_step/generic/cut_open_vaurca/can_use(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
|
|
if(!(isvaurca(target)))
|
|
return 0
|
|
else
|
|
if(..())
|
|
var/obj/item/organ/external/affected = target.get_organ(target_zone)
|
|
return affected && affected.open == 0 && target_zone != "mouth"
|
|
|
|
/datum/surgery_step/generic/cut_open_vaurca/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 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]!",1)
|
|
..()
|
|
|
|
/datum/surgery_step/generic/cut_open_vaurca/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("<span class='notice'>[user] has drilled into [target]'s [affected.name] carapace with \the [tool].</span>", \
|
|
"<span class='notice'>You have drilled into [target]'s [affected.name] carapace with \the [tool].</span>",)
|
|
affected.open = 1
|
|
|
|
if(istype(target) && !(target.species.flags & NO_BLOOD))
|
|
affected.status |= ORGAN_BLEEDING
|
|
|
|
target.apply_damage(1, BRUTE, target_zone, 0)
|
|
|
|
/datum/surgery_step/generic/cut_open_vaurca/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("<span class='warning'>[user]'s hand slips, cracking [target]'s [affected.name] carapace in the wrong place with \the [tool]!</span>", \
|
|
"<span class='warning'>Your hand slips, cracking [target]'s [affected.name] carapace in the wrong place with \the [tool]!</span>")
|
|
target.apply_damage(15, BRUTE, target_zone, 0, tool, tool.sharp, tool.edge)
|
|
|
|
/datum/surgery_step/generic/clamp_bleeders
|
|
allowed_tools = list(
|
|
/obj/item/hemostat = 100, \
|
|
/obj/item/stack/cable_coil = 75, \
|
|
/obj/item/device/assembly/mousetrap = 20
|
|
)
|
|
|
|
min_duration = 40
|
|
max_duration = 60
|
|
|
|
/datum/surgery_step/generic/clamp_bleeders/can_use(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
|
|
if(..())
|
|
var/obj/item/organ/external/affected = target.get_organ(target_zone)
|
|
return affected && affected.open && (affected.status & ORGAN_BLEEDING)
|
|
|
|
/datum/surgery_step/generic/clamp_bleeders/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 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!",1)
|
|
..()
|
|
|
|
/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("<span class='notice'>[user] clamps bleeders in [target]'s [affected.name] with \the [tool].</span>", \
|
|
"<span class='notice'>You clamp bleeders in [target]'s [affected.name] with \the [tool].</span>")
|
|
affected.clamp()
|
|
spread_germs_to_organ(affected, user)
|
|
playsound(target.loc, 'sound/items/Welder.ogg', 15, 1)
|
|
|
|
/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("<span class='warning'>[user]'s hand slips, tearing blood vessals and causing massive bleeding in [target]'s [affected.name] with \the [tool]!</span>", \
|
|
"<span class='warning'>Your hand slips, tearing blood vessels and causing massive bleeding in [target]'s [affected.name] with \the [tool]!</span>",)
|
|
target.apply_damage(10, BRUTE, target_zone, 0, tool, tool.sharp, tool.edge)
|
|
|
|
/datum/surgery_step/generic/retract_skin
|
|
allowed_tools = list(
|
|
/obj/item/retractor = 100, \
|
|
/obj/item/crowbar = 75, \
|
|
/obj/item/material/kitchen/utensil/fork = 50
|
|
)
|
|
|
|
min_duration = 30
|
|
max_duration = 40
|
|
|
|
/datum/surgery_step/generic/retract_skin/can_use(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
|
|
if(..())
|
|
var/obj/item/organ/external/affected = target.get_organ(target_zone)
|
|
return affected && affected.open == 1 //&& !(affected.status & ORGAN_BLEEDING)
|
|
|
|
/datum/surgery_step/generic/retract_skin/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)
|
|
var/msg = "[user] starts to pry open the incision on [target]'s [affected.name] with \the [tool]."
|
|
var/self_msg = "You start to pry open the incision on [target]'s [affected.name] with \the [tool]."
|
|
if(target_zone == BP_CHEST)
|
|
msg = "[user] starts to separate the ribcage and rearrange the organs in [target]'s torso with \the [tool]."
|
|
self_msg = "You start to separate the ribcage and rearrange the organs in [target]'s torso with \the [tool]."
|
|
if(target_zone == BP_GROIN)
|
|
msg = "[user] 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, self_msg)
|
|
target.custom_pain("It feels like the skin on your [affected.name] is on fire!",1)
|
|
..()
|
|
|
|
/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 = "<span class='notice'>[user] keeps the incision open on [target]'s [affected.name] with \the [tool].</span>"
|
|
var/self_msg = "<span class='notice'>You keep the incision open on [target]'s [affected.name] with \the [tool].</span>"
|
|
if(target_zone == BP_CHEST)
|
|
msg = "<span class='notice'>[user] keeps the ribcage open on [target]'s torso with \the [tool].</span>"
|
|
self_msg = "<span class='notice'>You keep the ribcage open on [target]'s torso with \the [tool].</span>"
|
|
if(target_zone == BP_GROIN)
|
|
msg = "<span class='notice'>[user] keeps the incision open on [target]'s lower abdomen with \the [tool].</span>"
|
|
self_msg = "<span class='notice'>You keep the incision open on [target]'s lower abdomen with \the [tool].</span>"
|
|
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 = "<span class='warning'>[user]'s hand slips, tearing the edges of the incision on [target]'s [affected.name] with \the [tool]!</span>"
|
|
var/self_msg = "<span class='warning'>Your hand slips, tearing the edges of the incision on [target]'s [affected.name] with \the [tool]!</span>"
|
|
if (target_zone == BP_CHEST)
|
|
msg = "<span class='warning'>[user]'s hand slips, damaging several organs in [target]'s torso with \the [tool]!</span>"
|
|
self_msg = "<span class='warning'>Your hand slips, damaging several organs in [target]'s torso with \the [tool]!</span>"
|
|
if (target_zone == BP_GROIN)
|
|
msg = "<span class='warning'>[user]'s hand slips, damaging several organs in [target]'s lower abdomen with \the [tool]</span>"
|
|
self_msg = "<span class='warning'>Your hand slips, damaging several organs in [target]'s lower abdomen with \the [tool]!</span>"
|
|
user.visible_message(msg, self_msg)
|
|
target.apply_damage(12, BRUTE, target_zone, 0, tool, tool.sharp, tool.edge)
|
|
|
|
/datum/surgery_step/generic/cauterize
|
|
allowed_tools = list(
|
|
/obj/item/cautery = 100,
|
|
/obj/item/clothing/mask/smokable/cigarette = 25,
|
|
/obj/item/flame/lighter = 50,
|
|
/obj/item/weldingtool = 75
|
|
)
|
|
|
|
min_duration = 70
|
|
max_duration = 100
|
|
|
|
/datum/surgery_step/generic/cauterize/can_use(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
|
|
if(..())
|
|
var/obj/item/organ/external/affected = target.get_organ(target_zone)
|
|
return affected && affected.open && target_zone != "mouth"
|
|
|
|
/datum/surgery_step/generic/cauterize/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 cauterize the incision on [target]'s [affected.name] with \the [tool]." , \
|
|
"You are beginning to cauterize the incision on [target]'s [affected.name] with \the [tool].")
|
|
target.custom_pain("Your [affected.name] is being burned!",1)
|
|
..()
|
|
|
|
/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("<span class='notice'>[user] cauterizes the incision on [target]'s [affected.name] with \the [tool].</span>", \
|
|
"<span class='notice'>You cauterize the incision on [target]'s [affected.name] with \the [tool].</span>")
|
|
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("<span class='warning'>[user]'s hand slips, leaving a small burn on [target]'s [affected.name] with \the [tool]!</span>", \
|
|
"<span class='warning'>Your hand slips, leaving a small burn on [target]'s [affected.name] with \the [tool]!</span>")
|
|
target.apply_damage(5, BURN, affected, tool)
|
|
|
|
/datum/surgery_step/generic/amputate
|
|
allowed_tools = list(
|
|
/obj/item/circular_saw = 100,
|
|
/obj/item/melee/energy = 100,
|
|
/obj/item/melee/chainsword = 100,
|
|
/obj/item/material/hatchet = 55
|
|
)
|
|
|
|
min_duration = 110
|
|
max_duration = 160
|
|
|
|
/datum/surgery_step/generic/amputate/can_use(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
|
|
if(target_zone == BP_EYES) //there are specific steps for eye surgery
|
|
return 0
|
|
if(!hasorgans(target))
|
|
return 0
|
|
var/obj/item/organ/external/affected = target.get_organ(target_zone)
|
|
if(affected == null)
|
|
return 0
|
|
|
|
if(istype(tool, /obj/item/melee/energy))
|
|
var/obj/item/melee/energy/E = tool
|
|
if(!E.active)
|
|
to_chat(user, "<span class='warning'>The energy blade is not turned on!</span>")
|
|
return 0
|
|
|
|
if(istype(tool, /obj/item/melee/chainsword))
|
|
var/obj/item/melee/chainsword/E = tool
|
|
if(!E.active)
|
|
to_chat(user, "<span class='warning'>The blades aren't spinning, you can't cut anything!</span>")
|
|
return 0
|
|
|
|
return !affected.cannot_amputate
|
|
|
|
/datum/surgery_step/generic/amputate/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("<span class='danger'>[user] is beginning to amputate [target]'s [affected.name] with \the [tool].</span>" , \
|
|
"<span class='danger'>You begin to cut through [target]'s [affected.amputation_point] with \the [tool].</span>")
|
|
target.custom_pain("Your [affected.amputation_point] is being ripped apart!",1)
|
|
..()
|
|
|
|
/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("<span class='danger'>[user] amputates [target]'s [affected.name] at the [affected.amputation_point] with \the [tool].</span>", \
|
|
"<span class='danger'>You amputate [target]'s [affected.name] with \the [tool].</span>")
|
|
|
|
var/clean = 1
|
|
if(istype(tool, /obj/item/melee/chainsword))//Chainswords rip and tear, so the limb removal is not clean
|
|
clean = 0
|
|
|
|
var/var/obj/item/organ/external/parent = affected.parent//Cache the parent organ of the limb before we sever it
|
|
affected.droplimb(clean,DROPLIMB_EDGE)
|
|
|
|
if(istype(tool, /obj/item/melee/energy))//Code for energy weapons cauterising the cut
|
|
spawn(1)
|
|
affected = parent
|
|
affected.open = 0//Close open wounds
|
|
for(var/datum/wound/lost_limb/W in affected.wounds)
|
|
W.disinfected = 1//Cleanse the wound of any germs
|
|
W.autoheal_cutoff = INFINITY//Allow the wound to auto-heal, regardless of damage
|
|
W.max_bleeding_stage = 0//Stop bleeding
|
|
|
|
/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("<span class='warning'>[user]'s hand slips, sawing through the bone in [target]'s [affected.name] with \the [tool]!</span>", \
|
|
"<span class='warning'>Your hand slips, sawwing through the bone in [target]'s [affected.name] with \the [tool]!</span>")
|
|
target.apply_damage(30, BRUTE, target_zone, 0, tool, tool.sharp, tool.edge)
|
|
affected.fracture() |