mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
36 lines
875 B
Plaintext
36 lines
875 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 = GLOB.latejoin_gatewaystation
|
|
|
|
/datum/spawnpoint/plainspath
|
|
display_name = "Sif plains"
|
|
msg = "has checked in at the plains gate"
|
|
restrict_job = list(JOB_OUTSIDER, JOB_ANOMALY)
|
|
|
|
/datum/spawnpoint/plainspath/New()
|
|
..()
|
|
turfs = GLOB.latejoin_plainspath
|
|
|
|
/datum/spawnpoint/fueldepot
|
|
display_name = "Fuel Depot"
|
|
msg = "woke up in the fuel depot"
|
|
restrict_job = list(JOB_OUTSIDER)
|
|
|
|
/datum/spawnpoint/fueldepot/New()
|
|
..()
|
|
turfs = GLOB.latejoin_fueldepot
|
|
|
|
/datum/spawnpoint/tyrspawn
|
|
display_name = "Tyr Wreckage"
|
|
msg = "woke up in a ruined shuttle"
|
|
restrict_job = list(JOB_OUTSIDER)
|
|
|
|
/datum/spawnpoint/tyrspawn/New()
|
|
..()
|
|
turfs = GLOB.latejoin_tyrvillage
|