Implemented a Cyborg Analyzer Augment (#13971)

This commit is contained in:
Benedict
2022-05-23 06:47:52 -04:00
committed by GitHub
parent 4a25ff7155
commit 2e971c1905
6 changed files with 58 additions and 3 deletions
@@ -81,6 +81,20 @@
whitelisted = list(SPECIES_HUMAN, SPECIES_HUMAN_OFFWORLD, SPECIES_TAJARA, SPECIES_TAJARA_ZHAN, SPECIES_TAJARA_MSAI, SPECIES_SKRELL, SPECIES_SKRELL_AXIORI, SPECIES_IPC, SPECIES_IPC_G1, SPECIES_IPC_G2, SPECIES_IPC_XION, SPECIES_IPC_ZENGHU, SPECIES_IPC_BISHOP, SPECIES_IPC_SHELL, SPECIES_VAURCA_WORKER, SPECIES_VAURCA_WARRIOR, SPECIES_VAURCA_BULWARK, SPECIES_VAURCA_BREEDER, SPECIES_UNATHI)
cost = 3
/datum/gear/augment/analyzer
display_name = "retractable cyborg analyzer"
description = "An augment that allows the user to deploy a retractable cyborg analyzer."
path = /obj/item/organ/internal/augment/tool/cyborg_analyzer
allowed_roles = list("Machinist")
cost = 3
/datum/gear/augment/analyzer/New()
..()
var/list/augs = list()
augs["retractable cyborg analyzer, right hand"] = /obj/item/organ/internal/augment/tool/cyborg_analyzer
augs["retractable cyborg analyzer, left hand"] = /obj/item/organ/internal/augment/tool/cyborg_analyzer/left
gear_tweaks += new /datum/gear_tweak/path(augs)
/datum/gear/augment/health_scanner
display_name = "integrated health scanner"
description = "An augment that allows the user scan their own health condition."