mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-19 20:06:28 +01:00
Implemented a Cyborg Analyzer Augment (#13971)
This commit is contained in:
@@ -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)
|
||||
Reference in New Issue
Block a user