mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-22 18:06:36 +01:00
* Painus * Yep * Moar * Let the agony begin * text.dm * scramble.dm * time.dm * fix * unsorted.dm * job_controller.dm * _legacy * computerfiles.dm * events.dm * global_iterator.dm * topic_input.dm * underwear.dm * uplink * periodic_news.dm again * areas * genes Also renamed midget to dwarfism as it's a slur. * changeling * Cult * gamemodes * machinery * mecha * effects * objects part 1 * Fine I'll commit the YAML * objects part 2 * moar * atmos * ooga * ahrde * You can tell my sanity is going down * Second-To-Last Step * Almost * Poggers * nvm we're not ready for that <.< * Test * minor
26 lines
970 B
Plaintext
26 lines
970 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.is_screwdriver())
|
|
playsound(src, I.tool_sound, 50, TRUE)
|
|
user.visible_message(
|
|
SPAN_NOTICE("\The [user] adjusts the jumper on \the [src]'s access protocol pins."),
|
|
SPAN_NOTICE("You adjust the jumper on the access protocol pins."),
|
|
SPAN_HEAR("You hear a clicking sound.")
|
|
)
|
|
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
|