mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-13 03:02:38 +00:00
* A * Update centcom_computers.dm * a * Update CommandReportConsole.js * commandreporter * Update command_report_computer.dm * a * FEET COMMAND * a * e * e * Update departments.dm * F * a * a * Update new_player.dm * Update new_player.dm * AAAAAA * Update zombie.dm * Update zombie.dm * aaaaaaa * 0 * a * Update CentCom_skyrat.dmm * aa * Update nsstitan.dmm * A * Update station_goal_computer.dm * Update station_goal_computer.dm * Update bridge_officer.dm * Update CentCom_skyrat.dmm * Update pda.dm * Revert "Update pda.dm" This reverts commit fbe1823726f9edb7f7c3ba03c2d34b08b46ae294. * logic * cargo system * 0 * Update import_console.dm * Update cargo_skyrat.dmm * noob coder * Update cargo_shuttle_console.dm * a * Update deck_crew.dm * Update export_console.dm * Update deck_crew.dm * 0 * Update CentCom_skyrat_z2.dmm * AAAA * 0 * Update CentCom_skyrat_z2.dmm * Update cargo_shuttle_console.dm * Update CentCom_skyrat_z2.dmm * a * SELLING CREW IS BAD. * a * Update supply.dm * Update CentCom_skyrat_z2.dmm * Update supply.dm * A * a * a * Update zombie.dm * Update modular_skyrat/modules/central_command_module/code/jobs/fleetmaster.dm Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com>
29 lines
1.0 KiB
Plaintext
29 lines
1.0 KiB
Plaintext
/obj/machinery/computer/shuttle/ferry
|
|
name = "transport ferry console"
|
|
desc = "A console that controls the transport ferry."
|
|
circuit = /obj/item/circuitboard/computer/ferry
|
|
shuttleId = "ferry"
|
|
possible_destinations = "ferry_home;ferry_away;ferry_ntf" //SKYRAT EDIT CHANGE
|
|
req_access = list(ACCESS_CENT_GENERAL)
|
|
var/allow_silicons = FALSE
|
|
var/allow_emag = FALSE
|
|
|
|
/obj/machinery/computer/shuttle/ferry/emag_act(mob/user)
|
|
if(!allow_emag)
|
|
to_chat(user, span_warning("[src]'s security firewall is far too powerful for you to bypass."))
|
|
return FALSE
|
|
return ..()
|
|
|
|
/obj/machinery/computer/shuttle/ferry/attack_ai()
|
|
return allow_silicons ? ..() : FALSE
|
|
|
|
/obj/machinery/computer/shuttle/ferry/attack_robot()
|
|
return allow_silicons ? ..() : FALSE
|
|
|
|
/obj/machinery/computer/shuttle/ferry/request
|
|
name = "ferry console"
|
|
circuit = /obj/item/circuitboard/computer/ferry/request
|
|
possible_destinations = "ferry_home;ferry_away;ferry_ntf" //SKYRAT EDIT CHANGE
|
|
req_access = list(ACCESS_CENT_GENERAL)
|
|
resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF
|