Skip to content

Commit e799cef

Browse files
authored
adds the abductor surgery toolset (#25419)
* adds surgical abductor toolset * ..Yes. The crew needs to be able to get it somehow. Right * handle review from 1080p * Required tech should be the correct one, and not engi's * Henri's review * 1080p's review * adds surgical abductor toolset * ..Yes. The crew needs to be able to get it somehow. Right * handle review from 1080p * Required tech should be the correct one, and not engi's * Henri's review * 1080p's review
1 parent b290fdd commit e799cef

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

code/modules/research/designs/medical_designs.dm

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -436,6 +436,17 @@
436436
build_path = /obj/item/organ/internal/cyberimp/arm/janitorial_abductor
437437
category = list("Medical")
438438

439+
/datum/design/cyberimp_surgical_abductor
440+
name = "Abductor Surgical Toolset Implant"
441+
desc = "An alien surgical toolset, designed to be installed on the subject's arm."
442+
id = "ci-med-abductor"
443+
req_tech = list("materials" = 6, "magnets" = 6, "biotech" = 6, "abductor" = 3)
444+
build_type = PROTOLATHE | MECHFAB
445+
materials = list(MAT_METAL = 20000, MAT_SILVER = 10000, MAT_PLASMA = 9000, MAT_TITANIUM = 8000, MAT_DIAMOND = 8000)
446+
construction_time = 20 SECONDS
447+
build_path = /obj/item/organ/internal/cyberimp/arm/surgical_abductor
448+
category = list("Medical")
449+
439450
/datum/design/cyberimp_jani_hud
440451
name = "Janitor HUD Implant"
441452
desc = "These cybernetic eye implants will display a filth HUD over everything you see. Wiggle eyes to control."

code/modules/surgery/organs/augments_arms.dm

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,17 @@
261261
/obj/item/organ/internal/cyberimp/arm/janitorial_abductor/l
262262
parent_organ = "l_arm"
263263

264+
/obj/item/organ/internal/cyberimp/arm/surgical_abductor
265+
name = "Alien Surgical Toolset implant"
266+
desc = "An alien surgical toolset, designed to be installed on the subject's arm."
267+
origin_tech = "materials=5;engineering=5;plasmatech=5;powerstorage=4;abductor=2"
268+
contents = newlist(/obj/item/retractor/alien, /obj/item/hemostat/alien, /obj/item/cautery/alien, /obj/item/bonesetter/alien, /obj/item/scalpel/alien, /obj/item/circular_saw/alien, /obj/item/bonegel/alien, /obj/item/FixOVein/alien, /obj/item/surgicaldrill/alien)
269+
action_icon = list(/datum/action/item_action/organ_action/toggle = 'icons/obj/abductor.dmi')
270+
action_icon_state = list(/datum/action/item_action/organ_action/toggle = "belt")
271+
272+
/obj/item/organ/internal/cyberimp/arm/surgical_abductor/l
273+
parent_organ = "l_arm"
274+
264275
/obj/item/organ/internal/cyberimp/arm/esword
265276
name = "arm-mounted energy blade"
266277
desc = "An illegal, and highly dangerous cybernetic implant that can project a deadly blade of concentrated enregy."

0 commit comments

Comments
 (0)