Files
Fluffy f26e4a0380 Collapse dmms (#19698)
Collapsed all the multi-z dmm maps into single-file dmms
Moved some of the map geometry into traits
2024-07-27 19:00:57 +00:00

39 lines
1.3 KiB
Plaintext

/obj/machinery/computer/shuttle_control/mining
name = "mining shuttle control console"
shuttle_tag = "Mining"
circuit = /obj/item/circuitboard/mining_shuttle
/obj/machinery/computer/shuttle_control/engineering
name = "engineering shuttle control console"
shuttle_tag = "Engineering"
circuit = /obj/item/circuitboard/engineering_shuttle
/obj/machinery/computer/shuttle_control/research
name = "research shuttle control console"
shuttle_tag = "Research Shuttle"
req_access = list(ACCESS_RESEARCH)
/obj/machinery/computer/shuttle_control/multi/research
name = "research shuttle control computer"
shuttle_tag = "Research Shuttle"
req_access = list(ACCESS_RESEARCH)
circuit = /obj/item/circuitboard/research_shuttle
/datum/shuttle/autodock/multi/research_aurora
var/triggered_away_sites = FALSE
/datum/shuttle/autodock/multi/research_aurora/shuttle_moved()
. = ..()
if(!triggered_away_sites && !is_station_level(next_location.loc.z))
for(var/s in SSghostroles.spawners)
var/datum/ghostspawner/G = SSghostroles.spawners[s]
if(G.away_site)
G.enable()
triggered_away_sites = TRUE
/obj/machinery/computer/shuttle_control/merchant
name = "merchant shuttle control console"
req_access = list(ACCESS_MERCHANT)
shuttle_tag = "ICV Enterprise"
can_rename_ship = TRUE