mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-19 03:55:11 +01:00
More feex
This commit is contained in:
@@ -28,12 +28,12 @@
|
||||
targetable_wound = /datum/wound/blunt/critical
|
||||
|
||||
/datum/surgery/repair_bone_compound/can_start(mob/living/user, mob/living/carbon/target)
|
||||
if(!istype(target))
|
||||
return FALSE
|
||||
if(..())
|
||||
var/obj/item/bodypart/targeted_bodypart = target.get_bodypart(user.zone_selected)
|
||||
return(targeted_bodypart.get_wound_type(targetable_wound))
|
||||
|
||||
|
||||
|
||||
//SURGERY STEPS
|
||||
|
||||
///// Repair Hairline Fracture (Severe)
|
||||
|
||||
@@ -11,6 +11,8 @@
|
||||
targetable_wound = /datum/wound/burn
|
||||
|
||||
/datum/surgery/debride/can_start(mob/living/user, mob/living/carbon/target)
|
||||
if(!istype(target))
|
||||
return FALSE
|
||||
if(..())
|
||||
var/obj/item/bodypart/targeted_bodypart = target.get_bodypart(user.zone_selected)
|
||||
var/datum/wound/burn/burn_wound = targeted_bodypart.get_wound_type(targetable_wound)
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
targetable_wound = /datum/wound/pierce
|
||||
|
||||
/datum/surgery/repair_puncture/can_start(mob/living/user, mob/living/carbon/target)
|
||||
if(!istype(target))
|
||||
return FALSE
|
||||
. = ..()
|
||||
if(.)
|
||||
var/obj/item/bodypart/targeted_bodypart = target.get_bodypart(user.zone_selected)
|
||||
|
||||
Reference in New Issue
Block a user