Code Readability - Surgery (#18238)

* surgery

* remove unused helper functions
This commit is contained in:
KalevTait
2022-07-08 09:20:37 +02:00
committed by GitHub
parent 3bd7952ffb
commit f5d19f283f
7 changed files with 14 additions and 40 deletions
+3 -3
View File
@@ -7,19 +7,19 @@
name = "Cybernetic Repair"
steps = list(/datum/surgery_step/robotics/external/unscrew_hatch,/datum/surgery_step/robotics/external/open_hatch,/datum/surgery_step/robotics/external/repair)
possible_locs = list("chest","head","l_arm", "l_hand","r_arm","r_hand","r_leg","r_foot","l_leg","l_foot","groin")
requires_organic_bodypart = 0
requires_organic_bodypart = FALSE
/datum/surgery/cybernetic_repair/internal
name = "Internal Component Manipulation"
steps = list(/datum/surgery_step/robotics/external/unscrew_hatch,/datum/surgery_step/robotics/external/open_hatch,/datum/surgery_step/robotics/manipulate_robotic_organs)
possible_locs = list("eyes", "mouth", "chest","head","groin","l_arm","r_arm")
requires_organic_bodypart = 0
requires_organic_bodypart = FALSE
/datum/surgery/cybernetic_amputation
name = "Robotic Limb Amputation"
steps = list(/datum/surgery_step/robotics/external/amputate)
possible_locs = list("chest","head","l_arm", "l_hand","r_arm","r_hand","r_leg","r_foot","l_leg","l_foot","groin")
requires_organic_bodypart = 0
requires_organic_bodypart = FALSE
/datum/surgery/cybernetic_repair/can_start(mob/user, mob/living/carbon/target)