mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 11:13:16 +00:00
-Renames "non-crew" to "outsider." -Provides an external ID to outsiders, allowing PDA use. -Improves grammar in outsider job description -Reformats outsider to use a define for the job name, replaces hard-coded uses of "non-crew" with said define.
31 lines
721 B
Plaintext
31 lines
721 B
Plaintext
/datum/spawnpoint/stationgateway
|
|
display_name = "Station gateway"
|
|
msg = "has completed translation from station gateway"
|
|
disallow_job = list(JOB_OUTSIDER)
|
|
|
|
/datum/spawnpoint/stationgateway/New()
|
|
..()
|
|
turfs = latejoin_gatewaystation
|
|
|
|
/datum/spawnpoint/vore
|
|
display_name = "Vorespawn - Prey"
|
|
msg = "has arrived on the station"
|
|
allow_offmap_spawn = TRUE
|
|
|
|
/datum/spawnpoint/vore/pred
|
|
display_name = "Vorespawn - Pred"
|
|
msg = "has arrived on the station"
|
|
|
|
/datum/spawnpoint/vore/New()
|
|
..()
|
|
turfs = latejoin
|
|
|
|
/datum/spawnpoint/plainspath
|
|
display_name = "Sif plains"
|
|
msg = "has checked in at the plains gate"
|
|
restrict_job = list(JOB_OUTSIDER)
|
|
|
|
/datum/spawnpoint/plainspath/New()
|
|
..()
|
|
turfs = latejoin_plainspath
|