mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-19 19:15:11 +01:00
Add an implantable health scanner (#18465)
* Add an health scanner implant. Corrects slight naming mistakes of nearby implants. * Makes it craftable + advanced --------- Co-authored-by: Cameron Lennox <killer65311@gmail.com>
This commit is contained in:
@@ -101,3 +101,23 @@
|
||||
if(ishuman(owner))
|
||||
var/mob/living/carbon/human/H = owner
|
||||
H.add_modifier(/datum/modifier/sprinting, 1 MINUTES)
|
||||
|
||||
/obj/item/organ/internal/augment/bioaugment/health_scan
|
||||
name = "health scanner implant"
|
||||
desc = "A small, rounded metallic implant with a passive spectrometer, meant to scan blood passing it by."
|
||||
|
||||
organ_tag = O_AUG_PELVIC
|
||||
|
||||
parent_organ = BP_GROIN
|
||||
|
||||
target_parent_classes = list(ORGAN_FLESH, ORGAN_ROBOT)
|
||||
var/obj/item/healthanalyzer/med_analyzer = null
|
||||
|
||||
/obj/item/organ/internal/augment/bioaugment/health_scan/Initialize(mapload)
|
||||
. = ..()
|
||||
med_analyzer = new /obj/item/healthanalyzer/advanced
|
||||
|
||||
/obj/item/organ/internal/augment/bioaugment/health_scan/augment_action()
|
||||
if(!owner)
|
||||
return
|
||||
med_analyzer.scan_mob(owner,owner)
|
||||
|
||||
@@ -125,6 +125,18 @@
|
||||
)
|
||||
departmental_flags = DEPARTMENT_BITFLAG_MEDICAL | DEPARTMENT_BITFLAG_SCIENCE
|
||||
|
||||
/datum/design_techweb/organ/internal/augment/bioaugment/health_scan
|
||||
name = "Medical Scaner Implant"
|
||||
desc = "A small implant that fits into a subject's pelvix. It deploys allows the user to analyze their vitals on demand."
|
||||
id = "health_scan_implant"
|
||||
build_type = PROTOLATHE
|
||||
materials = list(MAT_STEEL = 4000, MAT_GLASS = 4000, MAT_SILVER = 1000)
|
||||
build_path = /obj/item/organ/internal/augment/bioaugment/health_scan
|
||||
category = list(
|
||||
RND_CATEGORY_CYBERNETICS + RND_SUBCATEGORY_CYBERNETICS_IMPLANTS_COMBAT
|
||||
)
|
||||
departmental_flags = DEPARTMENT_BITFLAG_MEDICAL | DEPARTMENT_BITFLAG_SCIENCE
|
||||
|
||||
/datum/design_techweb/organ/internal/augment/armmounted/dartbow
|
||||
name = "Crossbow Implant"
|
||||
desc = "A large implant that fits into a subject's arm. It creates a dartbow when activated."
|
||||
|
||||
Reference in New Issue
Block a user