mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-16 01:25:10 +01:00
b594520a74
* next set of spans * some more * next * next * next * . * text... * next... rest soon * . * . * ok last set for the night * . * . * . * . * some more * next * next * all for now * . * some more easy ones * some more easy ones * . * . * some more bolds * oups auto complete moment * add the remaining spans * this as well * this as well * . * ., * resync them properly
22 lines
948 B
Plaintext
22 lines
948 B
Plaintext
#ifndef T_BOARD
|
|
#error T_BOARD macro is not defined but we need it!
|
|
#endif
|
|
|
|
/obj/item/circuitboard/rdconsole
|
|
name = T_BOARD("R&D control console")
|
|
build_path = /obj/machinery/computer/rdconsole/core
|
|
|
|
/obj/item/circuitboard/rdconsole/attackby(obj/item/I as obj, mob/user as mob)
|
|
if(I.has_tool_quality(TOOL_SCREWDRIVER))
|
|
playsound(src, I.usesound, 50, 1)
|
|
user.visible_message(span_infoplain(span_bold("\The [user]") + " adjusts the jumper on \the [src]'s access protocol pins."), span_notice("You adjust the jumper on the access protocol pins."))
|
|
if(build_path == /obj/machinery/computer/rdconsole/core)
|
|
name = T_BOARD("RD Console - Robotics")
|
|
build_path = /obj/machinery/computer/rdconsole/robotics
|
|
to_chat(user, span_notice("Access protocols set to robotics."))
|
|
else
|
|
name = T_BOARD("RD Console")
|
|
build_path = /obj/machinery/computer/rdconsole/core
|
|
to_chat(user, span_notice("Access protocols set to default."))
|
|
return
|