Files
2024-09-18 14:53:38 -04:00

20 lines
626 B
Plaintext

/obj/machinery/cryopod/tele //lore-friendly cryo thing
name = "Long-range Central Command teleporter"
desc = "A special mobility sleeper for storing agents in a disclosed location."
icon = 'GainStation13/icons/obj/Cryogenic2.dmi'
icon_state = "telepod-open"
on_store_message = "has teleported back to Central Command."
on_store_name = "Teleporter Oversight"
/obj/machinery/cryopod/tele/open_machine()
..()
icon_state = "telepod-open"
/obj/machinery/cryopod/tele/close_machine(mob/user)
..()
icon_state = "telepod"
/obj/machinery/cryopod
/// Do we want to inform comms when someone cryos?
var/alert_comms = TRUE