Code optimizations + clean-up (#45)

This commit is contained in:
SandPoot
2020-08-14 02:01:54 -03:00
committed by GitHub
parent 88a63bfa03
commit fe8119c18c
21 changed files with 90 additions and 601 deletions
@@ -5,8 +5,13 @@
/obj/item/organ/cyberimp/arm/toolset/advanced
name = "advanced integrated toolset implant"
desc = "A very advanced version of the regular toolset implant, has alien stuff!"
contents = newlist(/obj/item/screwdriver/abductor, /obj/item/wrench/abductor, /obj/item/weldingtool/abductor,
/obj/item/crowbar/abductor, /obj/item/wirecutters/abductor, /obj/item/multitool/abductor, /obj/item/analyzer)
contents = newlist(/obj/item/screwdriver/abductor,
/obj/item/wrench/abductor,
/obj/item/weldingtool/abductor,
/obj/item/crowbar/abductor,
/obj/item/wirecutters/abductor,
/obj/item/multitool/abductor,
/obj/item/analyzer/ranged)
/obj/item/organ/cyberimp/arm/toolset/advanced/emag_act()
. = ..()
@@ -18,9 +23,15 @@
return TRUE
/obj/item/organ/cyberimp/arm/surgery/advanced
name = "advanced surgical toolset implant"
name = "advanced integrated surgical implant"
desc = "A very advanced version of the regular surgical implant, has alien stuff!"
contents = newlist(/obj/item/retractor/alien, /obj/item/hemostat/alien, /obj/item/cautery/alien, /obj/item/surgicaldrill/alien, /obj/item/scalpel/alien, /obj/item/circular_saw/alien, /obj/item/surgical_drapes)
contents = newlist(/obj/item/retractor/alien,
/obj/item/hemostat/alien,
/obj/item/cautery/alien,
/obj/item/surgicaldrill/alien,
/obj/item/scalpel/alien,
/obj/item/circular_saw/alien,
/obj/item/surgical_drapes)
/obj/item/organ/cyberimp/arm/surgery/emag_act()
. = ..()