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
@@ -1,5 +1,5 @@
//
//Robotic Component Analyser, basically a health analyser for robots
//Robotic Component Analyzer, basically a health analyzer for robots
//
/obj/item/device/robotanalyzer
name = "cyborg analyzer"
@@ -19,7 +19,6 @@
if((user.is_clumsy() || (DUMB in user.mutations)) && prob(50))
to_chat(user, SPAN_WARNING("You try to analyze the floor's vitals!"))
visible_message(SPAN_WARNING("\The [user] has analyzed the floor's vitals!"))
to_chat(user, SPAN_NOTICE("Analyzing Results for The floor:"))
to_chat(user, SPAN_NOTICE("Overall Status: Healthy"))
to_chat(user, SPAN_NOTICE("Damage Specifics: [0]-[0]-[0]-[0]"))
@@ -102,4 +101,19 @@
if(!organ_found)
to_chat(user, SPAN_NOTICE("No prosthetics located."))
add_fingerprint(user)
add_fingerprint(user)
/obj/item/device/robotanalyzer/augment
name = "retractable cyborg analyzer"
desc = "An scanner implanted directly into the hand, popping through the finger. This scanner can diagnose robotic injuries."
icon_state = "robotanalyzer"
item_state = "analyzer"
slot_flags = null
w_class = ITEMSIZE_HUGE
/obj/item/device/robotanalyzer/augment/throw_at(atom/target, range, speed, mob/user)
user.drop_from_inventory(src)
/obj/item/device/robotanalyzer/augment/dropped()
loc = null
qdel(src)